Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* login root level
- -U: username
- -p: port */
- psql -U postgres -p 2610
- /* show tables in postreSQL */
- SELECT
- *
- FROM
- pg_catalog.pg_tables
- WHERE
- schemaname != 'pg_catalog'
- AND schemaname != 'information_schema';
Add Comment
Please, Sign In to add comment