Загрузить файлы в «src/main/resources»
This commit is contained in:
parent
df8b2945dd
commit
a842bce026
8
src/main/resources/sql-extended.properties
Normal file
8
src/main/resources/sql-extended.properties
Normal file
@ -0,0 +1,8 @@
|
||||
task1=select count(*) from boarding_passes 7925812
|
||||
task2=select distinct count(*) from boarding_passes where seat_no like '17E' 48870
|
||||
task3=select MAX(amount),MIN(amount),AVG(amount) from ticket_flights max 203300.00 min 3000.00 avg 19949.000423267713
|
||||
task4=select passenger_name from tickets where passenger_id like '8099%43' and book_ref like 'B%' KRISTINA MELNIKOVA
|
||||
task5=select count(*) from flights where aircraft_code = (select aircraft_code from aircrafts_data where model like 'Cessna 208 Caravan' ) 60196
|
||||
task6=select airports_data.airport_name,airports_data.city, flight_id, flight_no from flights join airports_data on flights.departure_airport = airports_data.airport_code where flight_no = 'PG0305' and scheduled_departure = '2017-09-09 09:10:00'
|
||||
task7=select distinct aircrafts_data.model from flights join aircrafts_data on flights.aircraft_code = aircrafts_data.aircraft_code where flight_no = 'PG0210'
|
||||
task8=SELECT CONCAT(first_name,' ',last_name) AS FI FROM employees WHERE first_name ILIKE 'Anna' UNION SELECT passenger_name AS FI FROM tickets WHERE passenger_name ILIKE 'Anna%';
|
||||
Loading…
Reference in New Issue
Block a user