Created
October 2, 2019 13:10
-
-
Save timotta/311aec74b20192588f42e9d22c14fc00 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- show tables | |
| SELECT * FROM pg_catalog.pg_tables; | |
| -- describe table | |
| select column_name, data_type, character_maximum_length from INFORMATION_SCHEMA.COLUMNS where table_name = 'tablename'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment