Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. vocstartsoft:~/environment/lecture-14-databases (master) $ psql
  2. psql (10.12 (Ubuntu 10.12-0ubuntu0.18.04.1))
  3. Type "help" for help.
  4.  
  5. ubuntu=# \c postgres
  6. You are now connected to database "postgres" as user "ubuntu".
  7. postgres=# SELECT * FROM Message;
  8. id | text
  9. ----+----------------------------
  10. 1 | This is my first message
  11. 2 | This is my second message
  12. 3 | This is my third message
  13. (3 rows)
  14.  
  15. postgres=#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement