This repository has been archived by the owner on Nov 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestseed.sql
63 lines (60 loc) · 2.05 KB
/
testseed.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
INSERT INTO pilots(first_name, last_name, age)
VALUES ('Ivo', 'Jarunica', 42);
INSERT INTO pilots(first_name, last_name, age)
VALUES ('Marko', 'Peric', 23);
INSERT INTO pilots(first_name, last_name, age)
VALUES ('Davor', 'Šukalo', 47);
INSERT INTO pilots(first_name, last_name, age)
VALUES ('Petar', 'Pavarovic', 37);
INSERT INTO pilots(first_name, last_name, age)
VALUES ('Borna', 'Krizinsky', 31);
INSERT INTO pilots(first_name, last_name, age)
VALUES ('Bolo', 'Keno', 33);
INSERT INTO pilots(first_name, last_name, age)
VALUES ('Josko', 'Supraca', 28);
INSERT INTO pilots(first_name, last_name, age)
VALUES ('Goran', 'Hektorovic', 56);
INSERT INTO pilots(first_name, last_name, age)
VALUES ('Boro', 'Kavez', 21);
INSERT INTO aircrafts(aircraft_name)
VALUES('Leteca banana MKIII');
INSERT INTO aircrafts(aircraft_name)
VALUES('Boeing 5000');
INSERT INTO aircrafts(aircraft_name)
VALUES('F-161');
INSERT INTO aircrafts(aircraft_name)
VALUES('Neki avion bogati');
INSERT INTO aircrafts(aircraft_name)
VALUES('Mombao Ukutuku');
INSERT INTO aircrafts(aircraft_name)
VALUES('Forgetaboutit');
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (1, 2);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (2, 1);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (2, 2);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (3, 2);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (3, 4);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (3, 5);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (3, 6);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (4, 3);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (4, 5);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (5, 1);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (6, 4);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (6, 2);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (7, 1);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (7, 6);
INSERT INTO pilots_aircrafts(pilot_id, aircraft_id)
VALUES (8, 4);