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‘);
时间: 2024-10-13 22:29:38