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) COLLATE utf8_general_ci NOT NULL DEFAULT '',
PRIMARY KEY (`_id`) USING BTREE
) ENGINE=MyISAM COLLATE = utf8_general_ci
drop table `about:text`;
|