Last active
February 22, 2018 19:26
-
-
Save gduverger/fc4401cdd75032051975 to your computer and use it in GitHub Desktop.
PSQL
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
| \list # lists all databases | |
| create database database_name; # create a database | |
| DROP DATABASE database_name; # drop database | |
| \c db_name # connect to a certain database | |
| \dt # lists all tables in the current database | |
| \d table_name # view table | |
| DROP TABLE table_name; # drop table | |
| \q # exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment