SHOW INDEX
Sintassi
SHOW INDEX FROM nome_tabella [FROM nome_db]
Contents
Spiegazione
SHOW INDEX
restituisce informazioni sugli indici della tabella specificata. Il formato è lo stesso usato per la funzione ODBC SQLStatistics.
E' possibile utilizzare nome_db.nome_tabella
in alternativa alla sintassi
nome_tabella FROM nome_db
. Le seguenti istruzioni sono equivalenti:
SHOW INDEX FROM nome_tabella FROM nome_db; SHOW INDEX FROM nome_db.nome_tabella;
SHOW KEYS
è sinonimo di SHOW INDEX
.
Per conoscere gli indici di una tabella, è anche possibile usare il comando
mysqlshow -k db_name tbl_name
.
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.