Database H2 - Mostra
SHOW è un comando utilizzato per visualizzare l'elenco di schemi, tabelle o colonne della tabella.
Sintassi
Di seguito è riportata la sintassi generica del comando SHOW.
SHOW { SCHEMAS | TABLES [ FROM schemaName ] |
COLUMNS FROM tableName [ FROM schemaName ] }
Esempio
Il seguente comando può essere utilizzato per ottenere l'elenco delle tabelle nel database corrente.
SHOW TABLES;
Il comando precedente produce il seguente output.
TABLE_NAME | TABLE_SCHEMA |
---|---|
CLIENTE | PUBBLICO |
EMP | PUBBLICO |