Guest User

Untitled

a guest
Oct 17th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. # Postgres Cheatsheet
  2.  
  3. ## Access database
  4. ```console
  5. $ psql -U $user -d $db_name
  6. ```
  7.  
  8. ## Show all tables
  9. ```console
  10. > \dt+
  11. ```
  12.  
  13. ## Quit
  14. ```console
  15. > \q
  16. ```
Add Comment
Please, Sign In to add comment