SHOW CREATE TABLE tbl_name
Affiche la commande CREATE TABLE
nécessaire pour créer une table donnée.
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
va protéger le nom de la
table et des colonnes selon l'option
SQL_QUOTE_SHOW_CREATE
.
Section 13.5.2.8, « Syntaxe de 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.