mysql 表
table test_5
(
id int not null auto_increment comment
‘自增长流水号‘,
primary key (id),
user_name varchar(
40)
default ‘wang‘ comment
‘用户名‘,
user_id varchar(
30)
not null comment
‘用户代码‘,
unique(
user_id),
index(
user_name)
) engine=InnoDB
default charset
=utf8 comment
=‘用户表‘;
mysql 表
标签: