在postgresql中,可以通过运行以下查询来拥有所有表名
SELECT table_name FROM information_schema.tables WHERE table_schema='public';
在monetdb中是否有类似的东西可以包含表列表?
最佳答案
我终于找到了这个查询
select tables.name from tables where tables.system=false ;
关于monetdb - 如何在monetdb数据库中拥有表列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23007549/