4
All show commans are mapped to table functions in Drizzle. More data can be
5
gained by exeucting queries directly on the tables found either the
6
DATA_DICTIONARY or the INFORMATION_SCHEMA.
11
Will list the names of all the schemas in the current catalog.
16
Will list the names of all the tables in the current schema.
25
SHOW COLUMNS FROM table_name
26
----------------------------
28
SHOW INDEXES from table_name
29
----------------------------
35
Shows the warnings and/or errors from the previous command.
40
Shows errors from the previous command.
42
SHOW CREATE SCHEMA schema_name
43
------------------------------
45
Shows the CREATE SCHEMA command required to recreate schema_name.
47
SHOW CREATE TABLE table_name
48
----------------------------
50
Shows the CREATE TABLE statement used to create the table table_name.