-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAirCanada.sql
More file actions
23 lines (23 loc) · 917 Bytes
/
AirCanada.sql
File metadata and controls
23 lines (23 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
INSERT INTO flights (departure_city, destination_city, flight_date) VALUES
('Istanbul', 'Bahamas', '2023-10-28'),
('Bahamas', 'Istanbul', '2023-10-28'),
('Istanbul', 'Tokyo', '2023-10-28'),
('Tokyo', 'Istanbul', '2023-10-28'),
('Istanbul', 'Tehran', '2023-10-28'),
('Tehran', 'Istanbul', '2023-10-28'),
('Istanbul', 'Antarctica', '2023-10-28'),
('Antarctica', 'Istanbul', '2023-10-28'),
('Istanbul', 'Sydney', '2023-10-28'),
('Sydney', 'Istanbul', '2023-10-28'),
('Istanbul', 'Paris', '2023-10-28'),
('Paris', 'Istanbul', '2023-10-28'),
('Istanbul', 'Rome', '2023-10-28'),
('Rome', 'Istanbul', '2023-10-28'),
('Istanbul', 'London', '2023-10-28'),
('London', 'Istanbul', '2023-10-28'),
('Istanbul', 'New York', '2023-10-28'),
('New York', 'Istanbul', '2023-10-28'),
('Istanbul', 'Nigeria', '2023-10-28'),
('Nigeria', 'Istanbul', '2023-10-28'),
('Istanbul', 'Dubai', '2023-10-28'),
('Dubai', 'Istanbul', '2023-10-28');