From a842bce0265a658a2914c6cfa5e62ce7cf06a3ff 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:50:53 +0000 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20=C2=AB?= =?UTF-8?q?src/main/resources=C2=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/sql-extended.properties | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/main/resources/sql-extended.properties diff --git a/src/main/resources/sql-extended.properties b/src/main/resources/sql-extended.properties new file mode 100644 index 0000000..b374d3e --- /dev/null +++ b/src/main/resources/sql-extended.properties @@ -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%';