greenplum 查看所有表
要查看所有的表,可以使用以下命令:
SELECT table_name FROM information_schema.tables WHERE table_schema = 'public';
这将返回 public schema 下的所有表的名称。如果你使用的是不同的 schema,请将 public 替换为你想要查询的 schema 名称。
原文地址: https://www.cveoy.top/t/topic/jc8t 著作权归作者所有。请勿转载和采集!