From 5c137f95864e8ca40765c04abc9d7eac951f7474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D1=80=D0=BE=D0=B7=D0=B4=D0=B5=D0=B2?= Date: Mon, 26 Jan 2026 07:59:45 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20src/main/resources/sql-extended.properties?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/sql-extended.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/sql-extended.properties b/src/main/resources/sql-extended.properties index 77ee4e5..cbfa63e 100644 --- a/src/main/resources/sql-extended.properties +++ b/src/main/resources/sql-extended.properties @@ -2,7 +2,7 @@ task1=select count(*) from boarding_passes task2=select distinct count(*) from boarding_passes where seat_no like '17E' task3=select MAX(amount),MIN(amount),AVG(amount) from ticket_flights task4=select passenger_name from tickets where passenger_id like '8099%43' and book_ref like 'B%' -task5=select count(*) from flights where aircraft_code = (select aircraft_code from aircrafts_data where model like 'Cessna 208 Caravan' ) +task5=select count(*) from flights where aircraft_code = (SELECT aircraft_code from aircrafts_data WHERE model like 'Cessna 208 Caravan' ) 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%';