码迷,mamicode.com
首页 > 数据库 > 详细

mysql 表

时间:2015-09-09 11:18:59      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

1.表结构语法

create 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 表

标签:

原文地址:http://www.cnblogs.com/Yongzhouunknown/p/4793721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!