Показывает оператор 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.
See Раздел 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.
© 1995-2005 MySQL AB. All rights reserved.
