SHOW CREATE TABLE

Sintassi

SHOW CREATE TABLE nome_tabella

Spiegazione

Restituisce l'istruzione CREATE TABLE necessaria per ricreare la tabella specificata. E' necessario disporre del privilegio SELECT sulla tabella. Questa istruzione funziona anche con le viste. SHOW CREATE TABLE può racchiudere tra virgolette gli identificatori della tabella e delle colonne, a seconda del valore dell'opzione sql_quote_show_create.

Esempi

MariaDB [test]> SHOW CREATE TABLE t\G
*************************** 1. row ***************************
       Table: t
Create Table: CREATE TABLE `t` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `s` char(60) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1

Commenti

Sto caricando i commenti......
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.