search for tables with name postgresql April 14, 2023 by wordlinkanswers search for tables with name postgresql Comment 1 select table_schema,<br /> table_name<br /> from information_schema.tables<br /> where table_name like ‘payment%’<br /> and table_schema not in (‘information_schema’, ‘pg_catalog’)<br /> and table_type=”BASE TABLE”<br /> order by table_name,<br /> table_schema;<br /> Code has been copied Popularity 8/10 Helpfulness 9/10 Language sql Source: dataedo.com Tags: postgresql search sql Share Link to this answer Share Contributed on Mar 05 2020 Excited Elk 0 Answers Avg Quality 2/10