Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. createdb -U postgres -w library
  2. psql -f library-data.sql library postgres
  3. psql library postgres
  4. library=# SELECT * FROM books;
  5. id | title | author
  6. ------+------------------------------------------+---------------------
  7. 1259 | Eloquent Ruby | Russell A. Olson
  8. 1593 | JavaScript: The Good Parts | Douglas Crockford
  9. 8982 | Designing Object-Oriented Software | Rebecca Wirfs-Brock
  10. 7265 | Practical Object-Oriented Design in Ruby | Sandi Metz
  11. (4 rows)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement