Home

Published

- 1 min read

search for tables with name postgresql

img of search for tables with name postgresql

The solution for this is noted below

search for tables with name postgresql

Solution

   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

Try other methods by searching on the site. That is if this doesn’t work