标签:
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‘);
标签:
原文地址:http://my.oschina.net/u/555061/blog/505230