数据库.创建表

创建表结构 

-- 创建表结构
    create table tb_user(
        id int comment 'ID,唯一标识',
        username varchar(20) comment '用户名',
        name varchar(10) comment '姓名',
        gae int comment '年龄',
        gender char(1) comment '性别'



    )comment  '用户表';
create table tb_emp
(
    id int  auto_increment primary key comment '主键ID',
   username  varchar(20) not null unique  comment '用户名',
   password varchar(32)  default '123456' comment '密码',
   name varchar(10) not null  comment '姓名',
   gender tinyint unsigned comment '性别 1男 2女',
   image varchar(300) comment '图形url',
   job tinyint unsigned comment '职位 ,1班主任,2 讲师 ,3 学工主管 ,4 教研主管 ',
   entrydate date comment '入职日期',
   crete_time datetime not null comment  '创建时间',
   update_time datetime not null  comment '修改时间'
   

)comment '员工';


数据库.创建表_第1张图片

你可能感兴趣的:(数据库)