-
Notifications
You must be signed in to change notification settings - Fork 0
/
creation sql.sql
2733 lines (2542 loc) · 309 KB
/
creation sql.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
-- MySQL Workbench Forward Engineering
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION';
-- -----------------------------------------------------
-- Schema mydb
-- -----------------------------------------------------
-- -----------------------------------------------------
-- Schema airport
-- -----------------------------------------------------
DROP SCHEMA IF EXISTS `airport` ;
-- -----------------------------------------------------
-- Schema airport
-- -----------------------------------------------------
CREATE SCHEMA IF NOT EXISTS `airport` ;
USE `airport` ;
-- -----------------------------------------------------
-- Table `airport`.`employee`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`employee` ;
CREATE TABLE IF NOT EXISTS `airport`.`employee` (
`ssn` CHAR(8) NOT NULL,
`f_name` VARCHAR(20) NULL,
`minit` CHAR NULL,
`l_name` VARCHAR(20) NULL,
`job_title` VARCHAR(45) NULL,
`salary` INT NULL,
`b_date` DATE NULL,
`gender` CHAR NULL,
`education` VARCHAR(80) NULL,
`zip_code` INT NULL,
`city` VARCHAR(100) NULL,
`street` VARCHAR(100) NULL,
PRIMARY KEY (`ssn`))
ENGINE = InnoDB;
CREATE UNIQUE INDEX `ssn_UNIQUE` ON `airport`.`employee` (`ssn` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`employee_phone`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`employee_phone` ;
CREATE TABLE IF NOT EXISTS `airport`.`employee_phone` (
`phone` CHAR(11) NOT NULL,
`employee_ssn` CHAR(8) NOT NULL,
PRIMARY KEY (`phone`, `employee_ssn`),
CONSTRAINT `fk_employee_phone_employee`
FOREIGN KEY (`employee_ssn`)
REFERENCES `airport`.`employee` (`ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_employee_phone_employee_idx` ON `airport`.`employee_phone` (`employee_ssn` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`mechanic`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`mechanic` ;
CREATE TABLE IF NOT EXISTS `airport`.`mechanic` (
`certificate_no` INT NOT NULL,
`i_date` DATE NULL,
`employee_ssn` CHAR(8) NOT NULL,
PRIMARY KEY (`employee_ssn`),
CONSTRAINT `fk_mechanic_employee1`
FOREIGN KEY (`employee_ssn`)
REFERENCES `airport`.`employee` (`ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_mechanic_employee1_idx` ON `airport`.`mechanic` (`employee_ssn` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`ame`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`ame` ;
CREATE TABLE IF NOT EXISTS `airport`.`ame` (
`certificate_no` INT NOT NULL,
`i_date` DATE NULL,
`employee_ssn` CHAR(8) NOT NULL,
PRIMARY KEY (`employee_ssn`),
CONSTRAINT `fk_ame_employee1`
FOREIGN KEY (`employee_ssn`)
REFERENCES `airport`.`employee` (`ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_ame_employee1_idx` ON `airport`.`ame` (`employee_ssn` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`airline`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`airline` ;
CREATE TABLE IF NOT EXISTS `airport`.`airline` (
`iata` CHAR(4) NULL,
`icao` CHAR(4) NOT NULL,
`base-airport` CHAR(4) NULL,
`name` VARCHAR(45) NULL,
PRIMARY KEY (`icao`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `airport`.`air_employee`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`air_employee` ;
CREATE TABLE IF NOT EXISTS `airport`.`air_employee` (
`id` INT NOT NULL,
`airline_icao` CHAR(4) NOT NULL,
PRIMARY KEY (`id`),
CONSTRAINT `fk_air_crew_airline1`
FOREIGN KEY (`airline_icao`)
REFERENCES `airport`.`airline` (`icao`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_air_crew_airline1_idx` ON `airport`.`air_employee` (`airline_icao` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`flight_attendant`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`flight_attendant` ;
CREATE TABLE IF NOT EXISTS `airport`.`flight_attendant` (
`flight_hours` INT NULL,
`employee_ssn` CHAR(8) NOT NULL,
`air_emp_id` INT NOT NULL,
PRIMARY KEY (`employee_ssn`),
CONSTRAINT `fk_flight_attendant_employee1`
FOREIGN KEY (`employee_ssn`)
REFERENCES `airport`.`employee` (`ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_flight_attendant_air_crew1`
FOREIGN KEY (`air_emp_id`)
REFERENCES `airport`.`air_employee` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_flight_attendant_employee1_idx` ON `airport`.`flight_attendant` (`employee_ssn` ASC) ;
CREATE INDEX `fk_flight_attendant_air_crew1_idx` ON `airport`.`flight_attendant` (`air_emp_id` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`language`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`language` ;
CREATE TABLE IF NOT EXISTS `airport`.`language` (
`language` CHAR(2) NOT NULL,
`employee_ssn` CHAR(8) NOT NULL,
PRIMARY KEY (`employee_ssn`, `language`),
CONSTRAINT `fk_language_flight_attendant1`
FOREIGN KEY (`employee_ssn`)
REFERENCES `airport`.`flight_attendant` (`employee_ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_language_flight_attendant1_idx` ON `airport`.`language` (`employee_ssn` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`pilot`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`pilot` ;
CREATE TABLE IF NOT EXISTS `airport`.`pilot` (
`flight_hours` INT ZEROFILL NOT NULL,
`certificate_no` INT NOT NULL,
`i_date` DATE NULL,
`employee_ssn` CHAR(8) NOT NULL,
`air_emp_id` INT NOT NULL,
PRIMARY KEY (`employee_ssn`),
CONSTRAINT `fk_pilot_employee1`
FOREIGN KEY (`employee_ssn`)
REFERENCES `airport`.`employee` (`ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_pilot_air_crew1`
FOREIGN KEY (`air_emp_id`)
REFERENCES `airport`.`air_employee` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_pilot_employee1_idx` ON `airport`.`pilot` (`employee_ssn` ASC) ;
CREATE INDEX `fk_pilot_air_crew1_idx` ON `airport`.`pilot` (`air_emp_id` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`hanger`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`hanger` ;
CREATE TABLE IF NOT EXISTS `airport`.`hanger` (
`no` INT NOT NULL,
`location` VARCHAR(45) NULL,
PRIMARY KEY (`no`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `airport`.`bus_hanger`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`bus_hanger` ;
CREATE TABLE IF NOT EXISTS `airport`.`bus_hanger` (
`Capacity` INT NULL,
`hanger_no` INT NOT NULL,
PRIMARY KEY (`hanger_no`),
CONSTRAINT `fk_bus_hanger_hanger1`
FOREIGN KEY (`hanger_no`)
REFERENCES `airport`.`hanger` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `airport`.`bus`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`bus` ;
CREATE TABLE IF NOT EXISTS `airport`.`bus` (
`bus_no` INT NOT NULL,
`bus_type` CHAR NULL,
`capacity` INT NULL,
`bus_status` CHAR NULL,
`hanger_no` INT NOT NULL,
PRIMARY KEY (`bus_no`),
CONSTRAINT `fk_bus_bus_hanger1`
FOREIGN KEY (`hanger_no`)
REFERENCES `airport`.`bus_hanger` (`hanger_no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_bus_bus_hanger1_idx` ON `airport`.`bus` (`hanger_no` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`weather_data`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`weather_data` ;
CREATE TABLE IF NOT EXISTS `airport`.`weather_data` (
`cd` CHAR(9) NOT NULL,
`country_code` CHAR(2) NULL,
`latitude` FLOAT NULL,
`logitude` FLOAT NULL,
`log_date` DATE NULL,
`weather_condition` VARCHAR(25) NULL,
`wind_speed` FLOAT NULL,
`wind_direction` CHAR(3) NULL,
`wind_gust` FLOAT NULL,
`precipitation` DECIMAL NULL,
`humidity` INT NULL,
`air_pressure` INT NULL,
`relative_visibility` INT NULL,
`cloud_coverage` INT NULL,
PRIMARY KEY (`cd`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `airport`.`maintain`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`maintain` ;
CREATE TABLE IF NOT EXISTS `airport`.`maintain` (
`m_date` DATE NULL,
`bus_malfunction` VARCHAR(45) NULL,
`repair_time` TIME NULL,
`bus_no` INT NOT NULL,
`employee_ssn` CHAR(8) NOT NULL,
PRIMARY KEY (`bus_no`, `employee_ssn`),
CONSTRAINT `fk_maintain_bus1`
FOREIGN KEY (`bus_no`)
REFERENCES `airport`.`bus` (`bus_no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_maintain_mechanic1`
FOREIGN KEY (`employee_ssn`)
REFERENCES `airport`.`mechanic` (`employee_ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_maintain_mechanic1_idx` ON `airport`.`maintain` (`employee_ssn` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`plane`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`plane` ;
CREATE TABLE IF NOT EXISTS `airport`.`plane` (
`plane_id` INT NOT NULL,
`capacity` INT NULL,
`weight` INT NULL,
`model` VARCHAR(6) NULL,
`status` CHAR NULL,
`airline_icao` CHAR(4) NOT NULL,
`hanger_no` INT NOT NULL,
`brand` VARCHAR(25) NULL,
PRIMARY KEY (`plane_id`),
CONSTRAINT `fk_plane_airline1`
FOREIGN KEY (`airline_icao`)
REFERENCES `airport`.`airline` (`icao`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_plane_hanger1`
FOREIGN KEY (`hanger_no`)
REFERENCES `airport`.`hanger` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_plane_airline1_idx` ON `airport`.`plane` (`airline_icao` ASC) ;
CREATE INDEX `fk_plane_hanger1_idx` ON `airport`.`plane` (`hanger_no` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`P_maintains`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`P_maintains` ;
CREATE TABLE IF NOT EXISTS `airport`.`P_maintains` (
`p_malfunction` VARCHAR(45) NULL,
`p_end_maintains_date` DATE NULL,
`p_start_mantains_date` DATE NULL,
`plane_id` INT NOT NULL,
`mechanic_ssn` CHAR(8) NOT NULL,
`ame_ssn` CHAR(8) NOT NULL,
PRIMARY KEY (`plane_id`, `mechanic_ssn`, `ame_ssn`),
CONSTRAINT `fk_P_maintains_plane1`
FOREIGN KEY (`plane_id`)
REFERENCES `airport`.`plane` (`plane_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_P_maintains_mechanic1`
FOREIGN KEY (`mechanic_ssn`)
REFERENCES `airport`.`mechanic` (`employee_ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_P_maintains_ame1`
FOREIGN KEY (`ame_ssn`)
REFERENCES `airport`.`ame` (`employee_ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_P_maintains_mechanic1_idx` ON `airport`.`P_maintains` (`mechanic_ssn` ASC) ;
CREATE INDEX `fk_P_maintains_ame1_idx` ON `airport`.`P_maintains` (`ame_ssn` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`passenger`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`passenger` ;
CREATE TABLE IF NOT EXISTS `airport`.`passenger` (
`passport_no` CHAR(10) NOT NULL,
`f_name` VARCHAR(25) NULL,
`minit` CHAR NULL,
`l_name` VARCHAR(25) NULL,
`nationality` VARCHAR(30) NULL,
`passport_type` CHAR(3) NULL,
`country_code` CHAR(3) NULL,
`gender` CHAR NULL,
`i_date` DATE NULL,
`e_date` DATE NULL,
`b_date` DATE NULL,
`place_of_birth` VARCHAR(25) NULL,
PRIMARY KEY (`passport_no`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `airport`.`gate`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`gate` ;
CREATE TABLE IF NOT EXISTS `airport`.`gate` (
`no` INT NOT NULL,
`location` VARCHAR(45) NULL,
PRIMARY KEY (`no`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `airport`.`flight`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`flight` ;
CREATE TABLE IF NOT EXISTS `airport`.`flight` (
`no` CHAR(5) NOT NULL,
`from` CHAR(4) NULL,
`to` CHAR(4) NULL,
`status` CHAR NULL,
`departure` DATETIME NULL,
`arrival` DATETIME NULL,
`date` DATE NULL,
`time` TIME NULL,
`airline_icao` CHAR(4) NOT NULL,
`plane_id` INT NOT NULL,
`gate_no` INT NOT NULL,
PRIMARY KEY (`no`, `airline_icao`),
CONSTRAINT `fk_flight_airline1`
FOREIGN KEY (`airline_icao`)
REFERENCES `airport`.`airline` (`icao`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_flight_plane1`
FOREIGN KEY (`plane_id`)
REFERENCES `airport`.`plane` (`plane_id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_flight_gate1`
FOREIGN KEY (`gate_no`)
REFERENCES `airport`.`gate` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_flight_airline1_idx` ON `airport`.`flight` (`airline_icao` ASC) ;
CREATE INDEX `fk_flight_plane1_idx` ON `airport`.`flight` (`plane_id` ASC) ;
CREATE INDEX `fk_flight_gate1_idx` ON `airport`.`flight` (`gate_no` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`Country`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`Country` ;
CREATE TABLE IF NOT EXISTS `airport`.`Country` (
`Country_Code` CHAR(2) NOT NULL,
`flight_no` CHAR(5) NOT NULL,
PRIMARY KEY (`Country_Code`, `flight_no`),
CONSTRAINT `fk_Country_flight1`
FOREIGN KEY (`flight_no`)
REFERENCES `airport`.`flight` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_Country_flight1_idx` ON `airport`.`Country` (`flight_no` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`send`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`send` ;
CREATE TABLE IF NOT EXISTS `airport`.`send` (
`weather_data_cd` CHAR(9) NOT NULL,
`flight_no` CHAR(5) NOT NULL,
PRIMARY KEY (`weather_data_cd`, `flight_no`),
CONSTRAINT `fk_weather_data_has_flight_weather_data1`
FOREIGN KEY (`weather_data_cd`)
REFERENCES `airport`.`weather_data` (`cd`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_weather_data_has_flight_flight1`
FOREIGN KEY (`flight_no`)
REFERENCES `airport`.`flight` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_weather_data_has_flight_flight1_idx` ON `airport`.`send` (`flight_no` ASC) ;
CREATE INDEX `fk_weather_data_has_flight_weather_data1_idx` ON `airport`.`send` (`weather_data_cd` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`flight_has_bus`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`flight_has_bus` ;
CREATE TABLE IF NOT EXISTS `airport`.`flight_has_bus` (
`bus_no` INT NOT NULL,
`flight_no` CHAR(5) NOT NULL,
PRIMARY KEY (`bus_no`, `flight_no`),
CONSTRAINT `fk_bus_has_flight_bus1`
FOREIGN KEY (`bus_no`)
REFERENCES `airport`.`bus` (`bus_no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_bus_has_flight_flight1`
FOREIGN KEY (`flight_no`)
REFERENCES `airport`.`flight` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_bus_has_flight_flight1_idx` ON `airport`.`flight_has_bus` (`flight_no` ASC) ;
CREATE INDEX `fk_bus_has_flight_bus1_idx` ON `airport`.`flight_has_bus` (`bus_no` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`ticket`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`ticket` ;
CREATE TABLE IF NOT EXISTS `airport`.`ticket` (
`no` INT NOT NULL,
`price` INT NULL,
`class` CHAR NULL,
PRIMARY KEY (`no`))
ENGINE = InnoDB;
-- -----------------------------------------------------
-- Table `airport`.`book`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`book` ;
CREATE TABLE IF NOT EXISTS `airport`.`book` (
`ticket_no` INT NOT NULL,
`passport_no` CHAR(10) NOT NULL,
`flight_no` CHAR(5) NOT NULL,
`book_date` DATE NULL,
CONSTRAINT `fk_book_ticket1`
FOREIGN KEY (`ticket_no`)
REFERENCES `airport`.`ticket` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_book_passenger1`
FOREIGN KEY (`passport_no`)
REFERENCES `airport`.`passenger` (`passport_no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_book_flight1`
FOREIGN KEY (`flight_no`)
REFERENCES `airport`.`flight` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_book_ticket1_idx` ON `airport`.`book` (`ticket_no` ASC) ;
CREATE INDEX `fk_book_passenger1_idx` ON `airport`.`book` (`passport_no` ASC) ;
CREATE INDEX `fk_book_flight1_idx` ON `airport`.`book` (`flight_no` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`on_board`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`on_board` ;
CREATE TABLE IF NOT EXISTS `airport`.`on_board` (
`air_emp_id` INT NOT NULL,
`flight_no` CHAR(5) NOT NULL,
PRIMARY KEY (`air_emp_id`, `flight_no`),
CONSTRAINT `fk_air_crew_has_flight_air_crew1`
FOREIGN KEY (`air_emp_id`)
REFERENCES `airport`.`air_employee` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_air_crew_has_flight_flight1`
FOREIGN KEY (`flight_no`)
REFERENCES `airport`.`flight` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_air_crew_has_flight_flight1_idx` ON `airport`.`on_board` (`flight_no` ASC) ;
CREATE INDEX `fk_air_crew_has_flight_air_crew1_idx` ON `airport`.`on_board` (`air_emp_id` ASC) ;
-- -----------------------------------------------------
-- Table `airport`.`security_employee`
-- -----------------------------------------------------
DROP TABLE IF EXISTS `airport`.`security_employee` ;
CREATE TABLE IF NOT EXISTS `airport`.`security_employee` (
`employee_ssn` CHAR(8) NOT NULL,
`gate_no` INT NOT NULL,
PRIMARY KEY (`employee_ssn`, `gate_no`),
CONSTRAINT `fk_employee_has_gate_employee1`
FOREIGN KEY (`employee_ssn`)
REFERENCES `airport`.`employee` (`ssn`)
ON DELETE NO ACTION
ON UPDATE NO ACTION,
CONSTRAINT `fk_employee_has_gate_gate1`
FOREIGN KEY (`gate_no`)
REFERENCES `airport`.`gate` (`no`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
CREATE INDEX `fk_employee_has_gate_gate1_idx` ON `airport`.`security_employee` (`gate_no` ASC) ;
CREATE INDEX `fk_employee_has_gate_employee1_idx` ON `airport`.`security_employee` (`employee_ssn` ASC) ;
-- -----------------------------------------------------
-- Data for table `airport`.`employee`
-- -----------------------------------------------------
START TRANSACTION;
USE `airport`;
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('33965967', 'ahmed', 'G', 'Hussein', 'security guard', 7000, '2000-05-04', 'M', 'Bechelor of commerce', 11511, 'Cairo main', 'No 1 bdel Khalek Tharwat St. - Ataba Square');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('37933718', 'mohamed', 'H', ' Karim', 'security guard', 7100, '1998-08-09', 'M', 'Bechelor of commerce', 11765, 'Nasr City', 'St. Ahmed Fouad Naseem - Behind the Workforce - Nasr City - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('67349879', 'khaled', 'D', 'Tareq', 'security guard', 7800, '2000-12-27', 'M', 'Bechelor of commerce', 11728, 'Maadi', 'Street 9 - Maadi');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('85419647', 'Mohamed', 'S', 'Abdelrahman', 'security guard', 7200, '1992-01-26', 'M', 'secondary', 11522, 'Ramses', 'No. 57 amses Street - Azbakia');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('10549059', ' Youssef', 'F', 'Adama', 'security guard', 7100, '2000-03-12', 'M', 'secondary', 11561, 'El Zamalek', 'No 3 Brazil St. - El Zamalek');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('37785122', ' Ahmed', 'G', 'Bakary', 'security guard', 7905, '2000-03-22', 'M', 'Bechelor of rights', 11757, 'Heliopolis', 'Post Street - El Korba - Masr El Gadeda');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('78726579', ' Mahmoud', 'J', 'Abdoulaye', 'security guard', 6800, '2005-09-16', 'M', 'secondary', 11835, '5th Settlement New Cairo', 'First Quarter - 5th Settlement - Nasr City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('51082588', ' Mustafa', 'F', 'Modibo', 'security guard', 5200, '1970-11-24', 'M', 'Bechelor of rights', 11571, 'Mokattam City', 'Fountain Square - Mokattam City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('91176872', 'Yassin', 'S', 'Oumar', 'security guard', 7900, '1980-05-21', 'M', 'secondary', 11837, 'El Shorouq City', 'El Shorouq City - Commercial Market');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('95317540', 'Taha', 'A', 'Sekou', 'security guard', 5500, '1975-01-15', 'M', 'Bechelor of arts', 11574, 'Tawfeer El Alfy', 'No 1 El Alfy St. - Downtown Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('16227346', 'Khaled', 'F', 'Wassim', 'mechanic', 5000, '1970-01-03', 'M', 'secondary', 11631, 'Rod El Farag', 'No 137 Ebeid Street - Rod El Farag - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('38551291', 'Hamza', 'S', 'Ali', 'mechanic', 5500, '1972-12-03', 'M', 'secondary', 11841, 'Rehab City', 'Rehab City - New Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('45799284', 'Bilal', 'S', 'Amine', 'mechanic', 5800, '1966-02-10', 'M', 'secondary', 11632, 'Old Egypt', 'Police Street - Next to The Old Egypt Section');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('14019955', 'Ibrahim', 'A', 'Medhat', 'mechanic', 5100, '1964-05-27', 'M', 'secondary', 11768, 'District VI Nasr City', 'No 68 Khalifa Al-Zafar Street - 6th District - Nasr City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('74394299', ' Hassan', 'W', 'Youssef', 'mechanic', 4500, '1973-09-10', 'M', 'secondary', 11672, 'Shubra Misr', 'No 81 Shubra Street - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('30181194', 'Hussein', 'E', 'Aziz', 'mechanic', 5900, '1976-11-28', 'M', 'secondary', 11843, 'New Nozha', 'Division of the city flower - End of the New Nozha');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('72148359', ' Karim', 'R', 'Karim', 'mechanic', 6000, '1970-09-16', 'M', 'secondary', 11722, 'Helwan pools', 'No 33 Mohamed Sayed Ahmed Street - Helwan');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('53292373', 'Tareq', 'W', 'ahmed', 'mechanic', 5200, '1973-06-14', 'M', 'secondary', 11828, 'Obour City', 'First Quarter next to the City Transit system');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('22444081', 'Abdelrahman', 'F', 'mohamed', 'mechanic', 5600, '1989-07-23', 'M', 'secondary', 11772, 'Ain Shams', 'El Mahdy Street - Ahmed Esmat - Ain Shams');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('45771026', 'Ali', 'S', 'khaled', 'mechanic', 5500, '1986-02-01', 'M', 'commercial diplome', 11725, 'hadayeq El Zaitoun', ' in front of hadayeq El Zaitoun Metro Station - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('94101071', 'Omar', 'G', 'Mohamed', 'mechanic', 4900, '1959-02-11', 'M', 'commercial diplome', 0, 'Al Asmarat', ' Al Asmarat District - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('25394954', 'Halim', 'D', ' Youssef', 'mechanic', 5800, '1988-06-19', 'M', 'commercial diplome', 11556, 'The Egyptian Museum', 'Egyptian Museum Building - Tahrir Square');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('26392847', 'Murad', 'S', 'walid', 'mechanic', 5000, '1976-01-14', 'M', 'commercial diplome', 11555, 'Manial El Roda West', 'No 115 Abdul Aziz Al Saude - El Manial');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('61397430', 'Selim', 'A', 'abdelnassar', 'mechanic', 5100, '2003-08-04', 'M', 'commercial diplome', 11554, 'Abu Saud Old Egypt', 'East of the tunnel - field of ancient Egypt');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('64399581', 'Abdallah', 'H', 'ismail', 'mechanic', 4700, '1989-03-15', 'M', 'industrial diplome', 11553, 'Manial El Rawda', 'No 9 El Manial Palace - Manial El Rawda');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('40322395', 'Abdallah', 'Z', 'Amir ', 'mechanic', 4000, '1984-11-02', 'M', 'industrial diplome', 11552, 'Journalists Syndicate', 'Khaliq TharwatSt. - Journalists Syndicate building - Uzbek Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('48374362', 'Peter', 'R', ' George', 'mechanic', 4000, '1978-10-18', 'M', 'industrial diplome', 11551, 'Missions Islamic city', 'Islamic Missions City - study');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('24870503', ' Pierre', 'I', 'adel', 'mechanic', 4400, '1970-01-01', 'M', 'industrial diplome', 11549, 'Elsabel Land', 'St. workshops telephone St. - Elsabel Land Shubra');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('75030339', ' George', 'G', 'nasim', 'mechanic', 4300, '1971-02-02', 'M', 'industrial diplome', 11541, 'Cairos main parcels', 'Ataba Square - post office building');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('81920258', 'John', 'T', ' Kirollos', 'mechanic', 5000, '1972-03-03', 'M', 'industrial diplome', 11536, 'Cairo Sporting Club', 'Ahmed Maher Square island - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('44198755', ' Mina', 'P', 'Habib', 'engineer', 8000, '1973-04-04', 'M', 'Bechelor of arts in aeronautical and space engineering', 11535, 'Second Abbasid', 'No. 2 Elsarayat St. Abdu Pasha Square');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('91641034', ' Beshoi', 'L', ' Fadi', 'engineer', 8900, '1974-05-05', 'M', 'Bechelor of arts in aeronautical and space engineering', 11534, 'Ministry of Tourism', 'No. 5 Adly Street - Ministry of Tourism / Azbakiya');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('22675891', ' Kirollos', 'G', ' Beshoi', 'engineer', 8500, '1975-06-06', 'M', 'Bechelor of arts in aeronautical and space engineering', 11527, 'Republican Palace dome', 'Inside the Republican Palace - Gardens dome');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('80459206', ' Mark', 'F', 'metwally', 'engineer', 8100, '1976-07-07', 'M', 'Bechelor of arts in aeronautical and space engineering', 11524, 'Ministry of Education', 'The Ministry of Education Building');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('75087307', ' Fadi', 'S', 'John', 'engineer', 8700, '1977-08-08', 'M', 'Bechelor of arts in aeronautical and space engineering', 11523, 'Faggala', 'No. 11 Sirajuddin St. Al-Fagala - Azbakiya');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('93913838', 'Habib', 'A', ' Mina', 'captain', 8000, '1978-09-09', 'M', 'Bachelor of aviation', 11521, 'ElDawaeen', 'No.15 Noubar Basha St. - Saida Zeinab - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('78715471', 'Amir', 'G', 'mounir', 'captain', 8900, '1979-10-10', 'M', 'Bachelor of aviation', 11518, 'Mohamed Farid', 'No1 Mohamed Farid Street - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('17649414', 'Omar', 'S', 'adel', 'captain', 8500, '1980-11-11', 'M', 'Bachelor of aviation', 11516, 'Magles Al Shaeb', 'Magles Al Shaeb St.');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('58733011', 'Abdelkader', 'L', 'nasim', 'captain', 8100, '1981-12-12', 'M', 'Bachelor of aviation', 11515, 'Television ', 'Television building - Nile Corniche building - cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('77706885', 'Ahmed', 'K', 'shahin', 'captain', 8700, '1982-02-13', 'M', 'Bachelor of aviation', 11513, 'Bab El Louk', ' No.21 El Azhar St. Elfalaki field - Bab El Louk');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('92233307', 'Mohammed', 'H', 'osama', 'captain', 9000, '1983-03-14', 'M', 'Bachelor of aviation', 11512, 'tahrir complex', 'Tahrir complex - Tahrir Square Building - cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('37218044', 'Ali', 'G', 'islam', 'captain', 9800, '1984-04-15', 'M', 'Bachelor of aviation', 11554, 'Abu Saud Old Egypt', 'East of the tunnel - field of ancient Egypt');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('68422285', 'Said', 'F', 'hazem', 'captain', 10000, '1985-05-16', 'M', 'Bachelor of aviation', 11535, 'Second Abbasid', 'No. 2 Elsarayat St. Abdu Pasha Square');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('37128823', 'Ibrahim', 'S', 'metwally', 'copilot', 8900, '1986-06-17', 'M', 'Bachelor of aviation', 11536, 'Cairo Sporting Club', 'Ahmed Maher Square island - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('92936760', 'Omar', 'R', 'essa', 'copilot', 8500, '1987-07-18', 'M', 'Bachelor of aviation', 11538, 'the primary court of north cairo abassia', 'Abbasia Square , building of the primary court of north cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('22231509', 'Ahmed', 'E', 'Youssef', 'copilot', 8100, '1988-08-19', 'M', 'Bachelor of aviation', 11527, 'Republican Palace dome', 'Inside the Republican Palace - Gardens dome');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('44342315', 'Ali', 'W', 'Aziz', 'copilot', 8700, '1989-09-20', 'M', 'Bachelor of aviation', 11541, 'Cairos main parcels', 'Ataba Square - post office building');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('14891503', 'Hamza', 'Q', 'Karim', 'copilot', 8000, '1990-10-21', 'M', 'Bachelor of aviation', 11549, 'Elsabel Land', 'St. workshops telephone St. - Elsabel Land Shubra');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('27769776', 'Ibrahim', 'T', 'Aziz', 'copilot', 8900, '1991-11-22', 'M', 'Bachelor of aviation', 11551, 'Missions Islamic city', 'Islamic Missions City - study');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('73579221', 'Mahmoud', 'F', 'Karim', 'copilot', 8500, '1992-12-23', 'M', 'Bachelor of aviation', 11552, 'Journalists Syndicate', 'Khaliq TharwatSt. - Journalists Syndicate building - Uzbek Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('42940045', 'Abdallah', 'D', 'Mamadou', 'copilot', 11000, '1993-02-24', 'M', 'Bachelor of aviation', 11553, 'Manial El Rawda', 'No 9 El Manial Palace - Manial El Rawda');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('77018858', 'Tareq', 'S', 'Fahd ', 'attendant', 7000, '1994-03-25', 'M', 'diplome airline', 11534, 'Ministry of Tourism', 'No. 5 Adly Street - Ministry of Tourism / Azbakiya');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('16455966', 'Khaled', 'Q', 'Taha', 'attendant', 7800, '1995-04-26', 'M', 'diplome airline', 11555, 'Manial El Roda West', 'No 115 Abdul Aziz Al Saude - El Manial');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('48845427', 'Mamadou', 'E', 'Khaled', 'attendant', 7000, '1996-05-27', 'M', 'diplome airline', 11556, 'The Egyptian Museum', 'Egyptian Museum Building - Tahrir Square');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('16248780', 'Moussa', 'W', 'Mahmoud', 'attendant', 7800, '1997-06-28', 'M', 'diplome airline', 11524, 'Ministry of Education', 'The Ministry of Education Building');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('68740701', 'Mahamadou', 'K', 'Abdallah', 'attendant', 7000, '1998-07-29', 'M', 'diplome airline', 11523, 'Faggala', 'No. 11 Sirajuddin St. Al-Fagala - Azbakiya');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('78720420', 'Adama', 'J', 'Tareq', 'attendant', 7800, '1999-08-02', 'M', 'diplome airline', 11521, 'ElDawaeen', 'No.15 Noubar Basha St. - Saida Zeinab - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('80185212', 'Bakary', 'D', 'Khaled', 'attendant', 9000, '2000-09-03', 'M', 'diplome airline', 11518, 'Mohamed Farid', 'No1 Mohamed Farid Street - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('71688757', 'Abdoulaye', 'A', 'Mamadou', 'attendant', 7800, '2001-10-04', 'M', 'diplome airline', 11516, 'Magles Al Shaeb', 'Magles Al Shaeb St.');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('45970645', 'Modibo', 'K', 'Moussa', 'attendant', 8000, '2002-11-05', 'M', 'diplome airline', 11567, 'Cairo Tower', 'Tower building / El Gazirah / Nile Palace');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('86677298', 'Oumar', 'J', 'Mahamadou', 'attendant', 7000, '1975-09-29', 'M', 'diplome airline', 11552, 'Journalists Syndicate', 'Khaliq TharwatSt. - Journalists Syndicate building - Uzbek Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('48157238', 'Sekou', 'I', 'Adama', 'attendant', 8000, '1976-10-02', 'M', 'diplome airline', 11553, 'Manial El Rawda', 'No 9 El Manial Palace - Manial El Rawda');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('58673754', 'Souleymane', 'N', 'Bakary', 'attendant', 7800, '1977-11-03', 'M', 'diplome airline', 11554, 'Abu Saud Old Egypt', 'East of the tunnel - field of ancient Egypt');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('67115657', 'Mohamed', 'R', 'Belal', 'attendant', 7500, '1978-12-04', 'M', 'diplome airline', 11555, 'Manial El Roda West', 'No 115 Abdul Aziz Al Saude - El Manial');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('32747979', 'Amir', 'T', 'walid', 'attendant', 7000, '1979-02-05', 'M', 'diplome tourist division and hotels', 11556, 'The Egyptian Museum', 'Egyptian Museum Building - Tahrir Square');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('95252321', 'Ibrahim', 'Y', 'Amir', 'attendant', 7800, '1980-03-06', 'M', 'diplome tourist division and hotels', 11588, 'Ain Shams Specialized Hospital', 'Hospital building - El Khalifa El maemon Street');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('16161450', 'Ayoub', 'U', 'Omar', 'attendant', 7000, '1981-04-07', 'M', 'diplome tourist division and hotels', 11559, 'El malek El Saleh ', 'No 8 El Siala ElRoda St. - El Manial');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('42058942', 'Youssef', 'P', 'Abdelkader', 'attendant', 7500, '1982-05-08', 'M', 'diplome tourist division and hotels', 11523, 'Faggala', 'No. 11 Sirajuddin St. Al-Fagala - Azbakiya');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('52864290', 'Younès', 'O', 'Ahmed', 'attendant', 8000, '1983-06-09', 'M', 'diplome tourist division and hotels', 11562, 'El Qasr al Aini', 'No 71 El Kasr El Aini St.');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('57187381', 'Wassim', 'P', 'Mohammed', 'attendant', 7000, '1984-07-10', 'M', 'diplome tourist division and hotels', 11563, 'El Zaher', 'No 70 El Zaher St.');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('90105586', 'Ali', 'A', 'Taha', 'attendant', 7000, '1985-08-11', 'M', 'diplome tourist division and hotels', 11564, 'Uzbek court complex', 'Courts Complex building - El Galaa St. - Uzbek');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('74512931', 'Amine', 'S', 'Khaled', 'attendant', 7500, '1986-09-12', 'M', 'diplome tourist division and hotels', 11567, 'Cairo Tower', 'Tower building / El Gazirah / Nile Palace');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('40140478', 'Medhat', 'Z', 'Hamza', 'attendant', 7000, '1987-10-13', 'M', 'diplome tourist division and hotels', 11568, '?El Gazirah Zamalek', 'No 3 Shagara El Dor - Zamalek');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('21945556', 'Youssef', 'X', 'Bilal', 'attendant', 7000, '1988-11-14', 'M', 'diplome tourist division and hotels', 11521, 'ElDawaeen', 'No.15 Noubar Basha St. - Saida Zeinab - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('61081562', 'Aziz', 'C', 'Ibrahim', 'attendant', 7000, '1989-12-15', 'M', 'diplome tourist division and hotels', 11575, 'El Tunsy', 'Sanada St. from Elkordy Street - El Khalifa - cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('72581757', 'Karim', 'B', 'Ashraf', 'attendant', 7000, '1990-02-16', 'M', 'diplome tourist division and hotels', 11576, 'Sales Tax Shobra', 'Agha Khan Buildings - Shubra');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('97494228', 'Mamadou', 'N', 'gamal', 'attendant', 7500, '1991-03-17', 'M', 'diplome tourist division and hotels', 11577, 'El Qubaisi', 'No 39 Esmail El Falaky St. - Elzaher');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('32014634', 'Fahd ', 'D', 'glal', 'attendant', 8000, '1992-04-18', 'M', 'diplome tourist division and hotels', 11581, 'El Emam El Shafei', 'No 176 El Emam El Shafei St. - El Khalifa');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('93763380', 'Taha', 'F', 'anwar', 'attendant', 7000, '1993-05-19', 'M', 'diplome tourist division and hotels', 11584, 'Ministry of International Cooperation', 'No 8 Adly St.- Ministry of International Cooperation');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('12533980', 'Khaled', 'G', 'Amine', 'attendant', 7000, '1994-06-20', 'M', 'diplome tourist division and hotels', 11528, 'Tenth District', 'Tenth District 14 El Mahdy Arafh St. - Tower seedbed');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('20046157', 'Hamza', 'H', 'Medhat', 'attendant', 7400, '1995-07-21', 'M', 'diplome tourist division and hotels', 11835, '5th Settlement New Cairo', 'First Quarter - 5th Settlement - Nasr City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('95023229', 'Bilal', 'J', 'Youssef', 'attendant', 7800, '1996-08-22', 'M', 'diplome tourist division and hotels', 11571, 'Mokattam City', 'Fountain Square - Mokattam City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('40533284', 'Ibrahim', 'K', 'Aziz', 'attendant', 8000, '1997-09-23', 'M', 'diplome tourist division and hotels', 11837, 'El Shorouq City', 'El Shorouq City - Commercial Market');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('26107194', ' Hassan', 'L', 'Karim', 'attendant', 7000, '1998-10-24', 'M', 'diplome tourist division and hotels', 11574, 'Tawfeer El Alfy', 'No 1 El Alfy St. - Downtown Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('51552081', 'amina', 'G', 'Mamadou', 'attendant', 7500, '1999-11-25', 'F', 'diplome tourist division and hotels', 11631, 'Rod El Farag', 'No 137 Ebeid Street - Rod El Farag - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('74160746', 'Sara', 'F', 'Abbas', 'attendant', 7000, '2000-12-26', 'F', 'diplome tourist division and hotels', 11841, 'Rehab City', 'Rehab City - New Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('34285151', 'Yasmine', 'E', 'ashraf', 'attendant', 8500, '2001-02-27', 'F', 'diplome tourist division and hotels', 11555, 'Manial El Roda West', 'No 115 Abdul Aziz Al Saude - El Manial');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('35922745', 'Lyna', 'B', 'ayman', 'attendant', 7000, '2002-03-28', 'F', 'diplome airline', 11556, 'The Egyptian Museum', 'Egyptian Museum Building - Tahrir Square');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('75134291', 'Maria', 'N', 'bassem', 'attendant', 7000, '2003-04-29', 'F', 'diplome airline', 11588, 'Ain Shams Specialized Hospital', 'Hospital building - El Khalifa El maemon Street');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('30913540', 'Meriem', 'R', 'ehab', 'attendant', 8500, '1978-05-09', 'F', 'diplome airline', 11577, 'El Qubaisi', 'No 39 Esmail El Falaky St. - Elzaher');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('96884121', 'Karima', 'R', 'essam', 'attendant', 7500, '1979-06-10', 'F', 'diplome airline', 11581, 'El Emam El Shafei', 'No 176 El Emam El Shafei St. - El Khalifa');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('64820357', 'Melissa', 'R', 'farouk', 'attendant', 7400, '1980-07-11', 'F', 'diplome airline', 11584, 'Ministry of International Cooperation', 'No 8 Adly St.- Ministry of International Cooperation');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('60787775', 'Lydia', 'D', 'abdelfattah', 'attendant', 7000, '1981-08-12', 'F', 'diplome airline', 11528, 'Tenth District', 'Tenth District 14 El Mahdy Arafh St. - Tower seedbed');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('78310572', 'Shaimaa', 'C', 'fuad', 'attendant', 7800, '1982-09-13', 'F', 'diplome airline', 11835, '5th Settlement New Cairo', 'First Quarter - 5th Settlement - Nasr City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('99541637', 'Fatma', 'S', 'hatem', 'attendant', 8000, '1983-10-14', 'F', 'diplome airline', 11571, 'Mokattam City', 'Fountain Square - Mokattam City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('92161552', 'Maha', 'N', 'hamza', 'attendant', 7000, '1984-11-15', 'F', 'diplome airline', 11554, 'Abu Saud Old Egypt', 'East of the tunnel - field of ancient Egypt');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('22086526', 'Reem', 'T', 'tamer', 'attendant', 7000, '1985-12-16', 'F', 'diplome airline', 11535, 'Second Abbasid', 'No. 2 Elsarayat St. Abdu Pasha Square');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('37995831', 'Farida', 'G', 'hisham', 'attendant', 8500, '1986-02-17', 'F', 'secondary', 11536, 'Cairo Sporting Club', 'Ahmed Maher Square island - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('79021788', 'Aya', 'K', 'hsni', 'attendant', 7000, '1987-03-18', 'F', 'secondary', 11538, 'the primary court of north cairo abassia', 'Abbasia Square , building of the primary court of north cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('68878821', 'Shahd', 'U', 'hossam', 'attendant', 7000, '1988-04-19', 'F', 'secondary', 11541, 'Cairos main parcels', 'Ataba Square - post office building');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('75001883', 'Ashraqat', 'R', 'kamal', 'attendant', 8000, '1989-05-20', 'F', 'secondary', 11549, 'Elsabel Land', 'St. workshops telephone St. - Elsabel Land Shubra');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('60753431', 'Sahar', 'E', 'kamel', 'attendant', 7000, '1990-06-21', 'F', 'secondary', 11551, 'Missions Islamic city', 'Islamic Missions City - study');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('18060107', 'Fatin', 'B', 'magdi', 'attendant', 7800, '1991-07-22', 'F', 'secondary', 11552, 'Journalists Syndicate', 'Khaliq TharwatSt. - Journalists Syndicate building - Uzbek Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('92079146', 'Dalal', 'V', 'mustafa', 'attendant', 7400, '1992-08-23', 'F', 'secondary', 11553, 'Manial El Rawda', 'No 9 El Manial Palace - Manial El Rawda');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('88635327', 'Doha', 'X', 'nabil', 'attendant', 7000, '1993-09-24', 'F', 'secondary', 11534, 'Ministry of Tourism', 'No. 5 Adly Street - Ministry of Tourism / Azbakiya');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('36405055', 'Fajr', 'X', 'nader', 'attendant', 7000, '1994-10-25', 'F', 'secondary', 11511, 'Cairo main', 'No 1 bdel Khalek Tharwat St. - Ataba Square');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('44030574', 'Suha', 'C', 'naguib', 'attendant', 8500, '1995-11-26', 'F', 'secondary', 11765, 'Nasr City', 'St. Ahmed Fouad Naseem - Behind the Workforce - Nasr City - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('24330910', 'Rowan', 'V', 'nour', 'attendant', 7800, '1996-12-27', 'F', 'secondary', 11728, 'Maadi', 'Street 9 - Maadi');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('19285567', 'Hosniya', 'B', 'Karim', 'attendant', 7000, '1997-02-28', 'F', 'secondary', 11522, 'Ramses', 'No. 57 amses Street - Azbakia');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('43040787', 'Hasnaa', 'N', 'ahmed', 'attendant', 8000, '1998-03-29', 'F', 'secondary', 11561, 'El Zamalek', 'No 3 Brazil St. - El Zamalek');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('29123378', 'Hosna', 'M', 'mohamed', 'attendant', 7000, '1999-04-02', 'F', 'secondary', 11757, 'Heliopolis', 'Post Street - El Korba - Masr El Gadeda');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('17269439', 'Gamila', 'D', 'khaled', 'attendant', 7800, '2000-05-03', 'F', 'secondary', 11835, '5th Settlement New Cairo', 'First Quarter - 5th Settlement - Nasr City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('54896683', 'Gamalat', 'A', 'Mohamed', 'attendant', 7000, '2001-06-04', 'F', 'secondary', 11571, 'Mokattam City', 'Fountain Square - Mokattam City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('52251241', 'Habiba', 'E', ' Youssef', 'attendant', 7800, '2002-07-05', 'F', 'secondary', 11837, 'El Shorouq City', 'El Shorouq City - Commercial Market');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('44725567', 'Mary', 'R', 'walid', 'attendant', 7800, '2003-08-06', 'F', 'diplome tourist division and hotels', 11574, 'Tawfeer El Alfy', 'No 1 El Alfy St. - Downtown Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('36969958', 'Marie', 'Y', 'abdelnassar', 'attendant', 7800, '2004-09-07', 'F', 'diplome tourist division and hotels', 11631, 'Rod El Farag', 'No 137 Ebeid Street - Rod El Farag - Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('63530617', 'Mariam', 'T', 'ismail', 'captain', 9000, '1994-10-25', 'F', 'Bachelor of aviiation', 11841, 'Rehab City', 'Rehab City - New Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('39849186', ' Marina', 'Y', 'Amir ', 'captain', 9500, '1995-11-26', 'F', 'Bachelor of aviiation', 11588, 'Ain Shams Specialized Hospital', 'Hospital building - El Khalifa El maemon Street');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('31751135', 'Irene', 'I', 'mounir', 'copilot', 9000, '1996-12-27', 'F', 'Bachelor of aviiation', 11559, 'El malek El Saleh ', 'No 8 El Siala ElRoda St. - El Manial');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('62992334', 'Malak', 'O', 'adel', 'copilot', 9600, '1997-02-28', 'F', 'Bachelor of aviiation', 11523, 'Faggala', 'No. 11 Sirajuddin St. Al-Fagala - Azbakiya');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('36969959', 'Mohamed', 'A', 'abdelnassar', 'security guard', 7000, '1998-08-10', 'M', 'secondary', 11571, 'Mokattam City', 'Fountain Square - Mokattam City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('36959958', 'abdelnassar', 'S', ' Youssef', 'security guard', 7500, '1998-08-09', 'M', 'secondary', 11574, 'Tawfeer El Alfy', 'No 5 El Alfy St. - Downtown Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('46969958', ' Youssef', 'D', 'walid', 'security guard', 7200, '1995-08-09', 'M', 'diplome tourist division and hotels', 11574, 'Tawfeer El Alfy', 'No 6 El Alfy St. - Downtown Cairo');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('36985958', 'Mohamed', 'F', 'Mohamed', 'security guard', 7100, '1998-11-09', 'M', 'secondary', 11571, 'Mokattam City', 'Fountain Square - Mokattam City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('79969958', 'walid', 'T', ' Youssef', 'security guard', 7300, '1988-11-09', 'M', 'diplome tourist division and hotels', 11571, 'Mokattam City', 'Fountain Square - Mokattam City');
INSERT INTO `airport`.`employee` (`ssn`, `f_name`, `minit`, `l_name`, `job_title`, `salary`, `b_date`, `gender`, `education`, `zip_code`, `city`, `street`) VALUES ('36901958', 'abdelnassar', 'Y', 'Mohamed', 'security guard', 7400, '1998-01-01', 'M', 'diplome tourist division and hotels', 11574, 'Tawfeer El Alfy', 'No 9 El Alfy St. - Downtown Cairo');
COMMIT;
-- -----------------------------------------------------
-- Data for table `airport`.`employee_phone`
-- -----------------------------------------------------
START TRANSACTION;
USE `airport`;
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1039039649', '33965967');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1192485990', '37933718');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1283299769', '67349879');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1567616924', '85419647');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1079076100', '10549059');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1591873351', '37785122');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1123191681', '78726579');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1296019590', '51082588');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1026570251', '91176872');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1221999364', '95317540');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1589301389', '16227346');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1051876728', '38551291');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1075789699', '45799284');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1028873261', '14019955');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1574594511', '74394299');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1296999915', '30181194');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1069981846', '72148359');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1075571722', '53292373');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1096396375', '22444081');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1013343724', '45771026');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1029117909', '94101071');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1164937590', '25394954');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1259330987', '26392847');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1560313020', '61397430');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1036459682', '64399581');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1544579684', '40322395');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1115781654', '48374362');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1289900856', '24870503');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1012825089', '75030339');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1246141527', '81920258');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1592894050', '44198755');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1064460127', '91641034');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1049185024', '22675891');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1091425357', '80459206');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1528738944', '75087307');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1230833746', '93913838');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1063768431', '78715471');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1046264552', '17649414');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1074242810', '58733011');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1072404408', '77706885');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1072359030', '92233307');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1114386080', '37218044');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1296792997', '68422285');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1512699879', '37128823');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1064149042', '92936760');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1533226259', '22231509');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1188658313', '44342315');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1248743634', '14891503');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1066485670', '27769776');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1240472727', '73579221');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1559397885', '42940045');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1075381249', '77018858');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1019094536', '16455966');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1088749138', '48845427');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1512441807', '16248780');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1274699109', '68740701');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1095823942', '78720420');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1086838868', '80185212');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1059301836', '71688757');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1067645325', '45970645');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1082868194', '86677298');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1163814845', '48157238');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1215999719', '58673754');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1546762346', '67115657');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1091955540', '32747979');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1556516574', '95252321');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1141417109', '16161450');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1218813535', '42058942');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1064986037', '52864290');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1235512949', '57187381');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1595843620', '90105586');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1095084053', '74512931');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1070058020', '40140478');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1057426015', '21945556');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1524262578', '61081562');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1295202393', '72581757');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1013504964', '97494228');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1092292371', '32014634');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1012422786', '93763380');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1038404028', '12533980');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1088232095', '20046157');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1135598136', '95023229');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1241346122', '40533284');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1545716654', '26107194');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1011914173', '51552081');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1555453016', '74160746');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1153640323', '34285151');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1225377798', '35922745');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1092479810', '75134291');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1229875980', '30913540');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1581059839', '96884121');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1093244809', '64820357');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1080760458', '60787775');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1019646221', '78310572');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1581226043', '99541637');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1243077803', '92161552');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1055814761', '22086526');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1044648441', '37995831');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1048603116', '79021788');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1069596622', '68878821');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1048963130', '75001883');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1167510688', '60753431');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1247870595', '18060107');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1519430424', '92079146');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1078752855', '88635327');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1587014161', '36405055');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1169037788', '44030574');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1220814185', '24330910');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1063690119', '19285567');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1289434122', '43040787');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1560621578', '29123378');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1048031766', '17269439');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1095315692', '54896683');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1046119030', '52251241');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1517476255', '44725567');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1217568342', '36969958');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1012707109', '63530617');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1044040290', '39849186');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1082246395', '31751135');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1078220765', '62992334');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1090039986', '10549059');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1115973191', '37785122');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1230291668', '78726579');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1591080469', '51082588');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1040472236', '91176872');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1556910218', '95317540');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1195666959', '16227346');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1257667909', '38551291');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1079180025', '45799284');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1288120228', '14019955');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1598931454', '60753431');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1012352172', '18060107');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1065572003', '92079146');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1096183937', '88635327');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1559122222', '36405055');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1243014567', '44030574');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1047510052', '24330910');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1081354510', '19285567');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1059775650', '43040787');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1061191196', '29123378');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1040033386', '17269439');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1177506340', '72581757');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1269947916', '97494228');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1536826206', '32014634');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1082076526', '93763380');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1580482075', '12533980');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1183736964', '20046157');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1259224028', '95023229');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1085359612', '40533284');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1266481642', '26107194');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1543584751', '44342315');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1013356957', '14891503');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1064361571', '27769776');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1083487972', '73579221');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1548889708', '42940045');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1220927985', '77018858');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1053440990', '16455966');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1069667404', '48845427');
INSERT INTO `airport`.`employee_phone` (`phone`, `employee_ssn`) VALUES ('1090138250', '16248780');
COMMIT;
-- -----------------------------------------------------
-- Data for table `airport`.`mechanic`
-- -----------------------------------------------------
START TRANSACTION;
USE `airport`;
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5951, '2020-08-08', '16227346');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5952, '2021-09-08', '38551291');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5963, '2019-09-08', '45799284');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5954, '2015-10-25', '14019955');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (6955, '2018-12-03', '74394299');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5956, '2014-02-01', '30181194');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5957, '2010-08-15', '72148359');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (7958, '2014-01-09', '53292373');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5959, '2014-08-17', '22444081');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5960, '2013-09-16', '45771026');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5961, '2022-09-07', '94101071');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5962, '2020-07-12', '25394954');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5963, '2023-01-15', '26392847');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5964, '2023-12-05', '61397430');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (9965, '2020-09-15', '64399581');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5966, '2020-07-13', '40322395');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5867, '2021-05-28', '48374362');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5968, '2020-08-09', '24870503');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5969, '2020-01-20', '75030339');
INSERT INTO `airport`.`mechanic` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (5900, '2021-05-28', '81920258');
COMMIT;
-- -----------------------------------------------------
-- Data for table `airport`.`ame`
-- -----------------------------------------------------
START TRANSACTION;
USE `airport`;
INSERT INTO `airport`.`ame` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (6598, '2020-09-17', '44198755');
INSERT INTO `airport`.`ame` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (6599, '2021-08-06', '91641034');
INSERT INTO `airport`.`ame` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (6660, '2022-01-30', '22675891');
INSERT INTO `airport`.`ame` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (6681, '2020-02-28', '80459206');
INSERT INTO `airport`.`ame` (`certificate_no`, `i_date`, `employee_ssn`) VALUES (6602, '2019-04-15', '75087307');
COMMIT;
-- -----------------------------------------------------
-- Data for table `airport`.`airline`
-- -----------------------------------------------------
START TRANSACTION;
USE `airport`;
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('RJ', 'RJA', 'OJAI', 'royal jordanian');
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('AF', 'AFR', 'LFPG', 'air france');
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('TK', 'THY', 'LTFM', 'turkish airlines');
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('LH', 'DLH', 'EDDF', 'lufthansa');
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('EK', 'UAE', 'OMDB', 'emirates');
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('LX', 'SWR', 'LSZH', 'swiss');
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('TU', 'TAR', 'DTTA', 'tunisair');
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('QR', 'QTR', 'OTHH', 'qatar airways');
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('SV', 'SVA', 'OERK', 'saudi airlines');
INSERT INTO `airport`.`airline` (`iata`, `icao`, `base-airport`, `name`) VALUES ('MS', 'MSR', 'HECA', 'egyptair');
COMMIT;
-- -----------------------------------------------------
-- Data for table `airport`.`air_employee`
-- -----------------------------------------------------
START TRANSACTION;
USE `airport`;
INSERT INTO `airport`.`air_employee` (`id`, `airline_icao`) VALUES (0, 'RJA');
INSERT INTO `airport`.`air_employee` (`id`, `airline_icao`) VALUES (1, 'RJA');
INSERT INTO `airport`.`air_employee` (`id`, `airline_icao`) VALUES (2, 'AFR');
INSERT INTO `airport`.`air_employee` (`id`, `airline_icao`) VALUES (3, 'AFR');