1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
DROP TABLE IF EXISTS t6;
CREATE TABLE t6(c1 CHAR(0) NULL);
SHOW TABLES;
Tables_in_test
t6
SHOW CREATE TABLE t6;
Table Create Table
t6 CREATE TABLE `t6` (
`c1` char(0) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t6;
SHOW TABLES;
Tables_in_test
CREATE TABLE t6(c1 VARCHAR(0) NULL);
SHOW TABLES;
Tables_in_test
t6
SHOW CREATE TABLE t6;
Table Create Table
t6 CREATE TABLE `t6` (
`c1` varchar(0) DEFAULT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t6;
SHOW TABLES;
Tables_in_test
CREATE TABLE t6(c1 CHAR(0) NOT NULL);
SHOW TABLES;
Tables_in_test
t6
SHOW CREATE TABLE t6;
Table Create Table
t6 CREATE TABLE `t6` (
`c1` char(0) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t6;
SHOW TABLES;
Tables_in_test
CREATE TABLE t6(c1 VARCHAR(0) NOT NULL);
SHOW TABLES;
Tables_in_test
t6
SHOW CREATE TABLE t6;
Table Create Table
t6 CREATE TABLE `t6` (
`c1` varchar(0) NOT NULL
) ENGINE=ENGINE DEFAULT CHARSET=latin1
DROP TABLE t6;
SHOW TABLES;
Tables_in_test
|