问答详情
源自:4-1 新建数据表与连接数据库

sql 语句


create table if not exists student(

`id` INT AUTO_INCREMENT PRIMARY KEY,

`name` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '姓名',

`age` TINYINT UNSIGNED not null DEFAULT 0 COMMENT '年龄',

`sex` TINYINT UNSIGNED not null DEFAULT 10 COMMENT '性别',

`created_at` INT not null DEFAULT 0 COMMENT '新增时间',

`updated_at` INT not null DEFAULT 0 COMMENT '修改时间'

)ENGINE=INNODB DEFAULT CHARSET=UTF8 AUTO_INCREMENT=1001 COMMENT='学生表';


提问者:茴字的四种写法 2018-08-16 16:47

个回答

  • 茴字的四种写法
    2018-08-16 16:55:19

    create table if not exists student(`id` INT AUTO_INCREMENT PRIMARY KEY,`name` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '姓名',`age` TINYINT UNSIGNED not null DEFAULT 0 COMMENT '年龄',`sex` TINYINT UNSIGNED not null DEFAULT 10 COMMENT '性别',`created_at` INT not null DEFAULT 0 COMMENT '新增时间',`updated_at` INT not null DEFAULT 0 COMMENT '修改时间')ENGINE=INNODB DEFAULT CHARSET=UTF8 AUTO_INCREMENT=1001 COMMENT='学生表';


  • 茴字的四种写法
    2018-08-16 16:49:02

    create table if not exists student(

    `id` INT AUTO_INCREMENT PRIMARY KEY,

    `name` VARCHAR(255) NOT NULL DEFAULT '' COMMENT '姓名',

    `age` TINYINT UNSIGNED not null DEFAULT 0 COMMENT '年龄',

    `sex` TINYINT UNSIGNED not null DEFAULT 10 COMMENT '性别',

    `created_at` INT not null DEFAULT 0 COMMENT '新增时间',

    `updated_at` INT not null DEFAULT 0 COMMENT '修改时间'

    )ENGINE=INNODB DEFAULT CHARSET=UTF8 AUTO_INCREMENT=1001 COMMENT='学生表';