· 6 years ago · Sep 07, 2019, 04:50 AM
1drop table if exists bookmarks;
2
3create table bookmarks (
4id SERIAL primary key,
5title text not null,
6url text
7);
8
9insert into bookmarks
10(title, url) values
11('the hobbit', 'lotr.com'),
12('the fellowship of the ring', 'lotr.com'),
13('the two towers', 'lotr.com'),
14('the return of the king', 'lotr.com'),
15('the colour of magic', 'discworld.com'),
16('the bible', 'jesus.com'),
17('moby dick', 'website.net'),
18('book', 'google.com'),
19('other books', 'yahoo.com'),
20('harry potter and the methods of rationality', 'hpmor.com');