Answers for "show all public tables postgres"

7

show all public tables postgres

SELECT *
FROM INFORMATION_SCHEMA.tables
where table_schema = 'public';
Posted by: Guest on March-31-2022

Code answers related to "show all public tables postgres"

Browse Popular Code Answers by Language