mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
11 lines
394 B
Text
11 lines
394 B
Text
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1 (c CHAR(1)) ENGINE=MyISAM;
|
|
CREATE TEMPORARY TABLE t1 (a <INT_COLUMN>, b <CHAR_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>;
|
|
SHOW CREATE TABLE t1;
|
|
Table Create Table
|
|
t1 CREATE TEMPORARY TABLE `t1` (
|
|
`a` int(11) DEFAULT NULL,
|
|
`b` char(8) DEFAULT NULL
|
|
) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1
|
|
DROP TEMPORARY TABLE t1;
|
|
DROP TABLE t1;
|