[SQL]postgreSQL中如何查找无主键的sql语句

查找postgreSQL数据库中,查找无主键的表,可以通下面语句查找:

select * from pg_tables where hasindexes is false and schemaname ='public'


你可能感兴趣的:(数据库专题)