In Presto
SHOW SCHEMAS; returns all schemas
SHOW SCHEMAS;
SHOW TABLES FROM foo; returns all tables for foo schema
SHOW TABLES FROM foo;
Is there a simple way to re
You can use select table_schema, table_name from information_schema.tables;
select table_schema, table_name from information_schema.tables;