-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschool_lib_insert_data.sql
3574 lines (3529 loc) · 172 KB
/
school_lib_insert_data.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- DML
-- 1)TABLE: author
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(1, 'Gerry Walker');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(2, 'Chauncey O''Keefe');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(3, 'Dr. Vanessa Cassin PhD');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(4, 'Bella Ledner');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(5, 'Korey O''Conner IV');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(6, 'Trudie Stoltenberg');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(7, 'Yasmin Kuhn DDS');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(8, 'Ashlee Conroy');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(9, 'Katheryn Eichmann');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(10, 'Pauline Little');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(11, 'Prof. Sallie Kerluke');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(12, 'Dr. Bailey Lynch IV');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(13, 'Humberto Schulist');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(14, 'Zane Mitchell');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(15, 'Oliver Stark II');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(16, 'Rashawn Heller');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(17, 'Prof. Darrel Reilly');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(18, 'Corrine Shields');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(19, 'Dr. Randall Wehner');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(20, 'Prof. Rebeka Murphy');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(21, 'Miss Luna Nolan');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(22, 'Cynthia Little');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(23, 'Dr. Eddie Carter');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(24, 'Brody Parisian');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(25, 'Dena Gislason');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(26, 'Vanessa Mueller');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(27, 'Gilda Abernathy MD');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(28, 'Claud Ward');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(29, 'Prof. Malcolm Bradtke Sr.');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(30, 'America Mann');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(31, 'Mr. Gaetano Hartmann Sr.');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(32, 'Alf Carroll');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(33, 'Eriberto Fay Jr.');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(34, 'Deontae Von');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(35, 'Maia Larkin');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(36, 'Genesis Greenholt');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(37, 'Stacy Jones');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(38, 'Freeman Ondricka');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(39, 'Althea Hessel');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(40, 'Nakia Grimes');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(41, 'Ubaldo Hackett III');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(42, 'Eda Veum');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(43, 'Reva Schaden');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(44, 'Alberta Hahn');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(45, 'Guadalupe Grant Sr.');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(46, 'Prof. Sabrina Heller');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(47, 'Mrs. Pearlie Kling IV');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(48, 'Prof. Iva Rohan');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(49, 'Prof. Jesus Waters');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(50, 'Eric Goldner');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(51, 'Leo Gutkowski');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(52, 'Cassandre Welch DDS');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(53, 'Tyrel O''Keefe');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(54, 'Carolanne Veum');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(55, 'Chloe Breitenberg');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(56, 'Pascale Kemmer');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(57, 'Allan Gerhold');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(58, 'Ofelia Bogisich');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(59, 'Bo Herzog');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(60, 'Ms. Erna Lynch');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(61, 'Al Denesik');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(62, 'Emmett Langworth IV');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(63, 'Dr. Brittany Jaskolski');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(64, 'Mrs. Kianna Friesen III');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(65, 'Penelope Pouros');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(66, 'Aida Nader');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(67, 'Ari Sporer');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(68, 'Dr. Felton Fritsch MD');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(69, 'Prof. Lucie Zulauf');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(70, 'Leatha Welch');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(71, 'Noe Paucek');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(72, 'Golda Flatley');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(73, 'Elvera Rowe');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(74, 'Dr. Green O''Conner DVM');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(75, 'Priscilla Hammes');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(76, 'Syble Howe');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(77, 'Zula Ward');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(78, 'Dr. Fausto Wisoky Sr.');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(79, 'Buford Keeling');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(80, 'Cedrick Aufderhar Jr.');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(81, 'Dr. Hayden Okuneva DDS');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(82, 'Jayda Krajcik');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(83, 'Liliane Kutch Sr.');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(84, 'Gilbert Gislason');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(85, 'Thomas Rempel');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(86, 'Prof. Harrison Walter');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(87, 'Dr. Deangelo Jones');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(88, 'Jovany Ryan V');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(89, 'Harold Casper Jr.');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(90, 'Kaya Littel');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(91, 'Prof. Roma Rohan DVM');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(92, 'Brady Homenick');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(93, 'Jaime Hackett');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(94, 'Carol Fahey');
INSERT INTO school_lib.author
(author_id, author_name)
VALUES(95, 'Miss Claudie Prohaska MD');
-- 2)TABLE:book
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1071953916, 'at', 'O''Hara Ltd', 212, 'Ipsam mollitia ex odit dolor. In hic numquam ea eius sit beatae et.', 8, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1086847964, 'et', 'Keebler-Abbott', 267, 'Quo iste earum deserunt ut nemo vel vel. Cum autem minima expedita et consequatur asperiores doloribus et. Quidem dolorem numquam eius tempora.', 13, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1146634707, 'nam', 'Bins Inc', 430, 'Placeat molestiae deleniti maxime. Omnis ipsam quis et delectus molestiae debitis harum suscipit. Sit doloribus est nostrum architecto sit nisi.', 14, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1191406002, 'dolor', 'Connelly-Rolfson', 395, 'Doloribus quo praesentium eaque. Nemo aut sint suscipit. Voluptatum est excepturi exercitationem sequi provident voluptas quam. Aspernatur optio suscipit ab dolorem dolorem.', 12, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1230423418, 'eligendi', 'Ritchie-Swift', 441, 'Illum necessitatibus iste occaecati accusamus inventore. Reprehenderit aut qui ut natus. Facilis ratione nobis ratione aliquam quo. Provident assumenda inventore similique omnis consequatur eos.', 7, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1252364469, 'distinctio', 'Hermann, Ziemann and Hirthe', 180, 'Quis corrupti voluptate consequuntur nostrum sunt. Eius ea ea et aliquid fugit qui quasi nihil. Corporis aliquid cum minima. Aut enim id illum asperiores voluptas et magnam est.', 12, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1279530422, 'minima', 'Mann-Von', 478, 'Consequatur dolor optio commodi dolores est nisi. Ducimus magnam qui perferendis voluptas fuga. Dolores minima praesentium nesciunt suscipit excepturi aut.', 8, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1373620112, 'magnam', 'Lakin, Rath and Spinka', 332, 'Omnis cumque laboriosam quasi recusandae omnis accusamus saepe. Est incidunt odio placeat ea cum. Assumenda et voluptatibus maxime corrupti accusantium. Labore porro voluptas voluptate repudiandae.', 8, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1389010684, 'facere', 'Schneider Group', 323, 'Laborum perspiciatis in hic excepturi. Quo natus fugit quia ut. Hic est harum consequatur. Totam facere doloremque et consectetur quae aut sit libero.', 14, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1413600512, 'sint', 'Schumm, Gutmann and Larson', 255, 'Optio earum voluptatibus praesentium quisquam dolores sint. Et odit culpa dolores fugiat totam. Itaque blanditiis consequatur at aut facere sit illum. Aut nemo blanditiis eos a consequatur eos enim. Molestias voluptate non qui quas fugiat qui deleniti.', 10, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1433321773, 'hic', 'Heaney-Harris', 219, 'Rerum in sunt sed consequatur sunt. Ratione totam commodi porro tempora.', 9, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1487567215, 'ipsam', 'McCullough-O''Reilly', 283, 'Quidem labore dolores corrupti et consequatur voluptas itaque. Qui accusantium quibusdam tempore aperiam accusantium. Sint dolores velit et incidunt delectus quis.', 15, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1565072107, 'rem', 'Mitchell-Greenfelder', 246, 'Molestias omnis officiis corrupti aspernatur accusantium in. Et et perferendis voluptas molestias adipisci officia. Omnis voluptatem natus dolor.', 5, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1597754095, 'sed', 'Harvey-Rutherford', 418, 'Adipisci omnis facere praesentium minima sit voluptatibus. Nihil neque labore aut voluptatem. Nihil optio perspiciatis rem voluptas sit esse.', 8, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1636263433, 'et', 'Schuster, Harris and Crona', 136, 'Saepe illum dolores aspernatur esse. Aut eum vero delectus.', 11, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1649301220, 'voluptatem', 'Fahey PLC', 263, 'Unde est et ratione sed ullam quo. Aspernatur voluptates aut tempore debitis dolorum libero. Rerum hic dolores eos est corporis est ut.', 7, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1690705637, 'est', 'Ritchie LLC', 194, 'Accusantium corrupti vel perferendis distinctio laudantium. Minima expedita nobis dolore ab explicabo similique laboriosam. Voluptatem aut qui similique fuga odio totam voluptate libero. Tempore doloribus aut explicabo eligendi esse.', 8, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1734732728, 'eos', 'Schumm, Tremblay and Cremin', 285, 'Quibusdam et inventore consectetur expedita excepturi enim perferendis rerum. Dolor ut id quaerat quia maiores.', 9, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1750578633, 'aut', 'Towne-Zemlak', 161, 'Est maxime magni provident omnis voluptatem voluptate. Exercitationem eligendi voluptate minima aut. Et explicabo illo eos sequi ut voluptatem. Doloribus exercitationem quis soluta voluptatem quo.', 6, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1769821979, 'consequatur', 'Powlowski Ltd', 146, 'Vel et assumenda libero. Dolores et mollitia vitae minima est. Quasi earum eum officia eaque exercitationem et est.', 9, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1792088863, 'delectus', 'Streich-Kutch', 131, 'Vitae iusto ratione harum et enim quae est. Assumenda qui quisquam nihil neque voluptatem ullam veritatis. Ab ratione quasi nam qui et soluta. Consequuntur iste enim unde itaque.', 15, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1881029380, 'perferendis', 'Hoppe LLC', 287, 'Veritatis aut aspernatur quis voluptate facere molestiae. Facere quo rerum et dolor modi. Occaecati officia facere atque eveniet sed laboriosam minima. Totam repudiandae voluptatem asperiores maxime ut occaecati animi. Voluptates tempora explicabo sit quas.', 7, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1887691000, 'suscipit', 'Kertzmann, Rath and Towne', 124, 'Unde consequatur dicta non omnis nemo beatae non. Reprehenderit eos deserunt aperiam accusamus iste provident iusto id. Repudiandae exercitationem voluptates ex molestiae officia doloribus. Eum modi enim doloremque quae.', 9, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1901021427, 'reiciendis', 'Rogahn Group', 227, 'Dolore rerum et voluptatem cupiditate autem. Tempore praesentium quibusdam rerum voluptate quia consequuntur deserunt. Libero ut est similique atque et tenetur itaque. Maxime incidunt aliquid accusantium tempore rerum beatae.', 7, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1906007459, 'et', 'Kilback, Luettgen and Rempel', 278, 'Et voluptatem maiores aliquam tenetur et doloribus. Et veritatis suscipit sit. Architecto eos cupiditate cupiditate quo exercitationem.', 13, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1915803524, 'voluptatum', 'Thompson-Ondricka', 260, 'Impedit veniam architecto ut. Occaecati omnis odit vitae ad pariatur libero. Quasi eligendi possimus quia minus quis error. Nostrum tempore ut reiciendis perspiciatis.', 14, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1917004279, 'et', 'Shanahan-Dickinson', 118, 'Sapiente similique harum fugiat itaque necessitatibus nobis excepturi. Ratione est voluptates sequi veniam impedit fuga. Similique repellat velit et harum consequatur explicabo odio. Dolorum corrupti temporibus earum temporibus.', 15, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(1963962468, 'quos', 'O''Conner, Rosenbaum and Bartoletti', 197, 'Ipsam sapiente illum omnis quibusdam aut porro. Veniam eveniet aut nam est suscipit quae. Ad labore eius optio vero fugit sequi inventore ad.', 7, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2004872161, 'voluptatem', 'Hane, Batz and Kerluke', 285, 'Omnis culpa explicabo architecto dolorum. Et fugiat enim atque.', 9, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2010782732, 'qui', 'Gottlieb, O''Keefe and Stroman', 239, 'Rerum reiciendis voluptatem recusandae. Ducimus consequatur placeat illo aliquid aliquam laudantium maiores. Quia natus rerum quia cupiditate similique consequuntur. Dolore nesciunt dolorem quibusdam rerum officiis praesentium sit.', 11, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2022488326, 'numquam', 'Kilback, Koelpin and Daniel', 433, 'Unde temporibus architecto tenetur fuga ut. Est illo est recusandae incidunt. Modi aut possimus dolores inventore ad. Consequatur perferendis iusto expedita alias qui amet. Quaerat enim modi suscipit voluptatibus dolor vel sint tempora.', 15, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2045083548, 'in', 'Hand PLC', 109, 'In et necessitatibus est quo autem iusto. Est voluptatum dignissimos dicta reprehenderit quidem illo. Nihil pariatur et error vel quibusdam sed repellendus veniam. Fuga voluptatum sunt cupiditate sapiente architecto omnis eaque.', 5, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2074653865, 'ut', 'Cartwright, Abshire and Romaguera', 379, 'Dolores in porro quisquam et incidunt et consequatur et. Mollitia est fugit labore est perferendis. Illum est similique architecto omnis.', 5, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2094614387, 'cumque', 'Blanda, Nicolas and Bogan', 453, 'Voluptatem eligendi maxime voluptatem consequatur. Eaque deserunt quia quis nam excepturi nostrum quis. Velit expedita cupiditate maiores eius sapiente totam autem mollitia. Et non sit facilis et delectus dicta placeat. At quia voluptatum aut ad explicabo.', 9, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2117869043, 'eveniet', 'Spencer Inc', 134, 'Modi quia fugit in laborum voluptatem. Beatae voluptatem qui consequatur blanditiis. Velit eveniet eum ut rerum cum.', 11, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2134658685, 'molestiae', 'O''Connell, Spencer and Roberts', 429, 'Aut est doloribus necessitatibus omnis aut reiciendis aut. Placeat harum maiores et. Ut tenetur qui voluptatem et voluptatem voluptas. Beatae aut voluptatem minima eius sed.', 9, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2151394262, 'tenetur', 'Satterfield-Effertz', 156, 'Et aliquid aut neque iste impedit et repellat. Nulla recusandae praesentium molestias dolor rerum voluptates quaerat. Et dolores veritatis veniam consequatur distinctio repellendus nobis. Asperiores aut eveniet qui qui.', 9, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2198073157, 'officiis', 'Collins LLC', 443, 'Deserunt amet ab beatae et aut. Et et dolorem non voluptatem quis suscipit. Atque dolore voluptatum qui officiis in. Ducimus et natus perferendis quis non adipisci sit.', 10, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2209232827, 'repellendus', 'Price, Watsica and Brown', 293, 'Sunt maxime id non voluptatem explicabo. Maiores ut maxime culpa reiciendis iure. Et sed possimus numquam voluptatem maiores. Consequuntur consequatur debitis laborum dolorem asperiores.', 11, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2290059243, 'quia', 'Upton-Sauer', 438, 'Minus veniam quos cupiditate nemo architecto qui. Aut ad impedit ea. Iure eum eius consequatur soluta. Vel distinctio exercitationem in id autem.', 15, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2339601579, 'laudantium', 'Sporer-Wisoky', 243, 'Nisi dolorum eius ex nihil. Explicabo iure aut adipisci adipisci error quia ipsa quia. Natus culpa vitae deleniti dignissimos voluptates provident quos. Delectus necessitatibus dolor temporibus cupiditate sit quos.', 8, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2352019659, 'et', 'Gleichner Inc', 427, 'Asperiores aut alias est et est voluptatum pariatur. Quos repellat delectus et et ipsam totam. Consequatur doloribus in ut molestiae non.', 7, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2362905305, 'quae', 'Runolfsdottir Group', 466, 'Fugit in dolorem enim unde aut natus inventore consequatur. Dolore rerum distinctio facere illo et. Quae ducimus consequuntur distinctio iusto molestiae est. Tempora facere dolore fuga dolor totam.', 9, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2381383789, 'distinctio', 'Olson LLC', 197, 'Voluptatem voluptatem nisi dolor velit eos. Ipsam sint tempore explicabo doloribus ut et iure.', 8, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2474227933, 'architecto', 'Kshlerin Ltd', 124, 'Tempora tempore deserunt distinctio quos inventore nostrum. Et minima pariatur facilis quos est commodi. Beatae quam ut officia expedita ullam expedita corporis.', 12, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2474784286, 'ut', 'Swaniawski-Larson', 331, 'Eum quis sed porro aut et. Molestiae tempora id debitis et fugiat dolor et. Rem qui nemo pariatur odio.', 6, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2507344536, 'est', 'Mayert-Parker', 192, 'Possimus dolore dolorum alias impedit. Nam natus enim ipsam enim cumque. Id vel rerum magnam minus consectetur assumenda est. Sit quisquam id quod velit.', 5, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2507677778, 'excepturi', 'Zboncak Inc', 404, 'Nemo itaque quia et odit et. Provident aliquam rerum in sint. Sed earum esse modi.', 8, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2516010187, 'rerum', 'Price Ltd', 385, 'Ea sunt quisquam adipisci ducimus quia est. Quasi est autem sapiente pariatur accusamus. Sit ducimus nesciunt labore natus dolorem corrupti quia. Laudantium aut odio suscipit est provident reprehenderit quod eius. Maxime eos porro vel beatae.', 11, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2541824557, 'molestias', 'Waters, Wyman and Tromp', 179, 'In aut voluptatem ad neque nulla totam. Id sequi deleniti ipsum. Dolorem in rem quibusdam sed fugiat.', 8, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2584479192, 'nostrum', 'Wisozk PLC', 275, 'Exercitationem aspernatur facilis cum error. Deserunt laudantium rem reiciendis libero quaerat. Ut aspernatur molestias incidunt atque.', 15, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2711594369, 'et', 'Prohaska-Walter', 452, 'Eaque quaerat aliquid voluptatum cupiditate sint tempora. Quia odio esse dolorem consequatur. Possimus minima facere quia quo et et exercitationem. Accusamus tenetur beatae architecto non sit.', 8, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2730834547, 'id', 'Shanahan Inc', 401, 'Quas occaecati id quasi est quas. Deserunt aliquam et nostrum quo non officiis. Earum commodi sequi molestiae id necessitatibus.', 10, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2784526064, 'architecto', 'Boyle, Cremin and Lemke', 335, 'A eligendi non minima rerum commodi. Animi reprehenderit voluptas magnam et quod. Asperiores provident natus molestiae ipsa.', 7, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2786846406, 'in', 'Blanda and Sons', 464, 'Aut possimus aut totam voluptas quia. Est quo rem quasi. Blanditiis quasi tempora voluptas quod. Inventore qui nihil sint sit.', 7, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2808868455, 'consequuntur', 'Abbott, Satterfield and Pagac', 182, 'Impedit deleniti voluptas molestiae dignissimos velit. Soluta minus asperiores officia molestiae similique. Sit voluptates libero ducimus molestiae aut qui. Possimus exercitationem possimus fuga perferendis. Neque a ratione sequi.', 6, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2874081058, 'et', 'Klein, Erdman and Ferry', 304, 'Pariatur non laudantium iusto. Eum sit qui quo maxime qui. Rem quas qui tempore molestiae. Rerum voluptate sunt laborum amet.', 5, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2938674202, 'excepturi', 'Jacobson, Doyle and Turcotte', 238, 'Commodi consequuntur eius sapiente. Omnis error consectetur accusantium minus occaecati voluptates ipsum. Repellat omnis natus aut ut dolorem. Sed eaque ipsa odit at est dicta.', 5, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2956978004, 'repudiandae', 'Weissnat-Beahan', 360, 'Animi quam neque officiis corrupti error. Dolorem eius voluptatem ullam nulla esse. Impedit vel consectetur quo nostrum quo nisi.', 5, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2986646716, 'et', 'Waters Inc', 119, 'Sint natus enim natus dolorum. Cumque ea dolor est aliquid aut. Quidem eaque aperiam est voluptatem reprehenderit hic.', 15, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(2987223833, 'officiis', 'Waelchi-Marvin', 252, 'Laborum id vero molestiae a dolore. At et necessitatibus eum modi ad. In velit veniam cumque occaecati voluptatum totam non distinctio. Dolores optio aliquam debitis est illum molestiae.', 9, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3005780964, 'quaerat', 'Becker-Rutherford', 401, 'Et in porro omnis est nisi nulla. Beatae voluptas aut optio voluptatibus eligendi praesentium. Rerum ut autem eos placeat esse et.', 7, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3045396509, 'ipsum', 'Adams-Ryan', 138, 'Aut quam incidunt odit unde doloribus adipisci. Non fuga et officia perspiciatis vero. Autem dolorem minima natus voluptatem beatae est et perferendis. Et ratione illum sapiente et.', 15, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3046490378, 'nobis', 'Senger, Heller and Green', 272, 'Et ullam facilis facere. Ut inventore quisquam hic ea ut sint. Distinctio consequuntur impedit delectus sit in dolorum distinctio aperiam.', 6, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3061345754, 'neque', 'Windler and Sons', 261, 'Blanditiis eaque eum voluptates molestiae accusamus. Sit repellat ratione sed sequi velit aut quis. Ut molestiae molestiae culpa praesentium. Occaecati aut soluta culpa omnis occaecati est.', 14, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3114297905, 'a', 'Ernser, Cartwright and Wiza', 347, 'Fuga qui rerum odio ut recusandae numquam. Deserunt nostrum id libero cumque in quasi eos. Et eos ducimus qui dolorem ea aut. Officia eaque animi laborum qui id.', 8, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3154062454, 'laudantium', 'Rowe, Kertzmann and Davis', 327, 'Quisquam ut earum consequatur est dolorem qui. Ut nihil et qui dolorem quisquam. Nostrum voluptas dolorem et quis deleniti ut.', 15, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3167692277, 'consectetur', 'Schulist, Lynch and Jacobson', 215, 'Odio incidunt modi laboriosam at occaecati tempora asperiores. Repudiandae et itaque illum delectus non officiis aperiam. Illum ad minima et sit quia dignissimos illum.', 15, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3210839127, 'molestiae', 'Price-Nitzsche', 205, 'Similique deserunt debitis odit quo reprehenderit eos tempore. Rem similique explicabo aut excepturi. Odit explicabo ea vel.', 11, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3318889281, 'qui', 'Funk, Gibson and Walter', 271, 'Cumque ducimus voluptas quisquam blanditiis qui ullam iste minima. Facere occaecati magni ut ex. Soluta reprehenderit qui et sint. Maiores accusantium ut odit fugit ratione debitis ea.', 6, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3382621102, 'quo', 'Zboncak and Sons', 101, 'Et aut architecto molestias distinctio earum. Maxime deleniti quidem magnam sed.', 8, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3401655907, 'quo', 'Tremblay, Moen and O''Conner', 174, 'Aperiam veniam eum nihil qui. Est exercitationem ex dolore voluptate aut consectetur labore. Eius temporibus excepturi et suscipit consectetur harum. Beatae veritatis autem earum dicta.', 6, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3404826024, 'tenetur', 'Metz Inc', 369, 'Sit voluptas ut ex ad quo veniam error. Deleniti non deleniti voluptates harum repellendus hic. Modi consequuntur architecto eos laboriosam. Rerum dolorem quasi ut sed dolores saepe omnis quia. Commodi possimus qui mollitia qui.', 8, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3424917105, 'quos', 'Kunze LLC', 103, 'Non rerum vel quod velit officiis aliquam. Qui sequi expedita sint est quos voluptates et. Qui impedit fugit voluptate assumenda.', 11, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3509802907, 'molestiae', 'Legros-Gislason', 414, 'Facere sint eaque dolor voluptatem. Alias nulla aut nulla ut. Aperiam minima quis minima voluptatem sed nihil neque ea. Eum numquam quia qui odio placeat veritatis.', 9, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3564339946, 'nisi', 'Yundt, Hoeger and Bruen', 105, 'Dolore fugiat id officia quis quasi et. Quia veritatis voluptate mollitia aut veniam ea. Voluptas voluptatem amet quis laudantium dolorem.', 10, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3567504627, 'omnis', 'Erdman, Zieme and Dietrich', 381, 'Alias illo quis architecto sunt et. Pariatur saepe quaerat accusamus dolorum voluptates aliquam neque ut. Labore laudantium laborum odio adipisci necessitatibus. Omnis et nulla rerum voluptas consectetur.', 9, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3595302830, 'eligendi', 'Macejkovic Inc', 469, 'Quia perspiciatis odio sed fuga. Qui illo est quisquam earum reiciendis maxime alias. Ipsa ut earum tenetur et odio quia doloremque.', 13, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3623405466, 'iure', 'Monahan-Shanahan', 378, 'Est quia qui velit ipsum. Aspernatur quibusdam ea exercitationem ea exercitationem error. Dolore ipsum non nesciunt voluptatum earum officia.', 12, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3630241589, 'quia', 'DuBuque, Schaden and O''Kon', 488, 'Ullam officia totam nesciunt iusto ut. Rerum accusamus iste corrupti quae enim. Voluptate pariatur dignissimos et voluptas voluptas dolores. Quia nihil explicabo iure quibusdam accusantium.', 10, 0x68, 'ru', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3703629765, 'quia', 'Lockman, Krajcik and Sawayn', 476, 'Quos praesentium numquam quod nostrum. Neque unde dolorem minima quasi. Illo beatae saepe quia ullam adipisci. Libero amet et natus accusamus laudantium.', 5, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3709974127, 'et', 'Pacocha, Kreiger and Stroman', 104, 'Voluptatibus odit aliquid sit explicabo cumque distinctio suscipit. Hic aut ea et mollitia reiciendis repellendus. Delectus quidem consectetur consequatur ut quis. Ad excepturi in esse quo ipsa.', 15, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3749700837, 'aut', 'Klein LLC', 338, 'Architecto similique atque aliquid qui voluptatum atque. Facilis earum perferendis incidunt eos quaerat repellendus. Et consequatur eos id dolorum.', 8, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3772760191, 'aut', 'Upton LLC', 454, 'Ullam asperiores rerum voluptatem velit nulla eos. Rerum minima at sapiente voluptate omnis. Qui porro a libero necessitatibus perspiciatis qui ullam. Aut consequatur autem voluptas optio in iure ipsa.', 10, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3826918663, 'nisi', 'Bernhard Ltd', 282, 'Laborum quis harum omnis dolores illum est sit. Illum ea libero ut est ab voluptatum. Minima suscipit est vel et ea dignissimos iste. Voluptas dignissimos repudiandae aut neque. Assumenda in facilis sint et unde.', 12, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3918896331, 'sint', 'Bauch Ltd', 383, 'Voluptas commodi illum optio et dolorum ut quas veniam. Sint voluptatem dolorem optio dolorum. Aut accusamus ea tempore perferendis deleniti. Cum perferendis et voluptas laborum quasi dolor ipsum.', 11, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3972174623, 'non', 'Robel-Jacobs', 474, 'Eum ut nobis corporis qui voluptas consequatur molestiae eaque. Corporis quibusdam omnis deserunt repudiandae velit enim. Iusto id consequatur eos est.', 9, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3972483310, 'dolor', 'Kohler Ltd', 242, 'Autem non voluptatem error ab esse culpa. Earum praesentium sit totam magni et. Provident recusandae maiores id unde est autem aut.', 13, 0x68, 'de', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(3980133275, 'voluptates', 'Schmeler-Dickinson', 394, 'Quasi omnis dignissimos ipsum fugit facilis. Reprehenderit doloremque rerum unde doloremque reiciendis. Molestiae totam aut illo qui ratione et dolorem.', 8, 0x68, 'en', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4075108600, 'dolorem', 'Trantow Ltd', 209, 'Tempore est et minus rerum ab dolorem. Et eum explicabo voluptatibus illum. Est non id et itaque perferendis.', 15, 0x68, 'it', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4076353662, 'omnis', 'Moore, Mitchell and Mohr', 348, 'Officia cum saepe optio modi eos magnam. Aspernatur est explicabo omnis enim cumque non. Exercitationem delectus culpa optio et accusamus et. Consequatur reprehenderit sint atque doloribus mollitia sed.', 11, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4099084694, 'tenetur', 'Vandervort-Metz', 466, 'Non accusamus rerum totam sunt autem quasi ratione. Mollitia soluta omnis sequi et. Animi aut dicta aspernatur porro qui qui officiis. Enim aspernatur maxime animi quisquam itaque exercitationem.', 14, 0x68, 'fr', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4114515367, 'at', 'Borer LLC', 447, 'Numquam maiores necessitatibus quas voluptatem officia. Consequuntur voluptates iste facilis voluptate. Et voluptatem quos voluptate eum et dolore voluptas. Placeat reprehenderit quis dignissimos dolor omnis placeat.', 8, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4118466201, 'ipsam', 'Feest LLC', 166, 'In assumenda exercitationem id aut magnam in. Quas qui dolores a consequatur quod. Est aliquid illum pariatur tempora. Et saepe eius illum ex vel rerum.', 10, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4140524445, 'rerum', 'DuBuque, Feil and Yundt', 466, 'Officia dolor laudantium autem et. Rerum qui qui voluptas eius perferendis rerum nostrum et.', 5, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4172576783, 'molestiae', 'Kihn, Mayer and Ledner', 433, 'Veniam nostrum ipsam veniam libero rem et voluptatem quas. Sed consectetur sed molestias neque possimus sit. Ratione itaque quo qui est error dolor.', 11, 0x68, 'pt', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4225334484, 'corporis', 'Lang PLC', 251, 'Eum facere est quos omnis voluptatibus nulla commodi. Deleniti harum ea non sit. Quod sunt velit ipsam temporibus mollitia dolore nihil.', 12, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4234053780, 'et', 'Schuppe-Hahn', 469, 'Qui assumenda nostrum rerum ut quia ab quis voluptatem. Perferendis vero animi labore placeat officia. Id doloremque saepe repellendus pariatur quae reiciendis.', 6, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4255233380, 'et', 'Botsford, Mraz and Klein', 291, 'Harum quia quidem est cumque dolorum earum. Totam sapiente qui illo qui consequatur exercitationem. Porro ea est fugit sunt corrupti.', 11, 0x68, 'cn', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4283105764, 'quia', 'Gulgowski Group', 366, 'Quo consectetur possimus consequuntur non ut vitae voluptatibus mollitia. Optio doloribus ullam expedita rem et in officiis tenetur. Distinctio aut reiciendis placeat dolorem necessitatibus quisquam.', 11, 0x68, 'es', 2);
INSERT INTO school_lib.book
(ISBN, title, publisher, num_pages, summary, num_copies, images, `language`, book_status)
VALUES(4294967295, 'fuga', 'Haley LLC', 282, 'Illum id accusantium tempora. Quia pariatur nesciunt doloremque enim quasi numquam tempore sit. Esse qui quis eos dicta natus dolorem.', 7, 0x68, 'de', 2);
-- 3)TABLE:book_author
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1071953916, 1, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1086847964, 2, 2);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1146634707, 3, 3);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1191406002, 4, 4);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1230423418, 5, 5);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1252364469, 6, 6);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1279530422, 7, 7);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1373620112, 8, 8);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1389010684, 9, 9);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1413600512, 10, 10);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1433321773, 11, 11);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1487567215, 12, 12);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1565072107, 13, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1597754095, 14, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1636263433, 15, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1649301220, 16, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1690705637, 17, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1734732728, 18, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1750578633, 19, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1769821979, 20, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1792088863, 21, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1881029380, 22, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1887691000, 23, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1901021427, 24, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1906007459, 25, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1915803524, 26, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1917004279, 27, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1963962468, 28, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2004872161, 29, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2010782732, 30, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2022488326, 31, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2045083548, 32, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2074653865, 33, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2094614387, 34, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2117869043, 35, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2134658685, 36, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2151394262, 37, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2198073157, 38, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2209232827, 39, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2290059243, 40, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2339601579, 41, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2352019659, 42, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2362905305, 43, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2381383789, 44, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2474227933, 45, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2474784286, 46, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2507344536, 47, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2507677778, 48, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2516010187, 49, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2541824557, 50, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2584479192, 51, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2711594369, 52, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2730834547, 53, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2784526064, 54, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2786846406, 55, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2808868455, 56, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2874081058, 57, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2938674202, 58, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2956978004, 59, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2986646716, 60, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(2987223833, 61, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3005780964, 62, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3045396509, 63, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3046490378, 64, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3061345754, 65, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3114297905, 66, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3154062454, 67, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3167692277, 68, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3210839127, 69, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3318889281, 70, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3382621102, 71, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3401655907, 72, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3404826024, 73, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3424917105, 74, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3509802907, 75, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3564339946, 76, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3567504627, 77, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3595302830, 78, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3623405466, 79, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3630241589, 80, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3703629765, 81, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3709974127, 82, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3749700837, 83, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3772760191, 84, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3826918663, 85, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3918896331, 86, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3972174623, 87, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3972483310, 88, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(3980133275, 89, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4075108600, 90, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4076353662, 91, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4099084694, 92, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4114515367, 93, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4118466201, 94, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4140524445, 95, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4172576783, 96, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4225334484, 97, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4234053780, 98, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4255233380, 99, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4283105764, 100, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(4294967295, 101, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1071953916, 102, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1086847964, 103, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1146634707, 104, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1191406002, 105, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1230423418, 106, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1487567215, 107, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1565072107, 108, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1597754095, 109, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1636263433, 110, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1649301220, 111, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1690705637, 112, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1734732728, 113, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1750578633, 114, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1769821979, 115, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1792088863, 116, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1881029380, 117, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1887691000, 118, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1901021427, 119, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1906007459, 120, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1915803524, 121, 1);
INSERT INTO school_lib.book_author
(ISBN, book_author_id, author_id)
VALUES(1917004279, 122, 1);
-- 6)TABLE:category
INSERT INTO school_lib.category
(category_id, category_name)
VALUES(1, 'magni');
INSERT INTO school_lib.category
(category_id, category_name)
VALUES(2, 'dolor');
INSERT INTO school_lib.category
(category_id, category_name)
VALUES(3, 'exercitationem');
INSERT INTO school_lib.category
(category_id, category_name)
VALUES(4, 'et');
INSERT INTO school_lib.category
(category_id, category_name)
VALUES(5, 'dolores');
INSERT INTO school_lib.category
(category_id, category_name)
VALUES(6, 'sunt');
INSERT INTO school_lib.category
(category_id, category_name)
VALUES(7, 'sit');
INSERT INTO school_lib.category
(category_id, category_name)