标签: sql presto
在Presto
SHOW SCHEMAS;返回所有架构
SHOW SCHEMAS;
SHOW TABLES FROM foo;返回foo schema的所有表
SHOW TABLES FROM foo;
是否有一种简单的方法可以从Presto中的所有模式中返回表?
答案 0 :(得分:4)
您可以使用select table_schema, table_name from information_schema.tables;
select table_schema, table_name from information_schema.tables;