In Presto
SHOW SCHEMAS;
returns all schemas
SHOW TABLES FROM foo;
returns all tables for foo schema
Is there a simple way to return tables from all schemas in Presto?
You can use select table_schema, table_name from information_schema.tables;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With