-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthours.sql
33 lines (32 loc) · 895 Bytes
/
Authours.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
INSERT INTO Authors (AuthorID, AuthorName)
VALUES
(1, 'George Orwell'),
(2, 'J.K. Rowling'),
(3, 'Agatha Christie'),
(4, 'Harper Lee'),
(5, 'Ernest Hemingway'),
(6, 'Maya Angelou'),
(7, 'Stephen King'),
(8, 'Jane Austen'),
(9, 'F. Scott Fitzgerald'),
(10, 'Toni Morrison'),
(11, 'Mark Twain'),
(12, 'J.R.R. Tolkien'),
(13, 'Gabriel Garcia Marquez'),
(14, 'Herman Melville'),
(15, 'Virginia Woolf'),
(16, 'Charles Dickens'),
(17, 'Leo Tolstoy'),
(18, 'Emily Bronte'),
(19, 'Isaac Asimov'),
(20, 'Gabrielle Zevin'),
(21, 'Khaled Hosseini'),
(22, 'Kazuo Ishiguro'),
(23, 'C.S. Lewis'),
(24, 'Jhumpa Lahiri'),
(25, 'George R.R. Martin'),
(26, 'Roald Dahl'),
(27, 'Neil Gaiman'),
(28, 'H.P. Lovecraft'),
(29, 'Ayn Rand'),
(30, 'Ray Bradbury');