sql 语句

来源:4-1 新建数据表与连接数据库

茴字的四种写法

2018-08-16 16:47


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='学生表';


写回答 关注

2回答

  • 茴字的四种写法
    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='学生表';


轻松学会Laravel-基础篇

Laravel框架基础视频教程,轻松入门,了解Laravel的优势

64171 学习 · 281 问题

查看课程

相似问题