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

mysql主键自增

时间:2015-09-12 12:21:44      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

create table cdat
(
   localt               char(20) not ,
   cd                   char(5) not ,
   snosat               char(2) not ,
   rnorec               char(3) not null,
   id                   char(20) not null AUTO_INCREMENT,
   primary key (id)
);

id自增,insert语句就是insert into table(localt, cd, snosat, rnorec) values(‘localt‘, ‘cd‘, ‘snosat‘, ‘rnorec‘);


mysql主键自增

标签:

原文地址:http://my.oschina.net/u/555061/blog/505230

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