Mysql 建表
-
如果数据库表字段存在,则删除该表
1 drop table if exists `table_name`
-
创建数据库表语句
1 create table `table_name`( 2 `id` int(5) not null auto_increment comment '自增主键', 3 `name` varchar(64) not null comment '用户姓名', 4 `sex` tinyint(1) not null default '1' comment '用户性别 1,男 2,女', 5 `create_time` timestamp not null default CERRENT_TIMESTAMP comment '创建时间', 6 `update_time` timestamp not null default CURRENT_TIMESTAMP on UPDATE CURRENT_TIMESTAMP comment '更新时间', 7 PRIMARY KEY (`id`), 8 UNIQUE KEY `name`(`name`) 9 )ENGINE=INNODB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8mb4