generated from akshatvg/template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbooks.sql
176 lines (159 loc) · 3.84 KB
/
books.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
-- phpMyAdmin SQL Dump
-- version 4.9.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Generation Time: Oct 23, 2020 at 04:50 PM
-- Server version: 5.7.26
-- PHP Version: 7.4.2
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Database: `books`
--
-- --------------------------------------------------------
--
-- Table structure for table `books`
--
CREATE TABLE `books` (
`id` int(30) NOT NULL,
`title` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `books`
--
INSERT INTO `books` (`id`, `title`) VALUES
(1, 'Things Fall Apart'),
(2, 'Fairy tales'),
(3, 'The Divine Comedy'),
(4, 'The Epic Of Gilgamesh'),
(5, 'The Book Of Job'),
(6, 'One Thousand and One Nights'),
(7, 'Njál\'s Saga'),
(8, 'Pride and Prejudice'),
(9, 'Le Père Goriot'),
(10, 'Molloy, Malone Dies, The Unnamable, the trilogy'),
(11, 'The Decameron'),
(12, 'Ficciones'),
(13, 'Wuthering Heights'),
(14, 'The Stranger'),
(15, 'Poems'),
(16, 'Journey to the End of the Night'),
(17, 'Don Quijote De La Mancha'),
(18, 'The Canterbury Tales'),
(19, 'Stories'),
(20, 'Nostromo'),
(21, 'Great Expectations'),
(22, 'Jacques the Fatalist'),
(23, 'Berlin Alexanderplatz'),
(24, 'Crime and Punishment'),
(25, 'The Idiot'),
(26, 'The Possessed'),
(27, 'The Brothers Karamazov'),
(28, 'Middlemarch'),
(29, 'Invisible Man'),
(30, 'Medea'),
(31, 'Absalom, Absalom!'),
(32, 'The Sound and the Fury'),
(33, 'Madame Bovary'),
(34, 'Sentimental Education'),
(35, 'Gypsy Ballads'),
(36, 'One Hundred Years of Solitude'),
(37, 'Love in the Time of Cholera'),
(38, 'Faust'),
(39, 'Dead Souls'),
(40, 'The Tin Drum'),
(41, 'The Devil to Pay in the Backlands'),
(42, 'Hunger'),
(43, 'The Old Man and the Sea'),
(44, 'Iliad'),
(45, 'Odyssey'),
(46, 'A Doll\'s House'),
(47, 'Ulysses'),
(48, 'Stories'),
(49, 'The Trial'),
(50, 'The Castle'),
(51, 'The recognition of Shakuntala'),
(52, 'The Sound of the Mountain'),
(53, 'Zorba the Greek'),
(54, 'Sons and Lovers'),
(55, 'Independent People'),
(56, 'Poems'),
(57, 'The Golden Notebook'),
(58, 'Pippi Longstocking'),
(59, 'Diary of a Madman'),
(60, 'Children of Gebelawi'),
(61, 'Buddenbrooks'),
(62, 'The Magic Mountain'),
(63, 'Moby Dick'),
(64, 'Essays'),
(65, 'History'),
(66, 'Beloved'),
(67, 'The Tale of Genji'),
(68, 'The Man Without Qualities'),
(69, 'Lolita'),
(70, 'Nineteen Eighty-Four'),
(71, 'Metamorphoses'),
(72, 'The Book of Disquiet'),
(73, 'Tales'),
(74, 'In Search of Lost Time'),
(75, 'Gargantua and Pantagruel'),
(76, 'Pedro Páramo'),
(77, 'The Masnavi'),
(78, 'Midnight\'s Children'),
(79, 'Bostan'),
(80, 'Season of Migration to the North'),
(81, 'Blindness'),
(82, 'Hamlet'),
(83, 'King Lear'),
(84, 'Othello'),
(85, 'Oedipus the King'),
(86, 'The Red and the Black'),
(87, 'The Life And Opinions of Tristram Shandy'),
(88, 'Confessions of Zeno'),
(89, 'Gulliver\'s Travels'),
(90, 'War and Peace'),
(91, 'Anna Karenina'),
(92, 'The Death of Ivan Ilyich'),
(93, 'The Adventures of Huckleberry Finn'),
(94, 'Ramayana'),
(95, 'The Aeneid'),
(96, 'Mahabharata'),
(97, 'Leaves of Grass'),
(98, 'Mrs Dalloway'),
(99, 'To the Lighthouse'),
(100, 'Memoirs of Hadrian');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`username` varchar(30) NOT NULL,
`password` varchar(30) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`username`, `password`) VALUES
('admin', 'FreakyITisAwesomeeee');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `books`
--
ALTER TABLE `books`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD UNIQUE KEY `username` (`username`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `books`
--
ALTER TABLE `books`
MODIFY `id` int(30) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;