Skip to content

Commit 87cf5b8

Browse files
committed
添加sql语句
1 parent bb8b5cb commit 87cf5b8

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

springboot-sql2dictionary/src/main/resources/sql/springBoot.sql

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/*
2+
SQLyog Ultimate v12.09 (64 bit)
3+
MySQL - 5.5.27 : Database - springboot
4+
*********************************************************************
5+
*/
6+
CREATE DATABASE `springboot`;
7+
8+
USE `springboot`;
9+
10+
/*Table structure for table `t_user` */
11+
12+
DROP TABLE IF EXISTS `t_user`;
13+
14+
CREATE TABLE `t_user` (
15+
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
16+
`name` varchar(10) DEFAULT NULL COMMENT '姓名',
17+
`age` int(2) DEFAULT NULL COMMENT '年龄',
18+
PRIMARY KEY (`id`)
19+
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
20+
21+

0 commit comments

Comments
 (0)