78
78
ALTER TABLE t1 ORDER BY t1.id, t1.status, t1.type_id, t1.user_id, t1.body;
80
CREATE TABLE t1 (AnamneseId int NOT NULL auto_increment,B BLOB,PRIMARY KEY (AnamneseId)) engine=myisam;
89
80
create table t1 (i int not null auto_increment primary key);
90
81
insert into t1 values (null),(null),(null),(null);
91
82
alter table t1 drop i,add i int not null auto_increment, drop primary key, add primary key (i);