Last active
August 18, 2020 04:29
-
-
Save SanthoshBabuMR/c64b3fcc2522ff614fd5ce3fbc4eae57 to your computer and use it in GitHub Desktop.
postgresql cheatsheet
This file contains 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
# Connect to psql | |
psql -d <db_name> | |
# show current DB | |
/c | |
# switch DB | |
/c <db_name> | |
# create DB | |
CREATE DATABASE <db_name> | |
# list tables | |
/dt | |
# quit psql | |
/q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment