351
336
INSERT INTO t1 VALUES(0, 0);
352
337
INSERT INTO t1 VALUES(1, 1);
353
338
ALTER TABLE t1 CHANGE t1 t1 INT auto_increment;
357
341
create table t1 (a int primary key auto_increment, b int, c int, d timestamp default current_timestamp, unique(b),unique(c));
358
342
insert into t1 values(null,1,1,now());