-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary_insert_data.sql
More file actions
2188 lines (2167 loc) · 153 KB
/
library_insert_data.sql
File metadata and controls
2188 lines (2167 loc) · 153 KB
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
--
-- Άδειασμα δεδομένων του πίνακα `user`
--
INSERT INTO `user` (`id`, `password`, `name`, `age`, `ph_nmbr`, `mail`, `nmbr_of_books`, `number`, `approved_status`, `weekly_borrowing_count`, `weekly_booking_count`) VALUES
(101000000, 'Nikos_Papadopoulos', 'Nikos Papadopoulos', 15, '6900000101', 'Nikos_Papadopoulos@gmail.com', 0, 1, 'active', 2, 2),
(102000000, 'Maria_Georgiou', 'Maria Georgiou', 16, '6900000102', 'Maria_Georgiou@gmail.com', 0, 1, 'active', 2, 2),
(103000000, 'Dimitris_Papandreou', 'Dimitris Papandreou', 17, '6900000103', 'Dimitris_Papandreou@gmail.com', 0, 1, 'active', 2, 2),
(104000000, 'Katerina_Kostas', 'Katerina Kostas', 18, '6900000104', 'Katerina_Kostas@gmail.com', 0, 1, 'active', 2, 2),
(105000000, 'Giannis_Karagiannis', 'Giannis Karagiannis', 15, '6900000105', 'Giannis_Karagiannis@gmail.com', 0, 1, 'active', 2, 2),
(106000000, 'Eleni_Athanasiou', 'Eleni Athanasiou', 16, '6900000106', 'Eleni_Athanasiou@gmail.com', 0, 1, 'active', 2, 2),
(107000000, 'Alexandros_Stefanopoulos', 'Alexandros Stefanopoulos', 17, '6900000107', 'Alexandros_Stefanopoulos@gmail.com', 0, 1, 'active', 2, 2),
(108000000, 'Sofia_Papadakis', 'Sofia Papadakis', 18, '6900000108', 'Sofia_Papadakis@gmail.com', 0, 1, 'active', 2, 2),
(109000000, 'Andreas_Katsaris', 'Andreas Katsaris', 15, '6900000109', 'Andreas_Katsaris@gmail.com', 0, 1, 'active', 2, 2),
(110000000, 'Despina_Papanikolaou', 'Despina Papanikolaou', 16, '6900000110', 'Despina_Papanikolaou@gmail.com', 0, 1, 'active', 2, 2),
(111000000, 'Giorgos_Papadimitriou', 'Giorgos Papadimitriou', 17, '6900000111', 'Giorgos_Papadimitriou@gmail.com', 0, 1, 'active', 2, 2),
(112000000, 'Katerina_Christopoulos', 'Katerina Christopoulos', 18, '6900000112', 'Katerina_Christopoulos@gmail.com', 0, 1, 'active', 2, 2),
(113000000, 'Panagiotis_Arvanitis', 'Panagiotis Arvanitis', 15, '6900000113', 'Panagiotis_Arvanitis@gmail.com', 0, 1, 'active', 2, 2),
(114000000, 'Eleftheria_Dimitriou', 'Eleftheria Dimitriou', 16, '6900000114', 'Eleftheria_Dimitriou@gmail.com', 0, 1, 'active', 2, 2),
(115000000, 'Alexandros_Ioannou', 'Alexandros Ioannou', 17, '6900000115', 'Alexandros_Ioannou@gmail.com', 0, 1, 'active', 2, 2),
(116000000, 'Maria_Tzortzis', 'Maria Tzortzis', 18, '6900000116', 'Maria_Tzortzis@gmail.com', 0, 1, 'active', 2, 2),
(117000000, 'Ioannis_Koulouris', 'Ioannis Koulouris', 15, '6900000117', 'Ioannis_Koulouris@gmail.com', 0, 1, 'active', 2, 2),
(118000000, 'Dimitra_Antoniou', 'Dimitra Antoniou', 16, '6900000118', 'Dimitra_Antoniou@gmail.com', 0, 1, 'active', 2, 2),
(119000000, 'Thanasis_Economou', 'Thanasis Economou', 17, '6900000119', 'Thanasis_Economou@gmail.com', 0, 1, 'active', 2, 2),
(120000000, 'Christina_Papageorgiou', 'Christina Papageorgiou', 18, '6900000120', 'Christina_Papageorgiou@gmail.com', 0, 1, 'active', 2, 2),
(121000000, 'Nikolas_Karamanlis', 'Nikolas Karamanlis', 15, '6900000121', 'Nikolas_Karamanlis@gmail.com', 0, 1, 'active', 2, 2),
(122000000, 'Eleni_Vasilopoulos', 'Eleni Vasilopoulos', 16, '6900000122', 'Eleni_Vasilopoulos@gmail.com', 0, 1, 'active', 2, 2),
(123000000, 'Andreas_Nikolaidis', 'Andreas Nikolaidis', 17, '6900000123', 'Andreas_Nikolaidis@gmail.com', 0, 1, 'active', 2, 2),
(124000000, 'Georgia_Papazoglou', 'Georgia Papazoglou', 18, '6900000124', 'Georgia_Papazoglou@gmail.com', 0, 1, 'active', 2, 2),
(125000000, 'Panagiotis_Michalopoulos', 'Panagiotis Michalopoulos', 15, '6900000125', 'Panagiotis_Michalopoulos@gmail.com', 0, 1, 'active', 2, 2),
(126000000, 'Sofia_Sotiriou', 'Sofia Sotiriou', 16, '6900000126', 'Sofia_Sotiriou@gmail.com', 0, 1, 'active', 2, 2),
(127000000, 'Antonis_Theodorou', 'Antonis Theodorou', 17, '6900000127', 'Antonis_Theodorou@gmail.com', 0, 1, 'active', 2, 2),
(128000000, 'Fotini_Alexandropoulos', 'Fotini Alexandropoulos', 18, '6900000128', 'Fotini_Alexandropoulos@gmail.com', 0, 1, 'active', 2, 2),
(129000000, 'Konstantinos_Kallergis', 'Konstantinos Kallergis', 15, '6900000129', 'Konstantinos_Kallergis@gmail.com', 0, 1, 'active', 2, 2),
(130000000, 'Eleftheria_Panagiotopoulos', 'Eleftheria Panagiotopoulos', 16, '6900000130', 'Eleftheria_Panagiotopoulos@gmail.com', 0, 1, 'active', 2, 2),
(131000000, 'Christos_Mavridis', 'Christos Mavridis', 17, '6900000131', 'Christos_Mavridis@gmail.com', 0, 1, 'active', 2, 2),
(132000000, 'Anna_Papantonis', 'Anna Papantonis', 18, '6900000132', 'Anna_Papantonis@gmail.com', 0, 1, 'active', 2, 2),
(133000000, 'Athanasios_Georgiadis', 'Athanasios Georgiadis', 15, '6900000133', 'Athanasios_Georgiadis@gmail.com', 0, 1, 'active', 2, 2),
(134000000, 'Dimitra_Bakirtzis', 'Dimitra Bakirtzis', 16, '6900000134', 'Dimitra_Bakirtzis@gmail.com', 0, 1, 'active', 2, 2),
(135000000, 'Georgios_Petridis', 'Georgios Petridis', 17, '6900000135', 'Georgios_Petridis@gmail.com', 0, 1, 'active', 2, 2),
(150000000, 'Anastasia_Papakonstantinou', 'Anastasia Papakonstantinou', 41, '6900000150', 'Anastasia_Papakonstantinou@gmail.com', 0, 2, 'active', 1, 1),
(151000000, 'Kostas_Pavlidis', 'Kostas Pavlidis', 42, '6900000151', 'Kostas_Pavlidis@gmail.com', 0, 2, 'active', 1, 1),
(152000000, 'Ioanna_Aggelopoulos', 'Ioanna Aggelopoulos', 43, '6900000152', 'Ioanna_Aggelopoulos@gmail.com', 0, 2, 'active', 1, 1),
(153000000, 'Michalis_Katsoulis', 'Michalis Katsoulis', 34, '6900000153', 'Michalis_Katsoulis@gmail.com', 0, 2, 'active', 1, 1),
(154000000, 'Aggeliki_Stefanidis', 'Aggeliki Stefanidis', 35, '6900000154', 'Aggeliki_Stefanidis@gmail.com', 0, 2, 'active', 1, 1),
(155000000, 'Andreas_Angelopoulos', 'Andreas Angelopoulos', 36, '6900000155', 'Andreas_Angelopoulos@gmail.com', 0, 2, 'active', 1, 1),
(156000000, 'Maria_Panagiotou', 'Maria Panagiotou', 47, '6900000156', 'Maria_Panagiotou@gmail.com', 0, 2, 'active', 1, 1),
(157000000, 'Dimitrios_Papazisis', 'Dimitrios Papazisis', 38, '6900000157', 'Dimitrios_Papazisis@gmail.com', 0, 2, 'active', 1, 1),
(158000000, 'Katerina_Alexopoulos', 'Katerina Alexopoulos', 39, '6900000158', 'Katerina_Alexopoulos@gmail.com', 0, 2, 'active', 1, 1),
(159000000, 'Giorgos_Vasileiou', 'Giorgos Vasileiou', 50, '6900000159', 'Giorgos_Vasileiou@gmail.com', 0, 2, 'active', 1, 1),
(160000000, 'Eleni_Papamichael', 'Eleni Papamichael', 51, '6900000160', 'Eleni_Papamichael@gmail.com', 0, 2, 'active', 1, 1),
(170000000, 'Alexandros_Petropoulos', 'Alexandros Petropoulos', 52, '6900000170', 'Alexandros_Petropoulos@gmail.com', 0, 3, 'active', 0, 0),
(180000000, 'Nikos_Georgiadis', 'Nikos Georgiadis', 53, '6900000180', 'Nikos_Georgiadis@gmail.com', 0, 4, 'active', 0, 0),
(201000000, 'Nikolas_Adamopoulos', 'Nikolas Adamopoulos', 15, '6900000201', 'Nikolas_Adamopoulos@gmail.com', 0, 1, 'active', 2, 2),
(202000000, 'Maria_Christodoulou', 'Maria Christodoulou', 16, '6900000202', 'Maria_Christodoulou@gmail.com', 0, 1, 'active', 2, 2),
(203000000, 'Dimitra_Papastamatiou', 'Dimitra Papastamatiou', 17, '6900000203', 'Dimitra_Papastamatiou@gmail.com', 0, 1, 'active', 2, 2),
(204000000, 'Christos_Andreadis', 'Christos Andreadis', 18, '6900000204', 'Christos_Andreadis@gmail.com', 0, 1, 'active', 2, 2),
(205000000, 'Eleni_Papoulis', 'Eleni Papoulis', 15, '6900000205', 'Eleni_Papoulis@gmail.com', 0, 1, 'active', 2, 2),
(206000000, 'Alexandros_Georgiadis', 'Alexandros Georgiadis', 16, '6900000206', 'Alexandros_Georgiadis@gmail.com', 0, 1, 'active', 2, 2),
(207000000, 'Sofia_Karas', 'Sofia Karas', 17, '6900000207', 'Sofia_Karas@gmail.com', 0, 1, 'active', 2, 2),
(208000000, 'Giannis_Apostolou', 'Giannis Apostolou', 18, '6900000208', 'Giannis_Apostolou@gmail.com', 0, 1, 'active', 2, 2),
(209000000, 'Katerina_Nikolaidou', 'Katerina Nikolaidou', 15, '6900000209', 'Katerina_Nikolaidou@gmail.com', 0, 1, 'active', 2, 2),
(210000000, 'Andreas_Papandreou', 'Andreas Papandreou', 16, '6900000210', 'Andreas_Papandreou@gmail.com', 0, 1, 'active', 2, 2),
(211000000, 'Eleftheria_Papadellis', 'Eleftheria Papadellis', 17, '6900000211', 'Eleftheria_Papadellis@gmail.com', 0, 1, 'active', 2, 2),
(212000000, 'Panagiotis_Lambrou', 'Panagiotis Lambrou', 18, '6900000212', 'Panagiotis_Lambrou@gmail.com', 0, 1, 'active', 2, 2),
(213000000, 'Despina_Papadakis', 'Despina Papadakis', 15, '6900000213', 'Despina_Papadakis@gmail.com', 0, 1, 'active', 2, 2),
(214000000, 'Antonis_Stefanidis', 'Antonis Stefanidis', 16, '6900000214', 'Antonis_Stefanidis@gmail.com', 0, 1, 'active', 2, 2),
(215000000, 'Georgia_Georgopoulos', 'Georgia Georgopoulos', 17, '6900000215', 'Georgia_Georgopoulos@gmail.com', 0, 1, 'active', 2, 2),
(216000000, 'Ioannis_Stavropoulos', 'Ioannis Stavropoulos', 18, '6900000216', 'Ioannis_Stavropoulos@gmail.com', 0, 1, 'active', 2, 2),
(217000000, 'Dimitris_Konstantinidis', 'Dimitris Konstantinidis', 15, '6900000217', 'Dimitris_Konstantinidis@gmail.com', 0, 1, 'active', 2, 2),
(218000000, 'Maria_Karamanlis', 'Maria Karamanlis', 16, '6900000218', 'Maria_Karamanlis@gmail.com', 0, 1, 'active', 2, 2),
(219000000, 'Thanasis_Papanikolopoulos', 'Thanasis Papanikolopoulos', 17, '6900000219', 'Thanasis_Papanikolopoulos@gmail.com', 0, 1, 'active', 2, 2),
(220000000, 'Christina_Dimitriadis', 'Christina Dimitriadis', 18, '6900000220', 'Christina_Dimitriadis@gmail.com', 0, 1, 'active', 2, 2),
(221000000, 'Nikos_Katsoulis', 'Nikos Katsoulis', 15, '6900000221', 'Nikos_Katsoulis@gmail.com', 0, 1, 'active', 2, 2),
(222000000, 'Eleni_Vasileiadis', 'Eleni Vasileiadis', 16, '6900000222', 'Eleni_Vasileiadis@gmail.com', 0, 1, 'active', 2, 2),
(223000000, 'Andreas_Economides', 'Andreas Economides', 17, '6900000223', 'Andreas_Economides@gmail.com', 0, 1, 'active', 2, 2),
(224000000, 'Sofia_Panagiotidis', 'Sofia Panagiotidis', 18, '6900000224', 'Sofia_Panagiotidis@gmail.com', 0, 1, 'active', 2, 2),
(225000000, 'Georgios_Athanasiadis', 'Georgios Athanasiadis', 15, '6900000225', 'Georgios_Athanasiadis@gmail.com', 0, 1, 'active', 2, 2),
(226000000, 'Dimitra_Papadopoulou', 'Dimitra Papadopoulou', 16, '6900000226', 'Dimitra_Papadopoulou@gmail.com', 0, 1, 'active', 2, 2),
(227000000, 'Panagiotis_Alexandropoulos', 'Panagiotis Alexandropoulos', 17, '6900000227', 'Panagiotis_Alexandropoulos@gmail.com', 0, 1, 'active', 2, 2),
(228000000, 'Eleftheria_Kostopoulos', 'Eleftheria Kostopoulos', 18, '6900000228', 'Eleftheria_Kostopoulos@gmail.com', 0, 1, 'active', 2, 2),
(229000000, 'Christos_Papantonopoulos', 'Christos Papantonopoulos', 15, '6900000229', 'Christos_Papantonopoulos@gmail.com', 0, 1, 'active', 2, 2),
(230000000, 'Anna_Ioannidis', 'Anna Ioannidis', 16, '6900000230', 'Anna_Ioannidis@gmail.com', 0, 1, 'active', 2, 2),
(231000000, 'Athanasia_Antoniadis', 'Athanasia Antoniadis', 17, '6900000231', 'Athanasia_Antoniadis@gmail.com', 0, 1, 'active', 2, 2),
(232000000, 'Dimitris_Theodoropoulos', 'Dimitris Theodoropoulos', 18, '6900000232', 'Dimitris_Theodoropoulos@gmail.com', 0, 1, 'active', 2, 2),
(233000000, 'Fotini_Kourkoulis', 'Fotini Kourkoulis', 17, '6900000233', 'Fotini_Kourkoulis@gmail.com', 0, 1, 'active', 2, 2),
(234000000, 'Konstantinos_Papadopoulos', 'Konstantinos Papadopoulos', 16, '6900000234', 'Konstantinos_Papadopoulos@gmail.com', 0, 1, 'active', 2, 2),
(235000000, 'Eleftheria_Christopoulos', 'Eleftheria Christopoulos', 15, '6900000235', 'Eleftheria_Christopoulos@gmail.com', 0, 1, 'active', 2, 2),
(250000000, 'Anastasia_Mavroudis', 'Anastasia Mavroudis', 41, '6900000250', 'Anastasia_Mavroudis@gmail.com', 0, 2, 'active', 1, 1),
(251000000, 'Kostas_Panagiotopoulos', 'Kostas Panagiotopoulos', 42, '6900000251', 'Kostas_Panagiotopoulos@gmail.com', 0, 2, 'active', 1, 1),
(252000000, 'Ioanna_Mavridis', 'Ioanna Mavridis', 43, '6900000252', 'Ioanna_Mavridis@gmail.com', 0, 2, 'active', 1, 1),
(253000000, 'Michalis_Papakonstantinou', 'Michalis Papakonstantinou', 44, '6900000253', 'Michalis_Papakonstantinou@gmail.com', 0, 2, 'active', 1, 1),
(254000000, 'Aggeliki_Georgakopoulos', 'Aggeliki Georgakopoulos', 45, '6900000254', 'Aggeliki_Georgakopoulos@gmail.com', 0, 2, 'active', 1, 1),
(255000000, 'Andreas_Tzortzis', 'Andreas Tzortzis', 46, '6900000255', 'Andreas_Tzortzis@gmail.com', 0, 2, 'active', 1, 1),
(256000000, 'Maria_Papathanasiou', 'Maria Papathanasiou', 37, '6900000256', 'Maria_Papathanasiou@gmail.com', 0, 2, 'active', 1, 1),
(257000000, 'Dimitrios_Koulouris', 'Dimitrios Koulouris', 38, '6900000257', 'Dimitrios_Koulouris@gmail.com', 0, 2, 'active', 1, 1),
(258000000, 'Katerina_Antonopoulos', 'Katerina Antonopoulos', 49, '6900000258', 'Katerina_Antonopoulos@gmail.com', 0, 2, 'active', 1, 1),
(259000000, 'Giorgos_Papadimitriou', 'Giorgos Papadimitriou', 50, '6900000259', 'Giorgos_Papadimitriou@gmail.com', 0, 2, 'active', 1, 1),
(260000000, 'Eleni_Kallergis', 'Eleni Kallergis', 51, '6900000260', 'Eleni_Kallergis@gmail.com', 0, 2, 'active', 1, 1),
(261000000, 'Maria_Papakonstantinidis', 'Maria Papakonstantinidis', 53, '6900000261', 'Maria_Papakonstantinidis@gmail.com', 0, 2, 'active', 1, 1),
(270000000, 'Alexandros_Papazoglou', 'Alexandros Papazoglou', 52, '6900000270', 'Alexandros_Papazoglou@gmail.com', 0, 3, 'active', 0, 0),
(301000000, 'Maria_Papadellis', 'Maria Papadellis', 15, '6900000301', 'Maria_Papadellis@gmail.com', 0, 1, 'active', 2, 2),
(302000000, 'Dimitra_Kostas', 'Dimitra Kostas', 16, '6900000302', 'Dimitra_Kostas@gmail.com', 0, 1, 'active', 2, 2),
(303000000, 'Christos_Dimitriou', 'Christos Dimitriou', 17, '6900000303', 'Christos_Dimitriou@gmail.com', 0, 1, 'active', 2, 2),
(304000000, 'Eleni_Katsaris', 'Eleni Katsaris', 18, '6900000304', 'Eleni_Katsaris@gmail.com', 0, 1, 'active', 2, 2),
(305000000, 'Alexandros_Athanasiou', 'Alexandros Athanasiou', 15, '6900000305', 'Alexandros_Athanasiou@gmail.com', 0, 1, 'active', 2, 2),
(306000000, 'Sofia_Stefanopoulos', 'Sofia Stefanopoulos', 16, '6900000306', 'Sofia_Stefanopoulos@gmail.com', 0, 1, 'active', 2, 2),
(307000000, 'Giannis_Papakonstantinou', 'Giannis Papakonstantinou', 17, '6900000307', 'Giannis_Papakonstantinou@gmail.com', 0, 1, 'active', 2, 2),
(308000000, 'Katerina_Alexiou', 'Katerina Alexiou', 18, '6900000308', 'Katerina_Alexiou@gmail.com', 0, 1, 'active', 2, 2),
(309000000, 'Andreas_Pappas', 'Andreas Pappas', 15, '6900000309', 'Andreas_Pappas@gmail.com', 0, 1, 'active', 2, 2),
(310000000, 'Eleftheria_Georgiou', 'Eleftheria Georgiou', 16, '6900000310', 'Eleftheria_Georgiou@gmail.com', 0, 1, 'active', 2, 2),
(311000000, 'Panagiotis_Papantoniou', 'Panagiotis Papantoniou', 17, '6900000311', 'Panagiotis_Papantoniou@gmail.com', 0, 1, 'active', 2, 2),
(312000000, 'Despina_Angelopoulos', 'Despina Angelopoulos', 18, '6900000312', 'Despina_Angelopoulos@gmail.com', 0, 1, 'active', 2, 2),
(313000000, 'Antonis_Papageorgiou', 'Antonis Papageorgiou', 15, '6900000313', 'Antonis_Papageorgiou@gmail.com', 0, 1, 'active', 2, 2),
(314000000, 'Georgia_Papadopoulos', 'Georgia Papadopoulos', 16, '6900000314', 'Georgia_Papadopoulos@gmail.com', 0, 1, 'active', 2, 2),
(315000000, 'Ioannis_Arvanitis', 'Ioannis Arvanitis', 17, '6900000315', 'Ioannis_Arvanitis@gmail.com', 0, 1, 'active', 2, 2),
(316000000, 'Dimitris_Theodorou', 'Dimitris Theodorou', 18, '6900000316', 'Dimitris_Theodorou@gmail.com', 0, 1, 'active', 2, 2),
(317000000, 'Maria_Karamanlakis', 'Maria Karamanlakis', 15, '6900000317', 'Maria_Karamanlakis@gmail.com', 0, 1, 'active', 2, 2),
(318000000, 'Thanasis_Papandreou', 'Thanasis Papandreou', 16, '6900000318', 'Thanasis_Papandreou@gmail.com', 0, 1, 'active', 2, 2),
(319000000, 'Christina_Papazisis', 'Christina Papazisis', 17, '6900000319', 'Christina_Papazisis@gmail.com', 0, 1, 'active', 2, 2),
(320000000, 'Nikos_Vasilopoulos', 'Nikos Vasilopoulos', 18, '6900000320', 'Nikos_Vasilopoulos@gmail.com', 0, 1, 'active', 2, 2),
(321000000, 'Eleni_Nikolopoulos', 'Eleni Nikolopoulos', 15, '6900000321', 'Eleni_Nikolopoulos@gmail.com', 0, 1, 'active', 2, 2),
(322000000, 'Andreas_Michalopoulos', 'Andreas Michalopoulos', 16, '6900000322', 'Andreas_Michalopoulos@gmail.com', 0, 1, 'active', 2, 2),
(323000000, 'Sofia_Sotiriadis', 'Sofia Sotiriadis', 17, '6900000323', 'Sofia_Sotiriadis@gmail.com', 0, 1, 'active', 2, 2),
(324000000, 'Georgios_Papakonstantinidis', 'Georgios Papakonstantinidis', 18, '6900000324', 'Georgios_Papakonstantinidis@gmail.com', 0, 1, 'active', 2, 2),
(325000000, 'Dimitra_Tzortzis', 'Dimitra Tzortzis', 15, '6900000325', 'Dimitra_Tzortzis@gmail.com', 0, 1, 'active', 2, 2),
(326000000, 'Panagiotis_Mavridis', 'Panagiotis Mavridis', 16, '6900000326', 'Panagiotis_Mavridis@gmail.com', 0, 1, 'active', 2, 2),
(327000000, 'Eleftheria_Papathanasiou', 'Eleftheria Papathanasiou', 17, '6900000327', 'Eleftheria_Papathanasiou@gmail.com', 0, 1, 'active', 2, 2),
(328000000, 'Christos_Papadoulis', 'Christos Papadoulis', 18, '6900000328', 'Christos_Papadoulis@gmail.com', 0, 1, 'active', 2, 2),
(329000000, 'Anna_Koulouris', 'Anna Koulouris', 15, '6900000329', 'Anna_Koulouris@gmail.com', 0, 1, 'active', 2, 2),
(330000000, 'Athanasia_Christodoulou', 'Athanasia Christodoulou', 16, '6900000330', 'Athanasia_Christodoulou@gmail.com', 0, 1, 'active', 2, 2),
(331000000, 'Dimitris_Papas', 'Dimitris Papas', 17, '6900000331', 'Dimitris_Papas@gmail.com', 0, 1, 'active', 2, 2),
(332000000, 'Fotini_Kostopoulos', 'Fotini Kostopoulos', 18, '6900000332', 'Fotini_Kostopoulos@gmail.com', 0, 1, 'active', 2, 2),
(333000000, 'Konstantinos_Papazoglou', 'Konstantinos Papazoglou', 15, '6900000333', 'Konstantinos_Papazoglou@gmail.com', 0, 1, 'active', 2, 2),
(334000000, 'Eleftheria_Vasilakis', 'Eleftheria Vasilakis', 16, '6900000334', 'Eleftheria_Vasilakis@gmail.com', 0, 1, 'active', 2, 2),
(335000000, 'Anastasia_Panagiotou', 'Anastasia Panagiotou', 17, '6900000335', 'Anastasia_Panagiotou@gmail.com', 0, 1, 'active', 2, 2),
(350000000, 'Kostas_Georgiadis', 'Kostas Georgiadis', 41, '6900000350', 'Kostas_Georgiadis@gmail.com', 0, 2, 'active', 1, 1),
(351000000, 'Ioanna_Panagiotidis', 'Ioanna Panagiotidis', 42, '6900000351', 'Ioanna_Panagiotidis@gmail.com', 0, 2, 'active', 1, 1),
(352000000, 'Michalis_Bakirtzis', 'Michalis Bakirtzis', 43, '6900000352', 'Michalis_Bakirtzis@gmail.com', 0, 2, 'active', 1, 1),
(353000000, 'Aggeliki_Petridis', 'Aggeliki Petridis', 44, '6900000353', 'Aggeliki_Petridis@gmail.com', 0, 2, 'active', 1, 1),
(354000000, 'Andreas_Papageorgiou', 'Andreas Papageorgiou', 45, '6900000354', 'Andreas_Papageorgiou@gmail.com', 0, 2, 'active', 1, 1),
(355000000, 'Maria_Theodoropoulos', 'Maria Theodoropoulos', 46, '6900000355', 'Maria_Theodoropoulos@gmail.com', 0, 2, 'active', 1, 1),
(356000000, 'Dimitrios_Mavromatis', 'Dimitrios Mavromatis', 37, '6900000356', 'Dimitrios_Mavromatis@gmail.com', 0, 2, 'active', 1, 1),
(357000000, 'Katerina_Alexopoulos', 'Katerina Alexopoulos', 38, '6900000357', 'Katerina_Alexopoulos@gmail.com', 0, 2, 'active', 1, 1),
(358000000, 'Giorgos_Karas', 'Giorgos Karas', 49, '6900000358', 'Giorgos_Karas@gmail.com', 0, 2, 'active', 1, 1),
(359000000, 'Eleni_Papamichail', 'Eleni Papamichail', 50, '6900000359', 'Eleni_Papamichail@gmail.com', 0, 2, 'active', 1, 1),
(360000000, 'Alexandros_Kallergis', 'Alexandros Kallergis', 51, '6900000360', 'Alexandros_Kallergis@gmail.com', 0, 2, 'active', 1, 1),
(361000000, 'Dimitra_Koulouris', 'Dimitra Koulouris', 53, '6900000361', 'Dimitra_Koulouris@gmail.com', 0, 2, 'active', 1, 1),
(370000000, 'Nikos_Panagiotou', 'Nikos Panagiotou', 52, '6900000370', 'Nikos_Panagiotou@gmail.com', 0, 3, 'active', 0, 0),
(401000000, 'Nikolas_Karamanlakis', 'Nikolas Karamanlakis', 17, '6900000401', 'Nikolas_Karamanlakis@gmail.com', 0, 1, 'active', 2, 2),
(402000000, 'Maria_Papadimitrakopoulou', 'Maria Papadimitrakopoulou', 18, '6900000402', 'Maria_Papadimitrakopoulou@gmail.com', 0, 1, 'active', 2, 2),
(403000000, 'Dimitra_Katsaris', 'Dimitra Katsaris', 15, '6900000403', 'Dimitra_Katsaris@gmail.com', 0, 1, 'active', 2, 2),
(404000000, 'Christos_Papathanasiadis', 'Christos Papathanasiadis', 16, '6900000404', 'Christos_Papathanasiadis@gmail.com', 0, 1, 'active', 2, 2),
(405000000, 'Eleni_Georgopoulos', 'Eleni Georgopoulos', 17, '6900000405', 'Eleni_Georgopoulos@gmail.com', 0, 1, 'active', 2, 2),
(406000000, 'Alexandros_Stefanidis', 'Alexandros Stefanidis', 18, '6900000406', 'Alexandros_Stefanidis@gmail.com', 0, 1, 'active', 2, 2),
(407000000, 'Sofia_Panagiotopoulos', 'Sofia Panagiotopoulos', 15, '6900000407', 'Sofia_Panagiotopoulos@gmail.com', 0, 1, 'active', 2, 2),
(408000000, 'Giannis_Papazoglou', 'Giannis Papazoglou', 16, '6900000408', 'Giannis_Papazoglou@gmail.com', 0, 1, 'active', 2, 2),
(409000000, 'Katerina_Alexandropoulou', 'Katerina Alexandropoulou', 17, '6900000409', 'Katerina_Alexandropoulou@gmail.com', 0, 1, 'active', 2, 2),
(410000000, 'Andreas_Kostopoulos', 'Andreas Kostopoulos', 18, '6900000410', 'Andreas_Kostopoulos@gmail.com', 0, 1, 'active', 2, 2),
(411000000, 'Eleftheria_Papadellis', 'Eleftheria Papadellis', 15, '6900000411', 'Eleftheria_Papadellis@gmail.com', 0, 1, 'active', 2, 2),
(412000000, 'Panagiotis_Arvanitis', 'Panagiotis Arvanitis', 16, '6900000412', 'Panagiotis_Arvanitis@gmail.com', 0, 1, 'active', 2, 2),
(413000000, 'Despina_Georgiadou', 'Despina Georgiadou', 17, '6900000413', 'Despina_Georgiadou@gmail.com', 0, 1, 'active', 2, 2),
(414000000, 'Antonis_Papandreou', 'Antonis Papandreou', 18, '6900000414', 'Antonis_Papandreou@gmail.com', 0, 1, 'active', 2, 2),
(415000000, 'Georgia_Papadoulis', 'Georgia Papadoulis', 15, '6900000415', 'Georgia_Papadoulis@gmail.com', 0, 1, 'active', 2, 2),
(416000000, 'Ioannis_Theodorou', 'Ioannis Theodorou', 16, '6900000416', 'Ioannis_Theodorou@gmail.com', 0, 1, 'active', 2, 2),
(417000000, 'Dimitris_Mavridis', 'Dimitris Mavridis', 17, '6900000417', 'Dimitris_Mavridis@gmail.com', 0, 1, 'active', 2, 2),
(418000000, 'Maria_Papanikolopoulos', 'Maria Papanikolopoulos', 18, '6900000418', 'Maria_Papanikolopoulos@gmail.com', 0, 1, 'active', 2, 2),
(419000000, 'Thanasis_Tzortzis', 'Thanasis Tzortzis', 15, '6900000419', 'Thanasis_Tzortzis@gmail.com', 0, 1, 'active', 2, 2),
(420000000, 'Christina_Athanasiadis', 'Christina Athanasiadis', 16, '6900000420', 'Christina_Athanasiadis@gmail.com', 0, 1, 'active', 2, 2),
(421000000, 'Nikos_Papantonopoulos', 'Nikos Papantonopoulos', 17, '6900000421', 'Nikos_Papantonopoulos@gmail.com', 0, 1, 'active', 2, 2),
(422000000, 'Eleni_Kourkoulis', 'Eleni Kourkoulis', 18, '6900000422', 'Eleni_Kourkoulis@gmail.com', 0, 1, 'active', 2, 2),
(423000000, 'Andreas_Papadopoulos', 'Andreas Papadopoulos', 15, '6900000423', 'Andreas_Papadopoulos@gmail.com', 0, 1, 'active', 2, 2),
(424000000, 'Sofia_Katsoulis', 'Sofia Katsoulis', 16, '6900000424', 'Sofia_Katsoulis@gmail.com', 0, 1, 'active', 2, 2),
(425000000, 'Georgios_Papakonstantinou', 'Georgios Papakonstantinou', 17, '6900000425', 'Georgios_Papakonstantinou@gmail.com', 0, 1, 'active', 2, 2),
(426000000, 'Dimitra_Vasilopoulos', 'Dimitra Vasilopoulos', 18, '6900000426', 'Dimitra_Vasilopoulos@gmail.com', 0, 1, 'active', 2, 2),
(427000000, 'Panagiotis_Sotiriou', 'Panagiotis Sotiriou', 15, '6900000427', 'Panagiotis_Sotiriou@gmail.com', 0, 1, 'active', 2, 2),
(428000000, 'Eleftheria_Panagiotidis', 'Eleftheria Panagiotidis', 16, '6900000428', 'Eleftheria_Panagiotidis@gmail.com', 0, 1, 'active', 2, 2),
(429000000, 'Christos_Konstantinidis', 'Christos Konstantinidis', 17, '6900000429', 'Christos_Konstantinidis@gmail.com', 0, 1, 'active', 2, 2),
(430000000, 'Anna_Papageorgiou', 'Anna Papageorgiou', 18, '6900000430', 'Anna_Papageorgiou@gmail.com', 0, 1, 'active', 2, 2),
(431000000, 'Athanasia_Ioannidis', 'Athanasia Ioannidis', 15, '6900000431', 'Athanasia_Ioannidis@gmail.com', 0, 1, 'active', 2, 2),
(432000000, 'Dimitris_Kallergis', 'Dimitris Kallergis', 16, '6900000432', 'Dimitris_Kallergis@gmail.com', 0, 1, 'active', 2, 2),
(433000000, 'Fotini_Bakirtzis', 'Fotini Bakirtzis', 17, '6900000433', 'Fotini_Bakirtzis@gmail.com', 0, 1, 'active', 2, 2),
(434000000, 'Konstantinos_Papadakis', 'Konstantinos Papadakis', 18, '6900000434', 'Konstantinos_Papadakis@gmail.com', 0, 1, 'active', 2, 2),
(435000000, 'Eleftheria_Christopoulos', 'Eleftheria Christopoulos', 15, '6900000435', 'Eleftheria_Christopoulos@gmail.com', 0, 1, 'active', 2, 2),
(450000000, 'Anastasia_Papakonstantinou', 'Anastasia Papakonstantinou', 41, '6900000450', 'Anastasia_Papakonstantinou@gmail.com', 0, 2, 'active', 1, 1),
(451000000, 'Kostas_Antoniou', 'Kostas Antoniou', 42, '6900000451', 'Kostas_Antoniou@gmail.com', 0, 2, 'active', 1, 1),
(452000000, 'Ioanna_Theodoropoulos', 'Ioanna Theodoropoulos', 33, '6900000452', 'Ioanna_Theodoropoulos@gmail.com', 0, 2, 'active', 1, 1),
(453000000, 'Michalis_Mavromatis', 'Michalis Mavromatis', 44, '6900000453', 'Michalis_Mavromatis@gmail.com', 0, 2, 'active', 1, 1),
(454000000, 'Aggeliki_Alexopoulos', 'Aggeliki Alexopoulos', 35, '6900000454', 'Aggeliki_Alexopoulos@gmail.com', 0, 2, 'active', 1, 1),
(455000000, 'Andreas_Vasileiou', 'Andreas Vasileiou', 46, '6900000455', 'Andreas_Vasileiou@gmail.com', 0, 2, 'active', 1, 1),
(456000000, 'Maria_Papamichael', 'Maria Papamichael', 47, '6900000456', 'Maria_Papamichael@gmail.com', 0, 2, 'active', 1, 1),
(457000000, 'Dimitrios_Karamanlis', 'Dimitrios Karamanlis', 48, '6900000457', 'Dimitrios_Karamanlis@gmail.com', 0, 2, 'active', 1, 1),
(458000000, 'Katerina_Papanikolaou', 'Katerina Papanikolaou', 49, '6900000458', 'Katerina_Papanikolaou@gmail.com', 0, 2, 'active', 1, 1),
(459000000, 'Giorgos_Petridis', 'Giorgos Petridis', 50, '6900000459', 'Giorgos_Petridis@gmail.com', 0, 2, 'active', 1, 1),
(460000000, 'Eleni_Panagiotou', 'Eleni Panagiotou', 51, '6900000460', 'Eleni_Panagiotou@gmail.com', 0, 2, 'active', 1, 1),
(461000000, 'Christos_Papazisis', 'Christos Papazisis', 53, '6900000461', 'Christos_Papazisis@gmail.com', 0, 2, 'active', 1, 1),
(470000000, 'Alexandros_Economou', 'Alexandros Economou', 52, '6900000470', 'Alexandros_Economou@gmail.com', 0, 3, 'active', 0, 0);
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--
-- Άδειασμα δεδομένων του πίνακα `school_unit`
--
INSERT INTO `school_unit` (`school_name`, `city`, `ph_nmbr`, `mail`, `addr_code`, `address`, `dir_name`) VALUES
('1o ATHINON', 'Athens', '2105077665', 'ath-school@hotmail.com', 4123, 'kapodistriou 37', 'Papapetrou Anastasis'),
('2o PATRAS', 'Patra', '2610667755', 'patr-school@gmail.com', 9999, 'granikou 23', 'Kalfopoulos Nikitas'),
('3o BOLOU', 'Bolos', '2421122334', 'vol-school@hotmail.com', 2, 'gazi 79', 'Mpezos Alexandros'),
('4o THESSALONIKIS', 'Thessaloniki', '2310755881', 'ath-school@gmail.com', 2, 'zagoras 16', 'Panteli Dora');
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--
-- Άδειασμα δεδομένων του πίνακα `books`
--
INSERT INTO `books` (`isbn`, `title`, `publisher`, `pages`, `summary`, `nmbr_of_copies`, `image`, `language`) VALUES
('1010000000000', 'The Enigma of Eternity', 'Infinite Publishing', 320, 'Explore the timeless mysteries surrounding the concept of eternity. Journey through philosophical musings, scientific discoveries, and spiritual insights as you contemplate the enigmatic nature of time, existence, and the infinite.', 20, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1020000000000', 'The Midnight Chronicles', 'Shadowfire Books', 400, 'Venture into a world where darkness and magic intertwine. Follow the thrilling tales of courageous heroes, mythical creatures, and the battle between light and shadow. Prepare for epic adventures, secret societies, and unexpected twists as the Midnight Chronicles unfold.', 13, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1030000000000', 'The Quest for Knowledge', 'Wisdom Publications', 280, 'Embark on a quest for wisdom and enlightenment. Discover the pursuit of knowledge across different disciplines, from ancient philosophy to modern science. Dive deep into the mysteries of the universe, unravel the secrets of the mind, and ignite your passion for lifelong learning.', 13, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMxncvzO_mqxSBhGIwjqWopCX3T8JnJTNEiw&usqp=CAU', 'English'),
('1040000000000', 'The Silent Symphony', 'Harmony Books', 350, 'Enter a world where music transcends words. Experience the power of melodies, harmonies, and rhythms as they evoke emotions, tell stories, and shape cultures. Explore the history, theory, and universal language of music, and discover the symphony that resounds in silence.', 13, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1050000000000', 'The Art of Connection', 'Linked Press', 250, 'Unlock the secrets of authentic connections in a digital age. Explore the intricacies of communication, empathy, and human interaction. Learn practical techniques, cultivate meaningful relationships, and bridge the gaps that divide us, ultimately fostering a sense of belonging and understanding.', 14, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1060000000000', 'The Quantum Paradox', 'Quantum Books', 380, 'Enter the mind-bending realm of quantum physics and grapple with its paradoxes. Journey from the microscopic world of particles to the mind-expanding concepts of entanglement, superposition, and quantum computing. Unravel the mysteries that challenge our understanding of reality itself.', 11, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQa3IK-t-aRWLIDs3fh3JdL7CUJqmT64av8mA&usqp=CAU', 'English'),
('1070000000000', 'The Labyrinth of Shadows', 'Enigmatic Press', 420, 'Embark on a suspenseful journey through a labyrinth shrouded in darkness and mystery. Join a group of adventurers as they navigate treacherous paths, encounter enigmatic creatures, and unravel the secrets hidden within the shadows. Will they find their way out or be forever lost?', 9, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1nKrpny59MOCHFY9ewPN29o3fr-vrAepxhg&usqp=CAU', 'English'),
('1080000000000', 'The Spark of Creativity', 'Imagination Ink', 300, 'Ignite your imagination and unleash your creative potential. Delve into the processes, techniques, and inspirations that fuel creativity across various disciplines. Discover how to overcome creative blocks, nurture innovative thinking, and harness the transformative power of imagination.', 15, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1090000000000', 'The Stellar Odyssey', 'Cosmos Books', 360, 'Embark on a breathtaking journey through the cosmos and explore the wonders of the universe. From the birth of stars to the mysteries of black holes, discover the captivating realms beyond our planet and contemplate our place in the vast expanse of space.', 9, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_P1uUjSTO9R_dZ2JWVImVk2GD0EFxJLzmiKgirABl9ed_uIZBzujc6fUdRG6h8JmRZZE&usqp=CAU', 'English'),
('1100000000000', 'The Serendipity Principle', 'Destiny Books', 280, 'Embrace the unexpected and harness the power of serendipity in your life. Discover how chance encounters, synchronicities, and fortuitous events can lead to remarkable opportunities and profound transformations. Unlock the serendipitous potential that lies within each moment.', 11, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjQkLmk6-M8UYVQUEFKL99bTbdcW2ehI-AOQ&usqp=CAU', 'English'),
('1110000000000', 'The Secrets of Mindfulness', 'Harmony House', 240, 'Uncover the hidden depths of mindfulness and cultivate inner peace and well-being. Dive into mindfulness practices, meditation techniques, and mindful living to alleviate stress, enhance focus, and cultivate a deeper connection with yourself and the world around you.', 14, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIju3DElwC8G9wX_5OXhQjUA9SlRlZjyjJ1Q&usqp=CAU', 'English'),
('1120000000000', 'The Art of Serendipity', 'Serene Publishing', 300, 'Explore the beauty and magic of serendipitous moments. Delve into stories of chance encounters, unexpected connections, and fortunate discoveries. Discover how embracing serendipity can bring joy, inspiration, and new possibilities into your life.', 11, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1130000000000', 'The Secrets of Time', 'Timeless Books', 400, 'Unlock the mysteries that lie within the fabric of time. Delve into the realms of physics, philosophy, and spirituality as you contemplate the nature of time, its perception, and its profound impact on our lives.', 10, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR4M9ivjYIFvfc8ZdvJRB9yfO5rLd9DuS4I1g&usqp=CAU', 'English'),
('1140000000000', 'The Forgotten Realm', 'Lost Pages Publishing', 350, 'Enter a world of forgotten legends, mythical creatures, and ancient civilizations. Uncover the secrets of a long-lost realm as you follow the epic quests of heroes and heroines determined to restore balance and reclaim the forgotten glory.', 18, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMxncvzO_mqxSBhGIwjqWopCX3T8JnJTNEiw&usqp=CAU', 'English'),
('1150000000000', 'The Mindful Journey', 'Mindfulness Press', 250, 'Embark on a transformative journey of self-discovery and inner peace. Learn the art of mindfulness through practical exercises, guided meditations, and profound insights. Cultivate a deeper connection with yourself and the present moment, finding serenity amidst the chaos of everyday life.', 7, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1160000000000', 'The Codebreaker\'s Dilemma', 'Enigma Books', 320, 'Dive into the thrilling world of cryptography and espionage. Follow the journey of a brilliant codebreaker facing intricate puzzles, dangerous adversaries, and the ethical dilemmas of their craft. Discover the fine line between duty, loyalty, and the pursuit of truth.', 9, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQDbm8eucgp6qRNgqrg3g8_Cln-l-9_XUpxvs8UZqiihX5H5MIAP-5-NnYLUevkbV-YJA8&usqp=CAU', 'English'),
('1170000000000', 'The Art of Resilience', 'Inner Strength Publishing', 280, 'Discover the power of resilience in overcoming life\'s challenges. Explore practical strategies, inspiring stories, and psychological insights that will help you bounce back, adapt, and thrive in the face of adversity. Unleash your inner strength and embrace the art of resilience.', 13, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1180000000000', 'The Lost City', 'Adventure Press', 400, 'Embark on a perilous expedition to uncover the secrets of a long-lost civilization. Navigate treacherous jungles, ancient ruins, and mythical creatures as you follow the trail of clues left behind. Prepare to unravel the mysteries that lie within the depths of the forgotten city.', 19, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGMjOaH4CIDt7BRXi5GfMU2n_8XvgqKwoSRSqQhzyMygPm482cl7yumvLxc5g1hxBnlOY&usqp=CAU', 'English'),
('1190000000000', 'The Mindful Entrepreneur', 'Zenith Publications', 320, 'Discover a new approach to business and entrepreneurship by integrating mindfulness and conscious leadership. Explore practical techniques, case studies, and mindful practices that will help you cultivate resilience, creativity, and purpose as you build and grow your venture.', 30, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTL11bvrYQ3kvrhZ_CCJkngqK3CSVDGEDB4pQ&usqp=CAU', 'English'),
('1200000000000', 'The Celestial Odyssey', 'Stellar Publishing', 350, 'Embark on a cosmic journey across the vast expanse of the universe. Explore celestial phenomena, ancient myths, and astronomical wonders that have captivated humanity for millennia. Experience the awe and wonder of the celestial odyssey that unveils the mysteries of the cosmos.', 23, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1210000000000', 'The Art of Simplicity', 'Minimalist Books', 250, 'Embrace the beauty and tranquility of simplicity in all aspects of life. Discover minimalist principles, decluttering techniques, and mindful practices that will help you simplify your environment, streamline your commitments, and cultivate a more meaningful and fulfilling existence.', 23, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCULeFpTRDwgNehnbAB3Hv63vW3uR3rQbjsw&usqp=CAU', 'English'),
('1220000000000', 'The Art of Solitude', 'Serene Publications', 280, 'Delve into the profound journey of solitude and its transformative power. Discover the beauty and insights that arise from embracing solitude, nurturing self-reflection, and finding inner peace in a busy world. Explore the art of being alone while cultivating a deeper connection with oneself and the universe.', 24, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1230000000000', 'The Stellar Conquest', 'Galaxy Books', 450, 'Embark on an epic space odyssey as humanity ventures beyond Earth\'s boundaries. Witness interstellar colonization, encounter alien civilizations, and navigate the challenges of intergalactic politics. Join the quest for cosmic conquest and the search for our place among the stars.', 25, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTL11bvrYQ3kvrhZ_CCJkngqK3CSVDGEDB4pQ&usqp=CAU', 'English'),
('1240000000000', 'The Mindful Explorer', 'Journey Publications', 320, 'Embark on a mindful journey through nature\'s wonders. Discover the transformative power of slowing down, being present, and connecting with the natural world. Learn to observe, appreciate, and find solace in the simple yet profound beauty of the earth\'s landscapes and the hidden depths within ourselves.', 18, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjQkLmk6-M8UYVQUEFKL99bTbdcW2ehI-AOQ&usqp=CAU', 'English'),
('1250000000000', 'The Forbidden Tome', 'Arcane Books', 400, 'Uncover the secrets hidden within an ancient and forbidden book of forbidden knowledge. Follow a daring protagonist as they navigate treacherous paths, decode cryptic texts, and confront malevolent forces. The forbidden tome holds the key to untold power, but at what cost?', 20, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMxncvzO_mqxSBhGIwjqWopCX3T8JnJTNEiw&usqp=CAU', 'English'),
('1260000000000', 'The Wisdom of Whispers', 'Whispering Books', 300, 'Open your heart to the gentle wisdom carried by whispers in the wind. Journey into the realms of intuition, spirituality, and interconnectedness. Listen closely to the whispers of the universe as they guide you toward self-discovery, inner peace, and a deeper understanding of the mysteries of existence.', 21, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQa3IK-t-aRWLIDs3fh3JdL7CUJqmT64av8mA&usqp=CAU', 'English'),
('1270000000000', 'The Art of Simplicity', 'Serene Publishing', 200, 'Discover the beauty and power of simplicity in all aspects of life. Learn to declutter your environment, simplify your routines, and cultivate a minimalist mindset. Embrace the freedom and peace that comes from living a simpler, more intentional life.', 22, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1nKrpny59MOCHFY9ewPN29o3fr-vrAepxhg&usqp=CAU', 'English'),
('1280000000000', 'The Lost Kingdoms', 'Epic Tales Publishing', 450, 'Embark on a thrilling adventure to uncover the secrets of ancient civilizations and their lost kingdoms. Journey through time and across continents as you explore archaeological wonders, decipher cryptic clues, and unravel the mysteries of these forgotten realms.', 17, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIju3DElwC8G9wX_5OXhQjUA9SlRlZjyjJ1Q&usqp=CAU', 'English'),
('1290000000000', 'The Mindful Entrepreneur', 'Inner Balance Books', 300, 'Learn how to cultivate mindfulness in the fast-paced world of entrepreneurship. Discover the transformative power of mindfulness practices to enhance focus, creativity, and resilience. Unleash your entrepreneurial spirit while maintaining balance, purpose, and well-being in your business journey.', 24, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1300000000000', 'The Stellar Odyssey', 'Cosmos Publishing', 400, 'Embark on an awe-inspiring journey through the cosmos and explore the wonders of the universe. Discover celestial phenomena, distant galaxies, and the mysteries of space exploration. Delve into the captivating stories of scientists, astronauts, and the quest to understand our cosmic origins.', 26, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1310000000000', 'The Art of Resilience', 'Inner Strength Press', 250, 'Discover the power to bounce back from adversity and thrive in the face of challenges. Explore the art of resilience through inspiring stories, practical strategies, and resilience-building exercises. Develop the inner strength and mindset necessary to navigate life\'s ups and downs with grace and determination.', 26, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_P1uUjSTO9R_dZ2JWVImVk2GD0EFxJLzmiKgirABl9ed_uIZBzujc6fUdRG6h8JmRZZE&usqp=CAU', 'English'),
('1320000000000', 'The Essence of Life', 'Vitality Books', 300, 'Delve into the essence of existence and the mysteries of life itself. Explore the realms of biology, consciousness, and the intricate web of interconnectedness that underlies all living things. Dive deep into the science and philosophy of life, uncovering its wonders and contemplating its meaning.', 20, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQDbm8eucgp6qRNgqrg3g8_Cln-l-9_XUpxvs8UZqiihX5H5MIAP-5-NnYLUevkbV-YJA8&usqp=CAU', 'English'),
('1330000000000', 'The Shadow Conspiracy', 'Obsidian Press', 380, 'Unravel the dark secrets of a clandestine organization that pulls the strings behind world events. Follow a determined protagonist as they uncover the layers of deception, conspiracy, and betrayal. Brace yourself for high-stakes espionage, thrilling plot twists, and a battle against the shadows that control the world.', 25, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR4M9ivjYIFvfc8ZdvJRB9yfO5rLd9DuS4I1g&usqp=CAU', 'English'),
('1340000000000', 'The Renaissance of Creativity', 'Artisan Books', 250, 'Ignite your creative spark and unleash the power of imagination. Dive into the history, theory, and practical aspects of creativity across various domains, from art and literature to science and technology. Discover techniques, cultivate inspiration, and embrace the renaissance of your own creative potential.', 18, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGMjOaH4CIDt7BRXi5GfMU2n_8XvgqKwoSRSqQhzyMygPm482cl7yumvLxc5g1hxBnlOY&usqp=CAU', 'English'),
('1350000000000', 'The Power Within', 'Inner Light Publications', 320, 'Tap into the limitless power that resides within you. Explore the realms of personal development, mindset, and harnessing your inner strength. Unlock your true potential, cultivate resilience, and embark on a transformative journey toward self-discovery and empowerment.', 23, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1360000000000', 'The Secret Garden', 'Enchanted Press', 280, 'Follow the enchanting tale of a hidden garden and the transformative power it holds. Join a young protagonist on a journey of self-discovery, friendship, and the healing forces of nature. Uncover the magic that blooms within the secret garden\'s walls.', 15, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1370000000000', 'The Mind\'s Eye', 'Insightful Publications', 320, 'Delve into the depths of human perception and imagination. Explore the mysteries of consciousness, creativity, and the power of visualization. Discover how the mind\'s eye shapes our experiences, fuels innovation, and unlocks the infinite potential of the human mind.', 15, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTL11bvrYQ3kvrhZ_CCJkngqK3CSVDGEDB4pQ&usqp=CAU', 'English'),
('1380000000000', 'The Lost Expedition', 'Adventure Press', 400, 'Embark on a thrilling adventure to uncover the secrets of a long-lost expedition. Join a group of daring explorers as they traverse treacherous landscapes, encounter ancient civilizations, and face unexpected perils. Will they unravel the mysteries of the lost expedition, or become lost themselves?', 20, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjQkLmk6-M8UYVQUEFKL99bTbdcW2ehI-AOQ&usqp=CAU', 'English'),
('1390000000000', 'The Art of Resilience', 'Resilient Books', 280, 'Discover the transformative power of resilience in overcoming adversity and embracing change. Explore practical strategies, inspiring stories, and psychological insights that empower individuals to bounce back, adapt, and thrive in the face of life\'s challenges.', 15, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1400000000000', 'The Alchemist\'s Legacy', 'Mystical Books', 400, 'Follow the ancient footsteps of alchemists as they search for the elusive Philosopher\'s Stone. Discover the secrets of transmutation, immortality, and spiritual transformation in this captivating tale of mysticism and alchemical wisdom that spans across centuries.', 10, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1410000000000', 'The Mind\'s Eye', 'Insightful Publications', 280, 'Delve into the depths of human perception and cognition. Uncover the intricacies of consciousness, memory, and imagination, and explore the fascinating world of sensory illusions and the power of the mind\'s eye in shaping our reality.', 15, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMxncvzO_mqxSBhGIwjqWopCX3T8JnJTNEiw&usqp=CAU', 'English'),
('1420000000000', 'The Enchanted Garden', 'Whimsical Press', 350, 'Step into a magical realm where flowers bloom with secrets and nature whispers ancient tales. Explore the enchanting wonders of gardens that captivate the senses, nurture the soul, and inspire the imagination, revealing the profound connection between humans and the natural world.', 30, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1430000000000', 'The Lost Civilization', 'Ancient Tomes', 400, 'Embark on an archaeological adventure to uncover the secrets of a long-lost civilization. Traverse ancient ruins, decipher cryptic hieroglyphics, and unravel the mysteries that lie buried beneath the sands of time, revealing the untold history of a forgotten world.', 35, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCULeFpTRDwgNehnbAB3Hv63vW3uR3rQbjsw&usqp=CAU', 'English'),
('1440000000000', 'The Astral Symphony', 'Celestial Books', 320, 'Explore the harmonious connection between the cosmos and human consciousness. Journey through the realms of astrology, astronomy, and metaphysics as you uncover the celestial symphony that shapes our lives, connecting us to the vast expanse of the universe.', 18, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1450000000000', 'The Culinary Chronicles', 'Gourmet Publications', 280, 'Embark on a gastronomic journey through the world of flavors and culinary traditions. Discover mouthwatering recipes, untold stories of renowned chefs, and the cultural significance of food, as you explore the art, science, and joy of cooking.', 23, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1nKrpny59MOCHFY9ewPN29o3fr-vrAepxhg&usqp=CAU', 'English'),
('1460000000000', 'The Infinite Mind', 'Boundless Books', 350, 'Dive into the depths of consciousness and explore the limitless potential of the human mind. Uncover the mysteries of perception, intuition, and creativity, and discover the power within you to expand your horizons, challenge boundaries, and tap into the infinite realms of thought.', 24, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_P1uUjSTO9R_dZ2JWVImVk2GD0EFxJLzmiKgirABl9ed_uIZBzujc6fUdRG6h8JmRZZE&usqp=CAU', 'English'),
('1470000000000', 'The Time Traveler\'s Journal', 'Temporal Press', 250, 'Embark on an extraordinary journey through time. Witness historical events, explore different eras, and encounter the unexpected as you navigate the complexities of time travel. Capture your own experiences and reflections in the pages of The Time Traveler\'s Journal.', 20, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQa3IK-t-aRWLIDs3fh3JdL7CUJqmT64av8mA&usqp=CAU', 'English'),
('1480000000000', 'The Secret of Serenity', 'Tranquil Books', 400, 'Discover the path to inner peace and tranquility. Uncover ancient practices, mindfulness techniques, and wisdom from across the world that can guide you towards a calmer and more balanced life. Unlock the secret of serenity and embrace a harmonious existence.', 21, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGMjOaH4CIDt7BRXi5GfMU2n_8XvgqKwoSRSqQhzyMygPm482cl7yumvLxc5g1hxBnlOY&usqp=CAU', 'English'),
('1490000000000', 'The Crimson Crown', 'Royal Publishing House', 320, 'Step into a world of intrigue, power, and royal bloodlines. Follow the gripping tale of political rivalries, forbidden love, and the fight for the ultimate symbol of authority - the crimson crown. Experience a captivating journey through a realm where thrones are won and lost.', 22, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTL11bvrYQ3kvrhZ_CCJkngqK3CSVDGEDB4pQ&usqp=CAU', 'English'),
('1500000000000', 'The Curious Case of Curiosity', 'Wonder Books', 280, 'Delve into the depths of curiosity and its profound impact on human exploration and discovery. Explore the curious minds of scientists, artists, and philosophers throughout history and unravel the mysteries of curiosity itself - its origins, benefits, and transformative potential.', 40, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIju3DElwC8G9wX_5OXhQjUA9SlRlZjyjJ1Q&usqp=CAU', 'English'),
('1510000000000', 'The Canvas of Dreams', 'Imagination Ink', 350, 'Immerse yourself in a world where dreams and creativity intertwine. Journey through the realms of art, literature, and imagination, exploring the power of dreams to inspire, heal, and shape our lives. Witness the limitless possibilities that unfold on the canvas of dreams.', 31, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR4M9ivjYIFvfc8ZdvJRB9yfO5rLd9DuS4I1g&usqp=CAU', 'English'),
('1520000000000', 'The Codebreaker\'s Dilemma', 'Cryptic Books', 250, 'Enter the world of cryptology and espionage. Follow the thrilling journey of a brilliant codebreaker who finds themselves entangled in a web of secrets, deception, and moral dilemmas. Uncover the hidden truths and unravel the enigmatic codes that hold the key to their destiny.', 34, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1530000000000', 'The Quantum Labyrinth', 'Cosmos Press', 400, 'Explore the mind-bending world of quantum mechanics and its implications for our understanding of reality. Venture into the quantum labyrinth, where particles exist in multiple states, entanglement defies classical intuition, and the mysteries of the universe unfold in awe-inspiring complexity.', 37, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjQkLmk6-M8UYVQUEFKL99bTbdcW2ehI-AOQ&usqp=CAU', 'English'),
('1540000000000', 'The Midnight Masquerade', 'Enigmatic Books', 320, 'Step into a world of mystery and intrigue, where secrets are concealed behind elegant masks. Attend the enchanting midnight masquerade, where identities are concealed, and romance and suspense intertwine. Unmask the truth and unveil the hidden desires of the heart.', 22, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1550000000000', 'The Elemental Enigma', 'Elemental Books', 280, 'Unlock the secrets of the elemental forces that shape our world. Journey through the realms of fire, water, air, and earth, delving into their ancient wisdom, mystical properties, and profound influence on nature and human existence. Embrace the enigmatic power of the elements.', 28, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1560000000000', 'The Imagination Engine', 'Boundless Imagination', 350, 'Unleash the limitless power of your imagination. Explore the creative process, ignite your inspiration, and tap into the depths of your imaginative potential. Discover the keys to unlocking a world of innovation, self-expression, and personal growth with The Imagination Engine.', 25, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1570000000000', 'The Celestial Voyage', 'Starry Sky Publishing', 250, 'Embark on a celestial voyage through the vast expanse of the universe. Witness the beauty of distant galaxies, explore cosmic phenomena, and ponder the profound questions about our place in the cosmos. Experience the awe and wonder of The Celestial Voyage.', 20, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMxncvzO_mqxSBhGIwjqWopCX3T8JnJTNEiw&usqp=CAU', 'English'),
('1580000000000', 'The Serendipity Effect', 'Serendipitous Books', 400, 'Explore the fascinating world of serendipity, where chance encounters, unexpected connections, and fortunate accidents shape our lives in meaningful ways. Discover the hidden magic of synchronicity and the power of being open to the unexpected. Embrace the serendipity effect and invite more wonder into your life.', 23, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMxncvzO_mqxSBhGIwjqWopCX3T8JnJTNEiw&usqp=CAU', 'English'),
('1590000000000', 'The Chronicles of Eternity', 'Timeless Publications', 320, 'Dive into a timeless saga that spans across the ages. Uncover the tales of heroes and villains, mythical creatures and epic battles that shape the destiny of worlds. Experience the breathtaking journey through The Chronicles of Eternity, where adventure and destiny collide.', 21, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1600000000000', 'The Mindful Explorer', 'Zenith Books', 250, 'Embark on a mindful exploration of the world around you. Learn to cultivate presence, deepen your connection with nature, and discover the profound beauty and wisdom that can be found in the simplest of moments. Become a mindful explorer and unlock the treasures of mindful living.', 21, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1610000000000', 'The Alchemist\'s Legacy', 'Mystical Press', 400, 'Embark on a mystical journey through the world of alchemy. Uncover the ancient wisdom, magical rituals, and transformative powers that lie within the alchemist\'s legacy. Discover the secrets of transmutation and the pursuit of the philosopher\'s stone.', 30, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQDbm8eucgp6qRNgqrg3g8_Cln-l-9_XUpxvs8UZqiihX5H5MIAP-5-NnYLUevkbV-YJA8&usqp=CAU', 'English'),
('1618000000000', 'Whispers of the Heart', 'Psychogios', 345, 'Whispers of the Heart\" is a captivating love story that delves into the depths of human emotions and the power of true love. Set in a picturesque coastal town, the novel follows the enchanting journey of Sarah and Ethan, two souls destined to be together.\r\n\r\nSarah, a spirited and independent woman, has always believed in the magic of love. Ethan, a charming and introspective artist, carries a mysterious past that haunts him. When their paths intertwine, an undeniable connection is formed, transc', 1, 'https://images.app.goo.gl/rzH3GphSKZa2ozaV8', 'english'),
('1620000000000', 'The Forgotten Prophecy', 'Enigmatic Books', 320, 'Enter a world of ancient prophecies, lost civilizations, and forgotten magic. Follow the journey of a chosen few as they unravel the clues left behind by the ages. Uncover the truth hidden within The Forgotten Prophecy and determine the fate of a world in peril.', 27, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQa3IK-t-aRWLIDs3fh3JdL7CUJqmT64av8mA&usqp=CAU', 'English'),
('1630000000000', 'The Artisan\'s Craft', 'Creative Works', 280, 'Dive into the world of craftsmanship and artistic expression. Discover the skills, techniques, and stories of artisans from various disciplines, who create stunning works of beauty and inspire with their dedication and passion. Delve into The Artisan\'s Craft and ignite your own creative spirit.', 28, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1nKrpny59MOCHFY9ewPN29o3fr-vrAepxhg&usqp=CAU', 'English'),
('1640000000000', 'The Essence of Gratitude', 'Grateful Heart Publishing', 250, 'Discover the transformative power of gratitude. Learn to cultivate a grateful mindset, express appreciation, and find joy in the simple moments of life. Explore The Essence of Gratitude and unlock the abundance and happiness that gratitude can bring.', 29, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1650000000000', 'The Enigma Code', 'Cipher Books', 400, 'Step into the world of cryptography and espionage. Unravel the mysteries of The Enigma Code, a complex encryption system that has baffled codebreakers throughout history. Follow the thrilling journey of those who dared to crack the code and change the course of war.', 24, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTL11bvrYQ3kvrhZ_CCJkngqK3CSVDGEDB4pQ&usqp=CAU', 'English'),
('1660000000000', 'The Whimsical Garden', 'Enchanted Press', 320, 'Enter a magical realm of enchanting flora and fauna. Explore The Whimsical Garden, a place where imagination blooms, and whimsy dances in every petal. Discover the beauty, joy, and transformative power of nature\'s wonderland.', 25, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCULeFpTRDwgNehnbAB3Hv63vW3uR3rQbjsw&usqp=CAU', 'English'),
('1670000000000', 'The Mindfulness Manifesto', 'Zenith Publishing', 280, 'Embrace the transformative practice of mindfulness. Discover the power of living in the present moment, cultivating awareness, and finding inner peace. The Mindfulness Manifesto offers practical guidance and insights to help you integrate mindfulness into your daily life.', 26, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGMjOaH4CIDt7BRXi5GfMU2n_8XvgqKwoSRSqQhzyMygPm482cl7yumvLxc5g1hxBnlOY&usqp=CAU', 'English'),
('1680000000000', 'The Time Traveler\'s Journal', 'Temporal Books', 350, 'Dive into the fascinating world of time travel. Join The Time Traveler\'s Journal and embark on thrilling adventures across the ages. Explore historical events, encounter famous figures, and navigate the complexities of altering the course of history.', 33, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1690000000000', 'The Songbird\'s Melody', 'Harmonious Publishing', 250, 'Immerse yourself in the world of music and melodic enchantment. Follow The Songbird\'s Melody and discover the power of music to heal, inspire, and unite. Explore the captivating stories of musicians, composers, and the magic that resides within each note.', 37, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_P1uUjSTO9R_dZ2JWVImVk2GD0EFxJLzmiKgirABl9ed_uIZBzujc6fUdRG6h8JmRZZE&usqp=CAU', 'English'),
('1700000000000', 'The Secret Atlas', 'Mystery Books', 400, 'Uncover the hidden secrets of The Secret Atlas, a mysterious map said to lead to untold treasures and ancient civilizations. Follow the daring explorers who embark on a perilous quest across uncharted lands, where danger and adventure await at every turn.', 38, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjQkLmk6-M8UYVQUEFKL99bTbdcW2ehI-AOQ&usqp=CAU', 'English'),
('1710000000000', 'The Spark of Imagination', 'Creative Minds Publishing', 320, 'Ignite your creative spark with The Spark of Imagination. Discover techniques and insights to unlock your artistic potential, fuel your imagination, and express your unique voice through various creative mediums. Embrace the transformative power of creativity.', 16, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR4M9ivjYIFvfc8ZdvJRB9yfO5rLd9DuS4I1g&usqp=CAU', 'English'),
('1720000000000', 'The Healing Journey', 'Harmony Press', 280, 'Embark on a healing journey of self-discovery and transformation. Explore various holistic practices, ancient wisdom, and mindful techniques to support your physical, emotional, and spiritual well-being. Discover the power of healing and embark on a path of wellness.', 19, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1730000000000', 'The Enchanted Forest', 'Enchanted Tales Publishing', 250, 'Venture into The Enchanted Forest, a realm of magic and wonder. Explore mystical creatures, hidden realms, and ancient enchantments that lie within. Experience the whimsical and captivating tales that unfold beneath the enchanted canopy.', 20, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1740000000000', 'The Celestial Prophecy', 'Stellar Press', 400, 'Unveil the cosmic secrets hidden within The Celestial Prophecy. Delve into the ancient wisdom of the stars and uncover prophecies that foretell the fate of the universe. Join the chosen few who embark on a celestial journey to restore balance and fulfill their destinies.', 34, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTL11bvrYQ3kvrhZ_CCJkngqK3CSVDGEDB4pQ&usqp=CAU', 'English'),
('1750000000000', 'The Timeless Odyssey', 'Eternal Books', 280, 'Embark on a timeless odyssey that transcends boundaries of time and space. Explore the extraordinary tales of adventure, love, and self-discovery that span across generations. The Timeless Odyssey invites you to journey through lifetimes and unravel the threads of destiny.', 29, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIju3DElwC8G9wX_5OXhQjUA9SlRlZjyjJ1Q&usqp=CAU', 'English'),
('1760000000000', 'The Curiosity Chronicles', 'Wonder Books', 350, 'Open the doors of curiosity and embark on a journey of exploration and discovery. The Curiosity Chronicles present captivating stories, intriguing facts, and thought-provoking ideas that inspire a thirst for knowledge. Indulge your curiosity and unlock the wonders of the world.', 29, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1770000000000', 'The Whirlwind Affair', 'Passionate Reads', 250, 'Dive into a whirlwind of passion, desire, and unexpected twists. The Whirlwind Affair explores the complexities of love, relationships, and the exhilarating journey of self-discovery. Get swept away in a captivating tale that challenges conventions and ignites the flames of desire.', 24, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTL11bvrYQ3kvrhZ_CCJkngqK3CSVDGEDB4pQ&usqp=CAU', 'English'),
('1780000000000', 'The Chronicles of Destiny', 'Epic Tales Publishing', 400, 'Embark on a thrilling journey through The Chronicles of Destiny, where ancient prophecies, magical realms, and extraordinary beings shape the fate of the world. Join the chosen heroes as they face unimaginable challenges and discover the true power of destiny.', 25, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1790000000000', 'The Art of Mindfulness', 'Serenity Press', 320, 'Immerse yourself in the transformative practice of mindfulness. The Art of Mindfulness offers practical techniques, guided meditations, and insightful wisdom to cultivate presence, reduce stress, and embrace the beauty of each moment. Discover inner peace and live with intention.', 21, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMxncvzO_mqxSBhGIwjqWopCX3T8JnJTNEiw&usqp=CAU', 'English'),
('1800000000000', 'The Quantum Code', 'Cosmos Books', 280, 'Unlock the secrets of The Quantum Code, a groundbreaking encryption system that holds the power to revolutionize technology and reshape the world. Follow the brilliant minds on their quest to harness quantum mechanics and protect the code from those who seek to exploit it.', 20, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1810000000000', 'The Wisdom Within', 'Enlightened Publications', 350, 'Journey within and unlock The Wisdom Within. Discover timeless teachings, spiritual insights, and practical guidance to awaken your inner wisdom and live a purposeful life. Explore the depths of your being and uncover the profound truths that reside within.', 19, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0wdXTBfZA11R6S4j3oLmY72vDjQDKeYp7HQ&usqp=CAU', 'English'),
('1820000000000', 'The Enigma of Time', 'Enigmatic Press', 250, 'Delve into The Enigma of Time, where past, present, and future intertwine in a mesmerizing dance. Explore the mysteries of time, temporal paradoxes, and the profound implications they hold for our understanding of existence. Prepare to unravel the enigmatic nature of time itself.', 26, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1830000000000', 'The Mindful Path', 'Harmony Publications', 320, 'Walk The Mindful Path and cultivate a life of presence and peace. Discover mindfulness practices, meditations, and reflections that enhance your well-being, deepen your relationships, and create a greater sense of connection with yourself and the world around you.', 26, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQa3IK-t-aRWLIDs3fh3JdL7CUJqmT64av8mA&usqp=CAU', 'English'),
('1840000000000', 'The Quantum Chronicles', 'Cosmos Press', 280, 'Explore the frontiers of science and imagination in The Quantum Chronicles. Traverse the boundaries of space and time as you journey through parallel universes, quantum phenomena, and mind-bending realities. Brace yourself for a thrilling adventure through the quantum realm.', 29, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCULeFpTRDwgNehnbAB3Hv63vW3uR3rQbjsw&usqp=CAU', 'English'),
('1850000000000', 'The Path to Enlightenment', 'Enlightened Books', 350, 'Embark on The Path to Enlightenment and discover the wisdom of ancient traditions and modern insights. Uncover spiritual practices, transformative teachings, and practical guidance to illuminate your journey and awaken your true self.', 23, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGMjOaH4CIDt7BRXi5GfMU2n_8XvgqKwoSRSqQhzyMygPm482cl7yumvLxc5g1hxBnlOY&usqp=CAU', 'English'),
('1860000000000', 'The Lost Realm', 'Enigma Books', 250, 'Venture into The Lost Realm, a world of mystery and forgotten civilizations. Unearth hidden artifacts, decipher ancient texts, and uncover the secrets of a lost realm that holds the key to our understanding of history. Prepare for an epic quest through time and knowledge.', 19, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQDbm8eucgp6qRNgqrg3g8_Cln-l-9_XUpxvs8UZqiihX5H5MIAP-5-NnYLUevkbV-YJA8&usqp=CAU', 'English'),
('1870000000000', 'The Elemental Chronicles', 'Elemental Books', 400, 'Immerse yourself in The Elemental Chronicles, a spellbinding tale of magic, adventure, and the elemental forces that shape the world. Follow the chosen heroes as they navigate through treacherous realms, face mythical creatures, and uncover the ancient prophecies that foretell the fate of the elements.', 25, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMxncvzO_mqxSBhGIwjqWopCX3T8JnJTNEiw&usqp=CAU', 'English'),
('1880000000000', 'The Quantum Nexus', 'Cosmos Books', 280, 'Dive into The Quantum Nexus, where cutting-edge science meets mind-bending possibilities. Explore the frontiers of quantum physics, delve into the mysteries of consciousness, and unravel the secrets of the quantum realm. Brace yourself for a mind-expanding journey into the nature of reality.', 33, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTL11bvrYQ3kvrhZ_CCJkngqK3CSVDGEDB4pQ&usqp=CAU', 'English'),
('1890000000000', 'The Journey Within', 'Soulful Books', 350, 'Embark on The Journey Within and embark on a profound exploration of self-discovery and personal transformation. Uncover the hidden depths of your being, cultivate self-awareness, and tap into the infinite potential that resides within. Prepare to embark on a soulful journey of growth.', 28, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('1900000000000', 'The Enchanted Dreamscape', 'Enchanted Tales Publishing', 250, 'Step into The Enchanted Dreamscape, where dreams come alive and imagination knows no bounds. Explore the whimsical realms, encounter mythical creatures, and embark on extraordinary adventures that blur the line between reality and fantasy. Prepare to be captivated by the magic that lies within dreams.', 27, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIju3DElwC8G9wX_5OXhQjUA9SlRlZjyjJ1Q&usqp=CAU', 'English'),
('1910000000000', 'The Secret Code', 'Mystery Books Ltd.', 400, 'Unravel the mysteries of The Secret Code and embark on a thrilling adventure of cryptic clues, hidden symbols, and ancient riddles. Join the brilliant minds as they race against time to unlock the code\'s secrets and uncover a truth that could change the course of history.', 26, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjQkLmk6-M8UYVQUEFKL99bTbdcW2ehI-AOQ&usqp=CAU', 'English'),
('1920000000000', 'The Power of Gratitude', 'Positive Living Publications', 320, 'Discover the transformative power of gratitude. The Power of Gratitude explores the science and practice of cultivating gratitude in daily life. Learn practical techniques, uplifting stories, and evidence-based insights to enhance well-being, foster positive relationships, and cultivate a grateful mindset.', 26, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_P1uUjSTO9R_dZ2JWVImVk2GD0EFxJLzmiKgirABl9ed_uIZBzujc6fUdRG6h8JmRZZE&usqp=CAU', 'English'),
('1930000000000', 'The Path to Serenity', 'Serene Books', 350, 'Embark on The Path to Serenity and discover the keys to inner peace and tranquility. Explore mindfulness practices, ancient wisdom, and transformative teachings that empower you to navigate life\'s challenges with grace and presence. Find solace and serenity within.', 27, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSURKGjtP8jc8hbjqqBGrnDMEWRGNse-7K4x-SDDNhLBZyVz4qCukHxi-BX2Rx8NYXe240&usqp=CAU', 'English'),
('1940000000000', 'The Forgotten Chronicles', 'Enigma Press', 250, 'Unearth The Forgotten Chronicles and delve into the hidden annals of history. Journey through forgotten civilizations, lost artifacts, and mysterious legends that have faded from memory. Discover the untold stories and unravel the secrets that have been buried in time.', 21, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR4M9ivjYIFvfc8ZdvJRB9yfO5rLd9DuS4I1g&usqp=CAU', 'English'),
('1950000000000', 'The Starlight Prophecy', 'Celestial Books', 400, 'Unveil the secrets of The Starlight Prophecy and embark on a gripping journey across galaxies. Follow a group of unlikely heroes as they race against time to decode celestial signs, harness cosmic powers, and prevent an ancient prophecy from altering the fate of the universe.', 19, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1nKrpny59MOCHFY9ewPN29o3fr-vrAepxhg&usqp=CAU', 'English'),
('1960000000000', 'The Gratitude Journal', 'Mindful Living Press', 320, 'Embrace the practice of gratitude with The Gratitude Journal. This interactive journal offers inspiring prompts, reflection exercises, and space to express gratitude for the blessings in your life. Cultivate a mindset of appreciation and abundance as you embark on a transformative journey.', 15, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQa3IK-t-aRWLIDs3fh3JdL7CUJqmT64av8mA&usqp=CAU', 'English'),
('1970000000000', 'The Time Traveler\'s Dilemma', 'Paradox Books', 280, 'Explore the complexities of time in The Time Traveler\'s Dilemma. Join the protagonist as they navigate the intricacies of temporal paradoxes, alternate timelines, and the ethical dilemmas of altering history. Brace yourself for a mind-bending adventure that challenges our perception of reality.', 19, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1980000000000', 'The Journey of Self-Discovery', 'Inner Awakening Publications', 350, 'Embark on The Journey of Self-Discovery and unlock the secrets of personal growth and fulfillment. Explore introspective practices, transformative teachings, and empowering insights to awaken your true potential. Embrace self-awareness, embrace change, and embark on a path of inner awakening.', 24, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English'),
('1990000000000', 'The Chronicles of Atlantis', 'Enigma Publishing', 250, 'Immerse yourself in The Chronicles of Atlantis, a captivating saga of a lost civilization and its mystical secrets. Journey to the depths of the ocean, encounter ancient artifacts, and uncover the truth about the fabled city of Atlantis. Prepare for an adventure that will challenge your beliefs and ignite your imagination.', 15, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMxncvzO_mqxSBhGIwjqWopCX3T8JnJTNEiw&usqp=CAU', 'English'),
('2000000000000', 'The Midnight Garden', 'Moonlight Publications', 400, 'Step into The Midnight Garden, a place where magic blooms under the moonlit sky. Follow a young protagonist as they navigate a world filled with enchanted flora, hidden realms, and mysterious creatures. Discover the transformative power of nature and the secrets that lie within.', 18, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRg_BuPuPbVv32q-jlrUOksMPIkDO5XXU07WQ&usqp=CAU', 'English'),
('2010000000000', 'The Mindful Life', 'Serenity Books', 320, 'Embrace mindfulness and live a more intentional, fulfilling life. The Mindful Life offers practical guidance, insightful reflections, and mindfulness exercises to cultivate presence, resilience, and inner peace. Discover the transformative potential of mindfulness in every aspect of your life.', 14, 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-GAhJ0A5S5c7W6pNDGplk2cpdvI3Ky91Rcg&usqp=CAU', 'English');
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--
-- Άδειασμα δεδομένων του πίνακα `authors`
--
INSERT INTO `authors` (`author_id`, `author_name`) VALUES
(1, ' Ava Greenfield'),
(2, ' Ava Roberts'),
(3, ' Emily Collins'),
(4, ' Ethan Moore'),
(5, ' Ethan Phillips'),
(6, ' Gabriel Thompson'),
(7, ' Isabella Carter'),
(8, ' Isabella Wright'),
(9, ' Leonardo Russo'),
(10, ' Olivia Hartman'),
(11, ' Olivia Reed'),
(12, ' Ryan Brooks'),
(13, ' Ryan Hughes'),
(14, 'Amelia Knight'),
(15, 'Ava Adams'),
(16, 'Ava Davis'),
(17, 'Ava Greenfield'),
(18, 'Ava Mitchell'),
(19, 'Ava Patterson'),
(20, 'Ava Rodriguez'),
(21, 'Ava Thompson'),
(22, 'Ava Wilson'),
(23, 'Ava Wright'),
(24, 'Benjamin Adams'),
(25, 'Benjamin Andrews'),
(26, 'Benjamin Davis'),
(27, 'Benjamin Foster'),
(28, 'Benjamin Greenfield'),
(29, 'Benjamin Harris'),
(30, 'Benjamin Hartman'),
(31, 'Benjamin Hayes'),
(32, 'Benjamin Knight'),
(33, 'Benjamin Lawson'),
(34, 'Benjamin Moore'),
(35, 'Benjamin Reed'),
(36, 'Benjamin Thompson'),
(37, 'Benjamin Wilson'),
(38, 'Benjamin Wright'),
(39, 'Daniel Mitchell'),
(40, 'Daniel Morgan'),
(41, 'Elijah Barnes'),
(150, 'Elisavet Papadopoulou'),
(42, 'Emily Harrison'),
(43, 'Emily Sullivan'),
(44, 'Emily Tran'),
(45, 'Emma Adams'),
(46, 'Emma Carter'),
(47, 'Emma Collins'),
(48, 'Emma Greenfield'),
(49, 'Emma Moore'),
(50, 'Emma Sullivan'),
(51, 'Emma Thompson'),
(52, 'Emma Wilson'),
(53, 'Emma Wright'),
(54, 'Ethan Campbell'),
(55, 'Ethan Harrison'),
(56, 'Ethan Parker'),
(57, 'Ethan Thompson'),
(58, 'Gabriel Adams'),
(59, 'Gabriel Carter'),
(60, 'Gabriel Greenfield'),
(61, 'Gabriel Knight'),
(62, 'Gabriel Moore'),
(63, 'Gabriel Morgan'),
(64, 'Gabriel Reed'),
(65, 'Gabriel Thompson'),
(66, 'Gabriel Wilson'),
(67, 'Gabriel Wright'),
(68, 'Harper Foster'),
(69, 'Isaac Collins'),
(70, 'Isabella Adams'),
(71, 'Isabella Davis'),
(72, 'Isabella Greenfield'),
(73, 'Isabella Martinez'),
(74, 'Isabella Moore'),
(75, 'Isabella Roberts');
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--
-- Άδειασμα δεδομένων του πίνακα `genres`
--
INSERT INTO `genres` (`genre_id`, `genre_name`) VALUES
(1, 'Adventure'),
(2, 'Archaeology'),
(3, 'Art'),
(4, 'Astronomy'),
(5, 'Business'),
(6, 'Children\'s Literature'),
(7, 'Craftsmanship'),
(8, 'Creativity'),
(9, 'Culinary'),
(10, 'Culture'),
(11, 'Drama'),
(12, 'Education'),
(13, 'Espionage'),
(14, 'Fantasy'),
(15, 'Fiction'),
(16, 'Food & Drink'),
(17, 'Historical Fiction'),
(18, 'Inspiration'),
(19, 'Journal'),
(20, 'Lifestyle'),
(21, 'Literature'),
(22, 'Metaphysics'),
(23, 'Mind & Spirit'),
(24, 'Mindfulness'),
(25, 'Minimalism'),
(26, 'Music'),
(27, 'Mystery'),
(28, 'Natural Sciences'),
(29, 'Nature'),
(30, 'Neuroscience'),
(31, 'Non-fiction'),
(32, 'Occult'),
(33, 'Personal Development'),
(34, 'Personal Growth'),
(35, 'Philosophy'),
(36, 'Physics'),
(37, 'Positive Psychology'),
(38, 'Psychology'),
(39, 'Relationships'),
(40, 'Romance'),
(41, 'Science'),
(42, 'Science Fiction'),
(43, 'Self-help'),
(44, 'Space Exploration'),
(45, 'Space Opera'),
(46, 'Spirituality'),
(47, 'Spy Thriller'),
(48, 'Thriller'),
(49, 'Time Travel'),
(50, 'Wellness');
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--
-- Άδειασμα δεδομένων του πίνακα `key_word`
--
INSERT INTO `key_word` (`key_word_id`, `key_word`) VALUES
(3, ' Ancient Civilizations'),
(4, ' Cosmic Secrets'),
(5, ' Darkness'),
(6, ' Forgotten Civilizations'),
(7, ' Inner Peace'),
(8, ' Inner Strength'),
(9, ' Intentional Living'),
(10, ' Self-discovery'),
(11, ' Self-reflection'),
(12, ' Shadows'),
(13, ' Suspense'),
(14, ' Wisdom'),
(15, 'Adventure'),
(16, 'Adversity'),
(17, 'Alchemist'),
(18, 'Alchemy'),
(19, 'Ancient Artifacts'),
(20, 'Ancient Traditions'),
(21, 'Ancient Wisdom'),
(22, 'Archaeological Adventure'),
(23, 'Archaeology'),
(24, 'Art of Connection'),
(25, 'Art of Mindfulness'),
(26, 'Art of Resilience'),
(27, 'Art of Serendipity'),
(28, 'Art of Simplicity'),
(29, 'Artistic Expression'),
(30, 'Artistic Potential'),
(31, 'Astral Symphony'),
(32, 'Authentic'),
(33, 'Awareness'),
(34, 'Beauty'),
(35, 'Betrayal'),
(36, 'Biology'),
(37, 'Celestial Odyssey'),
(38, 'Celestial Phenomena'),
(39, 'Celestial Prophecy'),
(40, 'Celestial Signs'),
(41, 'Celestial Voyage'),
(42, 'Chance'),
(43, 'Change'),
(44, 'Chronicles'),
(45, 'Codebreaker'),
(46, 'Cognition'),
(47, 'Communication'),
(48, 'Connection'),
(49, 'Conquest'),
(50, 'Conscious Leadership'),
(51, 'Consciousness'),
(52, 'Cosmos'),
(53, 'Creative'),
(54, 'Creative Process'),
(55, 'Creativity'),
(56, 'Crimson Crown'),
(57, 'Cryptography'),
(58, 'Cryptology'),
(59, 'Culinary Chronicles'),
(60, 'Curiosity'),
(61, 'Curious Case'),
(62, 'Dark Secrets'),
(63, 'Declutter'),
(64, 'Decluttering'),
(65, 'Desire'),
(66, 'Destiny'),
(67, 'Dilemma'),
(68, 'Dreams'),
(69, 'Effect'),
(70, 'Elemental Chronicles'),
(71, 'Elemental Enigma'),
(72, 'Elements'),
(73, 'Emotions'),
(74, 'Empowerment'),
(75, 'Enchanted Dreamscape'),
(76, 'Enchanted Forest'),
(77, 'Enchanted Garden'),
(78, 'Enchantment'),
(79, 'Encryption'),
(80, 'Enigma'),
(81, 'Enigma Code'),
(82, 'Enigma of Time'),
(83, 'Entanglement'),
(84, 'Espionage'),
(85, 'Essence'),
(86, 'Essence of Gratitude'),
(87, 'Eternity'),
(88, 'Ethical Dilemmas'),
(89, 'Existence'),
(90, 'Exploration'),
(91, 'Explorer'),
(92, 'Fate'),
(93, 'Focus'),
(94, 'Forbidden Knowledge'),
(95, 'Forbidden Tome'),
(96, 'Forgotten Chronicles'),
(97, 'Forgotten Realm'),
(98, 'Galaxies'),
(99, 'Gastronomic Journey'),
(100, 'Gratitude Journal'),
(101, 'Healing Journey'),
(102, 'Heroes'),
(103, 'Hidden Secrets'),
(104, 'Historical Events'),
(105, 'History'),
(106, 'Imagination'),
(107, 'Infinite Mind'),
(108, 'Inner Peace'),
(109, 'Inner Strength'),
(110, 'Inner Wisdom'),
(111, 'Inspiration'),
(112, 'Intrigue'),
(113, 'Introspection'),
(114, 'Intuition'),
(115, 'Journal'),
(116, 'Journey Within'),
(117, 'Knowledge'),
(118, 'Labyrinth'),
(119, 'Legacy'),
(120, 'Legends'),
(121, 'Life'),
(122, 'Lost City'),
(123, 'Lost Civilization'),
(124, 'Lost Expedition'),
(125, 'Lost Kingdoms'),
(126, 'Lost Realm'),
(127, 'Love'),
(128, 'Magic'),
(129, 'Magical'),
(130, 'Magical Realms'),
(131, 'Midnight'),
(132, 'Midnight Garden'),
(133, 'Midnight Masquerade'),
(143, 'Mind\'s Eye'),
(134, 'Mind-bending'),
(135, 'Mindful'),
(136, 'Mindful Entrepreneur'),
(137, 'Mindful Journey'),
(138, 'Mindful Life'),
(139, 'Mindful Living'),
(140, 'Mindful Path'),
(141, 'Mindfulness'),
(142, 'Mindfulness Practices'),
(144, 'Mindset'),
(145, 'Minimalist'),
(146, 'Moonlit Sky'),
(147, 'Music'),
(148, 'Mysteries'),
(149, 'Mystical Creatures'),
(150, 'Mystical Secrets'),
(151, 'Mythical Creatures'),
(152, 'Nature'),
(153, 'Passion'),
(154, 'Path to Enlightenment'),
(155, 'Peace'),
(156, 'Perception'),
(157, 'Personal Development'),
(158, 'Personal Growth'),
(159, 'Philosopher\'s Stone'),
(160, 'Power'),
(161, 'Power of Gratitude'),
(162, 'Power Within'),
(163, 'Practice'),
(164, 'Presence'),
(165, 'Quantum Chronicles'),
(166, 'Quantum Code'),
(167, 'Quantum Labyrinth'),
(168, 'Quantum Mechanics'),
(169, 'Quantum Nexus'),
(170, 'Quantum Physics'),
(171, 'Quest'),
(172, 'Reality'),
(173, 'Reflection Exercises'),
(174, 'Renaissance'),
(175, 'Resilience'),
(176, 'Science'),
(177, 'Secret Atlas');
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--
-- Άδειασμα δεδομένων του πίνακα `book_author`
--
INSERT INTO `book_author` (`book_author_id`, `isbn`, `author_id`) VALUES
(1, '1010000000000', 1),
(2, '1020000000000', 2),
(3, '1030000000000', 3),
(4, '1040000000000', 4),
(5, '1050000000000', 5),
(6, '1060000000000', 6),
(7, '1070000000000', 7),
(8, '1080000000000', 8),
(9, '1090000000000', 9),
(10, '1100000000000', 10),
(11, '1110000000000', 11),
(12, '1120000000000', 12),
(13, '1130000000000', 13),
(14, '1140000000000', 14),
(15, '1150000000000', 15),
(16, '1160000000000', 16),
(17, '1170000000000', 17),
(18, '1180000000000', 18),
(19, '1190000000000', 19),
(20, '1200000000000', 20),
(21, '1210000000000', 21),
(22, '1220000000000', 22),
(23, '1230000000000', 23),
(24, '1240000000000', 24),
(25, '1250000000000', 25),
(26, '1260000000000', 26),
(27, '1270000000000', 27),
(28, '1280000000000', 28),
(29, '1290000000000', 29),
(30, '1300000000000', 30),
(31, '1310000000000', 31),
(32, '1320000000000', 32),
(33, '1330000000000', 33),
(34, '1340000000000', 34),
(35, '1350000000000', 35),
(36, '1360000000000', 36),
(37, '1370000000000', 37),
(38, '1380000000000', 38),
(39, '1390000000000', 39),
(40, '1400000000000', 40),
(41, '1410000000000', 41),
(42, '1420000000000', 42),
(43, '1430000000000', 43),
(44, '1440000000000', 44),
(45, '1450000000000', 45),
(46, '1460000000000', 46),
(47, '1470000000000', 47),
(48, '1480000000000', 48),
(49, '1490000000000', 49),
(50, '1500000000000', 50),
(51, '1510000000000', 51),
(52, '1520000000000', 52),
(53, '1530000000000', 53),
(54, '1540000000000', 54),
(55, '1550000000000', 55),
(56, '1560000000000', 56),
(57, '1570000000000', 57),
(58, '1580000000000', 58),
(59, '1590000000000', 59),
(60, '1600000000000', 60),
(61, '1610000000000', 61),
(62, '1620000000000', 62),
(63, '1630000000000', 63),
(64, '1640000000000', 64),
(65, '1650000000000', 65),
(66, '1660000000000', 66),
(67, '1670000000000', 67),
(68, '1680000000000', 68),
(69, '1690000000000', 69),
(70, '1700000000000', 70),
(71, '1710000000000', 71),
(72, '1720000000000', 72),
(73, '1730000000000', 73),
(74, '1740000000000', 74),
(75, '1750000000000', 75),
(76, '1760000000000', 1),
(77, '1770000000000', 2),
(78, '1780000000000', 3),
(79, '1790000000000', 4),
(80, '1800000000000', 5),
(81, '1810000000000', 6),
(82, '1820000000000', 7),
(83, '1830000000000', 8),
(84, '1840000000000', 9),
(85, '1850000000000', 10),
(86, '1860000000000', 11),
(87, '1870000000000', 12),
(88, '1880000000000', 13),
(89, '1890000000000', 14),
(90, '1900000000000', 15),
(91, '1910000000000', 16),
(92, '1920000000000', 43),
(93, '1930000000000', 44),
(94, '1940000000000', 45),
(95, '1950000000000', 46),
(96, '1960000000000', 47),
(97, '1970000000000', 48),
(98, '1980000000000', 49),
(99, '1990000000000', 50),
(100, '2000000000000', 51),
(101, '2010000000000', 52),
(102, '1010000000000', 53),
(103, '1020000000000', 54),
(104, '1030000000000', 55),
(105, '1040000000000', 56),
(106, '1050000000000', 57),
(107, '1060000000000', 58),
(108, '1070000000000', 59),
(109, '1080000000000', 60),
(110, '1090000000000', 61),
(111, '1100000000000', 62),
(112, '1110000000000', 63),
(113, '1120000000000', 64),
(114, '1130000000000', 65),
(115, '1140000000000', 66),
(116, '1150000000000', 67),
(117, '1160000000000', 68),
(118, '1170000000000', 69),
(119, '1180000000000', 70),
(120, '1190000000000', 71),
(121, '1200000000000', 72),
(122, '1210000000000', 73),
(123, '1220000000000', 74),
(124, '1230000000000', 75),
(125, '1240000000000', 1),
(126, '1250000000000', 2),
(127, '1260000000000', 3),
(128, '1270000000000', 4),
(129, '1280000000000', 5),
(130, '1290000000000', 6),
(131, '1300000000000', 7),
(132, '1310000000000', 8),
(133, '1320000000000', 9),
(134, '1330000000000', 10),
(135, '1340000000000', 11),
(136, '1350000000000', 12),
(137, '1360000000000', 1),
(138, '1370000000000', 2),
(139, '1380000000000', 3),
(140, '1390000000000', 4),
(141, '1400000000000', 5),
(142, '1410000000000', 6),
(143, '1420000000000', 7),
(144, '1430000000000', 8),
(145, '1440000000000', 9),
(146, '1450000000000', 10),
(147, '1460000000000', 11),
(148, '1470000000000', 12),
(149, '1480000000000', 13),
(150, '1490000000000', 14),
(151, '1500000000000', 15),
(152, '1510000000000', 16),
(153, '1520000000000', 17),
(154, '1530000000000', 18),
(155, '1540000000000', 19),
(156, '1550000000000', 20),
(157, '1560000000000', 1),
(158, '1570000000000', 2),
(159, '1580000000000', 3),
(160, '1590000000000', 4),
(161, '1600000000000', 5),
(162, '1610000000000', 6),
(163, '1620000000000', 7),
(164, '1630000000000', 8),
(165, '1640000000000', 9),
(166, '1650000000000', 10),
(167, '1618000000000', 150),
(168, '1870000000000', 1),
(169, '1340000000000', 1);
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--
-- Άδειασμα δεδομένων του πίνακα `book_genre`
--
INSERT INTO `book_genre` (`book_genre_id`, `isbn`, `genre_id`) VALUES
(1, '1010000000000', 1),
(2, '1020000000000', 2),
(3, '1030000000000', 3),
(4, '1040000000000', 4),
(5, '1050000000000', 5),
(6, '1060000000000', 6),
(7, '1070000000000', 7),
(8, '1080000000000', 8),
(9, '1090000000000', 9),
(10, '1100000000000', 10),
(11, '1110000000000', 11),
(12, '1120000000000', 12),
(13, '1130000000000', 13),
(14, '1140000000000', 14),
(15, '1150000000000', 15),
(16, '1160000000000', 16),
(17, '1170000000000', 17),
(18, '1180000000000', 18),
(19, '1190000000000', 19),
(20, '1200000000000', 20),
(21, '1210000000000', 21),
(22, '1220000000000', 22),
(23, '1230000000000', 23),
(24, '1240000000000', 24),
(25, '1250000000000', 25),
(26, '1260000000000', 26),
(27, '1270000000000', 27),
(28, '1280000000000', 28),
(29, '1290000000000', 29),
(30, '1300000000000', 30),
(31, '1310000000000', 31),
(32, '1320000000000', 32),
(33, '1330000000000', 33),
(34, '1340000000000', 34),
(35, '1350000000000', 35),
(36, '1360000000000', 36),
(37, '1370000000000', 37),
(38, '1380000000000', 38),
(39, '1390000000000', 39),
(40, '1400000000000', 40),
(41, '1410000000000', 41),
(42, '1420000000000', 42),
(43, '1430000000000', 43),
(44, '1440000000000', 44),
(45, '1450000000000', 45),
(46, '1460000000000', 46),
(47, '1470000000000', 47),
(48, '1480000000000', 48),
(49, '1490000000000', 49),
(50, '1500000000000', 50),
(51, '1510000000000', 1),
(52, '1520000000000', 2),
(53, '1530000000000', 3),
(54, '1540000000000', 4),
(55, '1550000000000', 5),
(56, '1560000000000', 6),
(57, '1570000000000', 7),
(58, '1580000000000', 8),
(59, '1590000000000', 9),
(60, '1600000000000', 10),
(61, '1610000000000', 11),
(62, '1620000000000', 12),
(63, '1630000000000', 13),
(64, '1640000000000', 14),
(65, '1650000000000', 15),
(66, '1660000000000', 16),
(67, '1670000000000', 17),
(68, '1680000000000', 18),
(69, '1690000000000', 19),
(70, '1700000000000', 20),
(71, '1710000000000', 21),
(72, '1720000000000', 22),
(73, '1730000000000', 23),
(74, '1740000000000', 24),
(75, '1750000000000', 25),
(76, '1760000000000', 26),
(77, '1770000000000', 27),
(78, '1780000000000', 28),
(79, '1790000000000', 29),
(80, '1800000000000', 30),
(81, '1810000000000', 31),
(82, '1820000000000', 32),
(83, '1830000000000', 33),
(84, '1840000000000', 34),
(85, '1850000000000', 35),
(86, '1860000000000', 36),
(87, '1870000000000', 37),
(88, '1880000000000', 38),
(89, '1890000000000', 39),
(90, '1900000000000', 40),
(91, '1910000000000', 41),
(92, '1920000000000', 42),
(93, '1930000000000', 43),
(94, '1940000000000', 44),
(95, '1950000000000', 45),
(96, '1960000000000', 46),
(97, '1970000000000', 47),
(98, '1980000000000', 48),
(99, '1990000000000', 49),
(100, '2000000000000', 50),
(101, '2010000000000', 1),
(102, '1010000000000', 12),
(103, '1020000000000', 13),
(104, '1030000000000', 14),
(105, '1040000000000', 15),
(106, '1050000000000', 16),
(107, '1060000000000', 17),
(108, '1070000000000', 18),
(109, '1080000000000', 19),
(110, '1090000000000', 20),
(111, '1100000000000', 30),
(112, '1110000000000', 31),
(113, '1120000000000', 32),
(114, '1130000000000', 33),
(115, '1140000000000', 34),
(116, '1150000000000', 35),
(117, '1160000000000', 36),
(118, '1170000000000', 37),
(119, '1180000000000', 38),
(120, '1190000000000', 39),
(121, '1200000000000', 40),
(122, '1210000000000', 41),
(123, '1220000000000', 42),
(124, '1230000000000', 43),
(125, '1240000000000', 44),
(126, '1250000000000', 45),
(127, '1260000000000', 46),
(128, '1270000000000', 47),
(129, '1280000000000', 48),
(130, '1290000000000', 49),
(131, '1300000000000', 50),
(132, '1310000000000', 1),
(133, '1320000000000', 2),
(134, '1330000000000', 3),
(135, '1340000000000', 4),
(136, '1350000000000', 5),
(137, '1360000000000', 6),
(138, '1370000000000', 7),
(139, '1380000000000', 8),
(140, '1390000000000', 9),
(141, '1400000000000', 10),
(142, '1410000000000', 11),
(143, '1420000000000', 12),
(144, '1430000000000', 13),
(145, '1440000000000', 14),
(146, '1450000000000', 15),
(147, '1460000000000', 16),
(148, '1470000000000', 17),
(149, '1480000000000', 18),
(150, '1618000000000', 40);
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--
-- Άδειασμα δεδομένων του πίνακα `book_key_words`
--
INSERT INTO `book_key_words` (`book_key_word_id`, `isbn`, `key_word_id`) VALUES
(1, '1010000000000', 3),
(2, '1020000000000', 4),
(3, '1030000000000', 5),
(4, '1040000000000', 6),
(5, '1050000000000', 7),
(6, '1060000000000', 8),
(7, '1070000000000', 9),
(8, '1080000000000', 10),
(9, '1090000000000', 11),
(10, '1100000000000', 12),
(11, '1110000000000', 13),
(12, '1120000000000', 14),
(13, '1130000000000', 15),
(14, '1140000000000', 16),
(15, '1150000000000', 17),
(16, '1160000000000', 18),
(17, '1170000000000', 19),
(18, '1180000000000', 20),
(19, '1190000000000', 21),
(20, '1200000000000', 22),
(21, '1210000000000', 23),
(22, '1220000000000', 24),
(23, '1230000000000', 25),
(24, '1240000000000', 26),
(25, '1250000000000', 27),
(26, '1260000000000', 28),
(27, '1270000000000', 29),
(28, '1280000000000', 30),
(29, '1290000000000', 31),