1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
SHOW
=====
All show commans are mapped to table functions in Drizzle. More data can be
gained by exeucting queries directly on the tables found either the
DATA_DICTIONARY or the INFORMATION_SCHEMA.
SHOW SCHEMAS
SHOW TABLES
SHOW TEMPORARY TABLES
SHOW TABLE STATUS
SHOW COLUMNS FROM table_name
SHOW INDEXES from table_name
SHOW WARNINGS
SHOW ERRORS
SHOW CREATE SCHEMA schema_name
SHOW CREATE TABLE table_name
SHOW PROCESSLIST
|