Information Schema SupportDisplay the ChaosSearch metadata for schemas, views, and columns. Suggest EditsThe SQL API includes support for displaying the information schema details using commands similar to the following: SQLSHOW TABLES; SHOW COLUMNS FROM tableName; DESCRIBE tableName; SELECT * FROM information_schema.tables; SELECT * FROM information_schema.columns; Example Updated 8 months ago Table of Contents Example