1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
drop table if exists `about:text`; create TEMPORARY table `about:text` ( _id int not null auto_increment, `about:text` varchar(255) not null default '', primary key (_id) ) ENGINE=MyISAM; show create table `about:text`; Table Create Table about:text CREATE TEMPORARY TABLE `about:text` ( `_id` int NOT NULL AUTO_INCREMENT, `about:text` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`_id`) ) ENGINE=MyISAM drop table `about:text`; |