📜  搜索名称为 postgresql 代码示例的表

📅  最后修改于: 2022-03-11 15:05:13.240000             🧑  作者: Mango

代码示例1
select table_schema,
       table_name
from information_schema.tables
where table_name like 'payment%'
      and table_schema not in ('information_schema', 'pg_catalog')
      and table_type = 'BASE TABLE'
order by table_name,
         table_schema;
Code has been copied