指定したテーブルを作成する CREATE
TABLE
ステートメントを表示します。
mysql> SHOW CREATE TABLE t\G
*************************** 1. row ***************************
Table: t
Create Table: CREATE TABLE t (
id INT(11) default NULL auto_increment,
s char(60) default NULL,
PRIMARY KEY (id)
) TYPE=MyISAM
SHOW CREATE TABLE
で表示されるテーブル名とカラム名は、SQL_QUOTE_SHOW_CREATE
オプションの値に従って引用符で囲まれます。
項5.5.6. 「SET
構文」。
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.