56,864
社区成员




create table t(id int unsigned not null primary key auto_increment,name varchar(20));
insert into t select 0,'1';
insert into t select 0,null;
insert into t select 0,'2';
insert into t select 0,'3';
insert into t select 0,null;
insert into t select 0,'4';