vote up 2 vote down star
1

How do you say "show tables" (mysql) in Postgresql?

flag

3 Answers

vote up 10 vote down check

From the psql CLI, enter the \dt command. Programmatically (or from the psql interface too, of course),

SELECT * FROM pg_catalog.pg_tables

(the system tables live in the pg_catalog database.)

link|flag
vote up 4 vote down

(For completeness)

You could also query the (SQL-standard) information schema:

SELECT
    table_schema || '.' || table_name
FROM
    information_schema.tables
WHERE
    table_type = 'BASE TABLE'
AND
    table_schema NOT IN ('pg_catalog', 'information_schema');
link|flag
vote up 0 vote down

Moocha's answer is correct. Alternatively, you can use the pgadmin3 gui admin tool, or pgphpadmin.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.