-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_db.sql
42156 lines (42154 loc) · 725 KB
/
create_db.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CREATE DATABASE IF NOT EXISTS blood_donation;
USE blood_donation;
CREATE TABLE IF NOT EXISTS sys_user (
user_id INT NOT NULL AUTO_INCREMENT,
full_name VARCHAR(64) NOT NULL,
e_mail VARCHAR(64) NOT NULL,
password VARCHAR(16) NOT NULL,
phone CHAR(10),
address VARCHAR(255),
user_type VARCHAR(32) NOT NULL,
PRIMARY KEY (user_id),
UNIQUE e_mail (e_mail)
);
CREATE TABLE IF NOT EXISTS donor (
donor_id CHAR(11) NOT NULL,
name VARCHAR(64) NOT NULL,
blood_type VARCHAR(3) NOT NULL,
recep_id INT NOT NULL,
FOREIGN KEY (recep_id) REFERENCES sys_user(user_id) ON DELETE CASCADE,
PRIMARY KEY (donor_id)
);
CREATE TABLE IF NOT EXISTS orders (
order_id INT NOT NULL AUTO_INCREMENT,
order_date DATETIME DEFAULT CURRENT_TIMESTAMP,
blood_type VARCHAR(3) NOT NULL,
amount INT NOT NULL,
state VARCHAR(16) DEFAULT "waiting",
hospital_id INT NOT NULL,
man_id INT NOT NULL,
FOREIGN KEY(man_id) REFERENCES sys_user(user_id) ON DELETE CASCADE,
FOREIGN KEY(hospital_id) REFERENCES sys_user(user_id) ON DELETE CASCADE,
PRIMARY KEY(order_id)
);
CREATE TABLE IF NOT EXISTS blood_bank (
bank_id INT NOT NULL AUTO_INCREMENT,
address VARCHAR(255) NOT NULL,
capacity INT DEFAULT 0,
man_id INT NOT NULL,
FOREIGN KEY(man_id) REFERENCES sys_user(user_id) ON DELETE CASCADE,
PRIMARY KEY(bank_id)
);
CREATE TABLE IF NOT EXISTS blood (
blood_id INT NOT NULL AUTO_INCREMENT,
donor_id CHAR(11) NOT NULL,
bank_id INT NOT NULL,
used TINYINT DEFAULT 0,
donated_date DATE DEFAULT CURRENT_DATE(),
FOREIGN KEY(bank_id) REFERENCES blood_bank(bank_id) ON DELETE CASCADE,
FOREIGN KEY(donor_id) REFERENCES donor(donor_id) ON DELETE CASCADE,
PRIMARY KEY(blood_id)
);
INSERT INTO `sys_user`
VALUES
(
1, 'Britney Little', '[email protected]',
'123456', '839-919-57',
'1807 Kuhic Summit\nEast Amanda, NC 06908-1584',
'system_manager'
),
(
2, 'Sedrick Schmitt DDS', '[email protected]',
'c5059c5e93a43401', '(868)061-8',
'3252 Hickle Mountains Apt. 602\nKarlland, KS 32611',
'system_manager'
),
(
3, 'Mrs. Fatima Davis', '[email protected]',
'e9ef6a195911357c', '1-007-652-',
'831 Stokes Gateway Suite 983\nNitzschehaven, IA 77172',
'system_manager'
),
(
4, 'Ismael Lang', '[email protected]',
'123456', '955.960.26',
'679 Gino Turnpike Apt. 375\nPollichtown, AL 19330-5627',
'receptionist'
),
(
5, 'Prof. Letitia Gulgowski', '[email protected]',
'299fbb229329a286', '159-580-46',
'84185 Crona Trail Suite 246\nRolfsonberg, KS 40149-1796',
'receptionist'
),
(
6, 'Jennings Friesen V', '[email protected]',
'af81a085f45d1722', '011.523.40',
'230 Lehner Plain\nOrtizfort, MD 20567',
'receptionist'
),
(
7, 'Mr. Frederik Weimann', '[email protected]',
'9ba6fac3cd1e1242', '1-022-950-',
'7228 Jaida Vista Apt. 190\nSawaynfurt, DE 68176',
'receptionist'
),
(
8, 'Dr. Bianka Kris IV', '[email protected]',
'dcc3a7d8925a1582', '(245)800-1',
'10831 Britney Islands\nFranciscomouth, FL 57841',
'receptionist'
),
(
9, 'Cornell Rohan II', '[email protected]',
'0b5983567abe00ab', '206.287.73',
'5949 Jones Square Suite 863\nWest Lauraside, VA 70130',
'receptionist'
),
(
10, 'Ida Kautzer', '[email protected]',
'98f83540bc336a33', '665-644-11',
'77343 Leif Trace\nMaribelchester, NJ 03169',
'receptionist'
),
(
11, 'Grayce Collins', '[email protected]',
'c28510fa15e2072b', '(865)017-4',
'9875 Carroll Neck Suite 794\nLuciuston, NV 15529-9986',
'receptionist'
),
(
12, 'Earlene Lemke', '[email protected]',
'57b449aa6fe62dfb', '387.542.79',
'629 Kessler Neck Suite 735\nSouth Cooperfort, ND 65642',
'receptionist'
),
(
13, 'Prof. London Brown', '[email protected]',
'8bba2eec7201a44e', '1-343-092-',
'1901 Peyton Lane\nTrompville, MD 11153',
'receptionist'
),
(
14, 'Prof. Adam Steuber', '[email protected]',
'84f6e9aa495c1df5', '953.989.06',
'919 Dereck Glens\nEdmundside, AZ 71417',
'receptionist'
),
(
15, 'Prof. Shayne Hoppe', '[email protected]',
'09afa88de983a20c', '962.066.43',
'994 Augustus Mews Apt. 122\nStammville, SD 46607',
'receptionist'
),
(
16, 'Betsy Breitenberg', '[email protected]',
'01c38d1e6d897b0d', '890.220.03',
'4796 Welch Unions\nVonRuedenshire, WV 96549-1349',
'receptionist'
),
(
17, 'Cassie Kovacek Sr.', '[email protected]',
'dc75756d40652f70', '712.034.67',
'1482 Kirlin Isle Apt. 338\nNorth Simoneborough, ND 47760',
'receptionist'
),
(
18, 'Nicholas Lebsack II', '[email protected]',
'79ac26f7173ed9de', '248.701.47',
'24085 Lehner Rapid Apt. 807\nEast Laylaton, MD 98448',
'receptionist'
),
(
19, 'Kennith Hegmann Jr.', '[email protected]',
'279b47dc5dde6f96', '(941)795-9',
'687 Randi Drives Apt. 255\nRaynorchester, ME 39743',
'receptionist'
),
(
20, 'Miss Brenda Cole', '[email protected]',
'4dec46e988137728', '+98(3)1706',
'2535 Carmella Meadows Apt. 924\nAshlynnview, WI 31772',
'receptionist'
),
(
21, 'Josephine Armstrong', '[email protected]',
'f588bd5cf3d8426b', '703-124-02',
'2078 Rene Village\nNew Anika, CA 26050-2612',
'receptionist'
),
(
22, 'Darrell Robel III', '[email protected]',
'8e282f139c4656fe', '095-213-06',
'55100 Jared Orchard Apt. 973\nMonroeside, OR 71009',
'receptionist'
),
(
23, 'Kallie Jenkins', '[email protected]',
'78a040f3808a372f', '710-045-06',
'13035 Aurelio Run Apt. 604\nKutchport, AL 67296',
'receptionist'
),
(
24, 'Mrs. Eleanora Bradtke Jr.',
'[email protected]', 'b3069f770e9fa77d',
'0070136366', '00872 Jairo Roads Apt. 399\nSouth Damion, MD 17035-7086',
'receptionist'
),
(
25, 'Dr. Wilson Bailey DVM', '[email protected]',
'a94405af2ff86165', '(547)885-5',
'637 Donavon Brooks Apt. 387\nEast Wilburn, KY 93297',
'receptionist'
),
(
26, 'Mr. Isom Upton DVM', '[email protected]',
'cb7aded5f2adf3cd', '734-156-93',
'178 Colleen Village Apt. 889\nLake Yesenia, DE 75421-2585',
'receptionist'
),
(
27, 'Mrs. Rebeka Kreiger', '[email protected]',
'bfaa29a659a7b157', '920.676.36',
'4439 Treutel Mount Apt. 506\nGailfurt, SC 44298',
'receptionist'
),
(
28, 'Barton Jaskolski', '[email protected]',
'8ea680e8b8cd069e', '944.739.39',
'740 Zboncak Meadows Apt. 955\nWest Abbey, OK 40667',
'receptionist'
),
(
29, 'Dr. Lonnie Wiza', '[email protected]',
'581c48e861cae511', '1-836-274-',
'06764 Kessler Park\nPort Timothy, FL 79096',
'receptionist'
),
(
30, 'Prof. Matilda Auer Jr.', '[email protected]',
'e583cda0c3b00b08', '805-855-36',
'977 King Branch\nMauricehaven, ME 00329',
'receptionist'
),
(
31, 'General Schultz', '[email protected]',
'f87581ba52b1a5f2', '0958194546',
'295 Obie Ford\nEast Buck, DC 09695-3626',
'receptionist'
),
(
32, 'Rupert Schneider', '[email protected]',
'3f15e6386636ecf7', '1-618-743-',
'089 Considine Valley\nNew Tyree, LA 24988',
'receptionist'
),
(
33, 'Mr. Dan Heathcote', '[email protected]',
'394003b4dc2e2abc', '391-380-43',
'2984 Metz Brooks Apt. 880\nLake Donnaside, LA 19673',
'receptionist'
),
(
34, 'Reagan McClure', '[email protected]',
'a9fa6a31aa4b5618', '(430)731-5',
'770 Bahringer Unions\nRebaview, NC 67058',
'receptionist'
),
(
35, 'Mr. Dax Weimann Sr.', '[email protected]',
'633a16806acc4868', '(787)764-5',
'092 Stoltenberg Stravenue\nCartermouth, AR 86399',
'receptionist'
),
(
36, 'Gay Goodwin', '[email protected]',
'db19db999244e609', '889-661-23',
'51110 Johnson Extensions Apt. 385\nEast Tina, PA 83736-6815',
'receptionist'
),
(
37, 'Hilda Bailey', '[email protected]',
'08ffaec4e10a3818', '293-326-56',
'6338 Swaniawski Pass\nLangoshshire, WY 56695',
'receptionist'
),
(
38, 'Felipa Schuster', '[email protected]',
'f319c95eef43e10f', '+99(0)1517',
'311 Axel Fords\nJesusville, OH 76320',
'receptionist'
),
(
39, 'Orpha Koch', '[email protected]',
'e85f06fe1997d5f8', '685-843-84',
'7894 Delta Drives\nSouth Gabrielleborough, NH 09007',
'receptionist'
),
(
40, 'Dr. Leilani Beahan DVM', '[email protected]',
'7c3382a5e594b63f', '+36(6)5549',
'357 Adeline Loaf\nWilfredomouth, ND 49093-1102',
'receptionist'
),
(
41, 'Sally Jacobson II', '[email protected]',
'5d4271a3210905d9', '1-466-584-',
'438 Renner Greens Apt. 435\nLangworthshire, MO 97623',
'receptionist'
),
(
42, 'Crystel Nikolaus', '[email protected]',
'd2696e1d1670f06c', '591-934-39',
'832 Madalyn Circle\nGulgowskifurt, ID 53669-7775',
'receptionist'
),
(
43, 'Filiberto Johnston', '[email protected]',
'd44aa8820b6a6250', '(232)319-6',
'6957 Rosenbaum Well\nAyanatown, CO 31255',
'receptionist'
),
(
44, 'Acibadem', '[email protected]',
'123456', '(062)549-7',
'590 Gleichner Court\nPadbergport, AZ 47313-1142',
'hospital'
),
(
45, 'Lysanne Adams', '[email protected]',
'39efaef1c9b33032', '031-251-60',
'74207 Jerald Ville Apt. 123\nLake Camilaland, MI 09246',
'hospital'
),
(
46, 'Dr. Sylvia Emard', '[email protected]',
'af1f2a431af02382', '1-344-575-',
'655 Farrell Roads\nLeahaven, TX 98060',
'hospital'
),
(
47, 'Allene Reichel', '[email protected]',
'41012b44a1c20a59', '0132839012',
'51421 Moen Lodge Apt. 869\nChesleyhaven, IA 54318',
'hospital'
),
(
48, 'Prof. Lauren Pfeffer', '[email protected]',
'e6e560bd61a63129', '380-431-77',
'55368 Easter Neck Suite 186\nLake Celiaside, CA 11529-6230',
'hospital'
),
(
49, 'Daisy Lind', '[email protected]',
'75cb7061846d49a0', '(199)378-4',
'353 Marlen Court\nWest Cornell, ME 70256',
'hospital'
),
(
50, 'Miss Kathryne Krajcik', '[email protected]',
'87729db38849b001', '1-655-792-',
'46904 Emery Ranch\nMurphyberg, MO 85231',
'hospital'
),
(
51, 'Lavon Kuhic', '[email protected]',
'b91dd1664b55d61c', '126-080-38',
'9352 Benton Rapid\nNorth Ulisesport, NE 94430-6882',
'hospital'
),
(
52, 'Miss Kathryne Nitzsche PhD',
'[email protected]', '01366b104b0e4bce',
'1-116-436-', '6351 Abbott Road Suite 760\nWest Titustown, KY 28947',
'hospital'
),
(
53, 'Reinhold Berge', '[email protected]',
'2cce5422f73c91ef', '686-062-23',
'706 Jettie Street\nEast Adriannamouth, AL 81681-0026',
'hospital'
),
(
54, 'Prof. Cale Hodkiewicz', '[email protected]',
'818ad2129e047c0a', '893-139-66',
'20692 Bergnaum Grove Suite 347\nNorth Alberthabury, IL 06553',
'hospital'
),
(
55, 'Mr. Gianni Miller', '[email protected]',
'd9ed99cfb68be294', '1-567-016-',
'2440 Maegan Curve\nSouth Juvenal, ND 58829',
'hospital'
),
(
56, 'Louie Dietrich', '[email protected]',
'9db7ba27861c3fee', '855-028-80',
'988 Wyatt Centers\nHayleefurt, GA 25186',
'hospital'
),
(
57, 'Carmelo Gerhold', '[email protected]',
'33e696b5adec4ef4', '827-074-56',
'97369 Krajcik Wall\nNew Ludwigmouth, MS 30041',
'hospital'
),
(
58, 'Braden Hand', '[email protected]',
'dddb6d5034d23664', '+96(6)5044',
'8539 Ressie Wall Apt. 929\nNewtonfurt, WY 42594',
'hospital'
),
(
59, 'Rylee Heaney MD', '[email protected]',
'c1d4143f91930d5f', '700-068-42',
'2177 Gusikowski Curve Apt. 241\nOrtiztown, WV 32242',
'hospital'
),
(
60, 'Prof. Ethan Streich', '[email protected]',
'59c3fbc08a658422', '1-259-448-',
'44846 Iva Alley\nKoelpinchester, NM 44270-1764',
'hospital'
),
(
61, 'Mr. Parker O\'Reilly', '[email protected]',
'a7cef81e6a277d04', '972.791.35',
'5658 Satterfield Crossroad\nMcCluretown, PA 55399',
'hospital'
),
(
62, 'Jane VonRueden', '[email protected]',
'1e7118291f913f98', '(882)801-0',
'568 Mohammad Path Apt. 488\nSouth Jacinthe, RI 91481',
'hospital'
),
(
63, 'Wyman Hermiston Sr.', '[email protected]',
'e3b7185b5815b729', '075.298.77',
'873 Borer Stravenue Apt. 347\nSouth Breana, NC 30959-1408',
'hospital'
),
(
64, 'Marco Cummings', '[email protected]',
'b8e444f2b7b6d1c1', '798.581.01',
'677 Jast Ferry Apt. 921\nSouth Shawn, UT 17339-2299',
'hospital'
),
(
65, 'Raphael Altenwerth', '[email protected]',
'588723a0a051c710', '1-135-152-',
'63852 Malinda Burgs\nJudsonstad, MO 14113',
'hospital'
),
(
66, 'Prof. Valerie Gusikowski MD',
'[email protected]', 'b37e89e32d8d0880',
'980.812.19', '6211 Runolfsdottir Meadows Suite 653\nLake Connie, MI 00637',
'hospital'
),
(
67, 'Gregoria Mante', '[email protected]',
'66a2eeed9be0320c', '(997)084-7',
'150 Jakubowski Squares Suite 742\nGrahamborough, CO 35940',
'hospital'
),
(
68, 'Cade Halvorson', '[email protected]',
'4355eb364a0f119e', '776-716-38',
'49326 Schamberger Row\nHilpertstad, KS 39016-0395',
'hospital'
),
(
69, 'Savanna King', '[email protected]',
'af18662bfabf390d', '914-725-35',
'051 Geovanny Glen\nBobbyton, HI 17601-3179',
'hospital'
),
(
70, 'Fabiola Lind DVM', '[email protected]',
'8663f23572482206', '(812)620-6',
'1842 Kraig Rapids\nSylviaberg, SD 15083-7825',
'hospital'
),
(
71, 'Mabel Christiansen', '[email protected]',
'02814aeb8f9e1ed9', '(116)820-5',
'13312 Aubree Forks Apt. 838\nPort Dejah, NE 85737',
'hospital'
),
(
72, 'Fay Luettgen PhD', '[email protected]',
'2cdbe96fcc02764a', '712.255.52',
'931 Daisy Harbors\nBoyermouth, MO 74450-1606',
'hospital'
),
(
73, 'Angeline Paucek Sr.', '[email protected]',
'f0c0e8fd2442e18e', '(636)943-7',
'151 Kira Mews Apt. 672\nLake Devan, NM 40634',
'hospital'
),
(
74, 'Zakary Jakubowski', '[email protected]',
'0e00306585de96b6', '0648646141',
'57387 Walker Hollow Apt. 914\nPort Eleonore, MT 48525',
'hospital'
),
(
75, 'Eugene Kerluke', '[email protected]',
'c144272c321211f3', '0991366437',
'0018 Ansel Field\nKelleyhaven, NY 18469',
'hospital'
),
(
76, 'Dr. Maegan Lehner', '[email protected]',
'd5061194f9ec26a3', '+37(7)6061',
'63037 Hackett Ferry\nEast Carolanne, NV 39367-8790',
'hospital'
),
(
77, 'Prof. Harrison Raynor Sr.',
'[email protected]', '2c4455c420bd03ac',
'1-578-824-', '6728 Jesus Island Apt. 927\nEast Taya, VT 58256',
'hospital'
),
(
78, 'Hellen Shanahan', '[email protected]',
'b7cc6d4f8d3a9c49', '1-419-200-',
'74721 Borer Track Suite 247\nSouth Jalonbury, NH 91711-3864',
'hospital'
),
(
79, 'Katherine Kilback V', '[email protected]',
'2a92cf20c6480674', '1-894-853-',
'80688 Kuhic View\nAlfonsoberg, PA 20049',
'hospital'
),
(
80, 'Lorenz Kshlerin', '[email protected]',
'bb7ed107902095e3', '628-871-41',
'26320 Kunde Junction\nWittingberg, SC 16519-8691',
'hospital'
);
INSERT INTO `blood_bank`
VALUES
(
1, '7576 Jairo Mountains\nEast Hayleebury, ME 52253-8906',
7000, 1
),
(
2, '0374 Armstrong Junctions\nBayleeton, MN 79907',
9000, 2
),
(
3, '127 Corkery Islands\nLake Alycia, MT 04977',
15000, 3
);
INSERT INTO `donor`
VALUES
(
'10000000001', 'Olin Harber DDS',
'B-', 23
),
(
'10000000002', 'Myrtice Hane', 'A+',
42
),
(
'10000000003', 'Else Goyette', 'A+',
31
),
(
'10000000004', 'Juliana Emmerich',
'AB+', 8
),
(
'10000000005', 'Miss Peggie Tremblay Jr.',
'A-', 4
),
(
'10000000006', 'Evan Nicolas MD',
'B-', 26
),
(
'10000000007', 'Hilton Quigley',
'A-', 18
),
(
'10000000008', 'Prof. Maximus Runolfsdottir',
'AB+', 39
),
(
'10000000009', 'Sandrine Witting',
'B+', 23
),
(
'10000000010', 'Emely Metz', 'A+',
15
),
(
'10000000011', 'Palma Raynor', 'A+',
40
),
(
'10000000012', 'Linda Kuhic', 'A-',
27
),
(
'10000000013', 'Adolf Hermiston',
'0-', 19
),
(
'10000000014', 'Ottis Johnson I',
'A-', 14
),
(
'10000000015', 'Dr. Thora Haag DDS',
'B+', 12
),
(
'10000000016', 'Murphy Hintz', 'A+',
42
),
(
'10000000017', 'Barton Abbott', '0+',
31
),
(
'10000000018', 'Eldon Crooks', '0-',
41
),
(
'10000000019', 'Prof. Violette Harvey III',
'A-', 42
),
(
'10000000020', 'Linnea Fisher', 'A-',
10
),
(
'10000000021', 'Kenny Haag', 'B-',
14
),
(
'10000000022', 'Delores Reichert',
'AB-', 26
),
(
'10000000023', 'Prof. Loyal Goyette',
'A-', 15
),
(
'10000000024', 'Alexa Powlowski',
'A-', 5
),
(
'10000000025', 'Braeden Daniel',
'AB-', 18
),
(
'10000000026', 'Frankie Hamill',
'B-', 17
),
(
'10000000027', 'Nelda Tromp', '0-',
21
),
(
'10000000028', 'Mrs. Effie Kautzer DVM',
'B+', 6
),
(
'10000000029', 'Derrick Ward', 'B+',
28
),
(
'10000000030', 'Grayson Larson',
'A-', 24
),
(
'10000000031', 'Prof. Jacky Emard DVM',
'0-', 14
),
(
'10000000032', 'Dr. Alessandra Cronin',
'B-', 18
),
(
'10000000033', 'Loraine Veum', 'AB-',
33
),
(
'10000000034', 'Bennie Brown', '0+',
8
),
(
'10000000035', 'Mrs. Alysson Schmidt',
'A+', 43
),
(
'10000000036', 'Ethyl Yundt Sr.',
'AB+', 7
),
(
'10000000037', 'Giovani Dibbert',
'B-', 14
),
(
'10000000038', 'Audie Hodkiewicz',
'A-', 26
),
(
'10000000039', 'Dr. Carmel Jast',
'A-', 36
),
(
'10000000040', 'Maxwell Koepp', '0-',
26
),
(
'10000000041', 'Anne Terry', '0-',
29
),
(
'10000000042', 'Boris Batz', 'A-',
31
),
(
'10000000043', 'Earl Hodkiewicz V',
'AB+', 13
),
(
'10000000044', 'Rick Crooks III',
'AB-', 6
),
(
'10000000045', 'Lilyan McGlynn',
'B+', 39
),
(
'10000000046', 'Eulah Weber', '0+',
27
),
(
'10000000047', 'Prof. Mathias Altenwerth V',
'AB+', 20
),
(
'10000000048', 'Ms. Adelle Lehner III',
'B-', 11
),
(
'10000000049', 'Antonio Grant Sr.',
'AB+', 34
),
(
'10000000050', 'Natalia Gislason Sr.',
'AB+', 33
),
(
'10000000051', 'Imani Mills IV',
'AB-', 12
),
(
'10000000052', 'Yasmeen Runolfsdottir',
'A-', 42
),
(
'10000000053', 'Amara Metz V', 'A-',
28
),
(
'10000000054', 'Maude McClure', 'A-',
12
),
(
'10000000055', 'Braulio Bradtke',
'0-', 39
),
(
'10000000056', 'Bonnie Nader', 'A+',
6
),
(
'10000000057', 'Kaitlyn King', '0-',
32
),
(
'10000000058', 'Sophie Gulgowski',
'AB+', 29
),
(
'10000000059', 'Hugh Cummings', 'AB+',
29
),
(
'10000000060', 'Grant Mosciski',
'0+', 39
),
(
'10000000061', 'Norbert Feil', 'AB-',
42
),
(
'10000000062', 'Prof. Gerald Wisoky',
'A+', 10
),
(
'10000000063', 'Tobin McLaughlin',
'AB+', 28
),
(
'10000000064', 'Prof. Delmer Greenfelder Sr.',
'A+', 6
),
(
'10000000065', 'Leora Bartoletti PhD',
'0+', 10
),
(
'10000000066', 'Hayden Rolfson',
'A-', 42
),
(
'10000000067', 'Nils Langworth',
'0+', 4
),
(
'10000000068', 'Orie Koss', 'A-',
29
),
(
'10000000069', 'Hellen Hayes', 'AB+',
11
),
(
'10000000070', 'Arnold Considine',
'A-', 7
),
(
'10000000071', 'Pansy Fisher', 'A+',
43
),
(
'10000000072', 'Travon Bailey', 'B-',
34
),
(
'10000000073', 'Betty Dicki', 'A-',
36
),
(
'10000000074', 'Dr. Warren Brakus',
'0+', 32
),
(
'10000000075', 'Kavon Kirlin', '0-',
31
),
(
'10000000076', 'Dr. Mitchel Grimes V',
'0-', 18
),
(
'10000000077', 'Terrell Bednar',
'B+', 13
),
(
'10000000078', 'Clay West', 'A+',
25
),
(
'10000000079', 'Mr. Caleb Bernhard',
'0+', 32
),
(
'10000000080', 'Mossie Sipes', 'A+',
16
),
(
'10000000081', 'Julian Wisoky', '0+',
39
),
(
'10000000082', 'Zackary Paucek V',
'A+', 39
),
(
'10000000083', 'Virgie Herzog DVM',
'0+', 19
),
(
'10000000084', 'Mikayla Stark', 'A-',
42
),
(
'10000000085', 'Mrs. Rosemarie Turcotte',
'A-', 4
),
(
'10000000086', 'Maia Kovacek DVM',
'B+', 43
),
(
'10000000087', 'Virgie Kohler', 'B+',
16
),
(
'10000000088', 'Maci Hammes III',
'0-', 41
),
(
'10000000089', 'Durward Carroll',
'AB-', 36
),
(
'10000000090', 'Tatyana Bartell',
'B-', 25
),
(
'10000000091', 'Zula Grimes', 'B+',
18
),
(
'10000000092', 'Al Conroy', 'AB-',
18
),
(
'10000000093', 'Prof. Wendell Wolff',
'B+', 40
),
(
'10000000094', 'Miss Avis Smith V',
'A-', 23
),
(
'10000000095', 'Burdette Hagenes',
'B+', 15
),
(
'10000000096', 'Abe Feest', '0+',
14
),
(
'10000000097', 'Prof. Claudie Bailey Jr.',
'B-', 10
),
(
'10000000098', 'Birdie Friesen',
'0-', 40
),
(
'10000000099', 'Estella Kreiger',
'AB-', 22
),
(
'10000000100', 'Ben Weissnat', 'A-',
43
),
(
'10000000101', 'Brando Steuber PhD',
'A-', 14
),
(
'10000000102', 'Mariah Larkin', '0+',
16
),
(
'10000000103', 'Bernita Kautzer',
'0+', 37
),
(
'10000000104', 'Jana Bruen', 'B-',
43
),
(
'10000000105', 'Dr. Joshuah Langosh',
'0-', 27
),
(
'10000000106', 'Reggie Pfeffer',
'0+', 39
),
(
'10000000107', 'Stacey Smitham',
'B-', 20
),
(
'10000000108', 'Dr. Sabina Donnelly II',
'0-', 27
),
(
'10000000109', 'Marilyne Windler',
'B-', 13
),
(
'10000000110', 'Zoey Windler', 'B-',
22
),
(
'10000000111', 'Ms. Alexane Corwin',
'AB-', 35
),
(
'10000000112', 'Mr. Lowell Blanda',
'B+', 19
),
(
'10000000113', 'Jayme Reilly V',
'0-', 20