Information Schema Support

Display the ChaosSearch metadata for schemas, views, and columns.

The SQL API includes support for displaying the information schema details using commands similar to the following:

SHOW TABLES;

SHOW COLUMNS FROM tableName;

DESCRIBE tableName;

SELECT * FROM information_schema.tables;

SELECT * FROM information_schema.columns;

Example

2734