本文最后更新于507 天前,其中的信息可能已经过时,如有错误请发送邮件到2067965693@qq.com
创建表
create table user(
id int primary key comment 'ID',
username varchar(100) not null comment '用户名',
password varchar(100) not null comment '密码',
time timestamp default current_timestamp comment '创建时间',
retime timestamp default current_timestamp comment '修改时间'
) comment '用户数据表';
