SELECT 
    table_schema, 
    table_name, 
    table_type
FROM 
    information_schema.tables
WHERE 
    table_schema NOT IN ('pg_catalog', 'information_schema')
    AND table_type = 'BASE TABLE';

 

posted on 2024-03-11 16:46  坚持就有光  阅读(38)  评论(0编辑  收藏  举报