input
stringlengths
191
7.13k
output
stringlengths
19
578
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the short names of the buildings managed by "Emma". [/INST]
SELECT building_short_name FROM Apartment_Buildings WHERE building_manager = "Emma";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which buildings does "Emma" manage? Give me the short names of the buildings. [/INST]
SELECT building_short_name FROM Apartment_Buildings WHERE building_manager = "Emma";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the addresses and phones of all the buildings managed by "Brenden". [/INST]
SELECT building_address , building_phone FROM Apartment_Buildings WHERE building_manager = "Brenden";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the address and phone number of the buildings managed by "Brenden"? [/INST]
SELECT building_address , building_phone FROM Apartment_Buildings WHERE building_manager = "Brenden";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the building full names that contain the word "court"? [/INST]
SELECT building_full_name FROM Apartment_Buildings WHERE building_full_name LIKE "%court%";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Find all the building full names containing the word "court". [/INST]
SELECT building_full_name FROM Apartment_Buildings WHERE building_full_name LIKE "%court%";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What is the minimum and maximum number of bathrooms of all the apartments? [/INST]
SELECT min(bathroom_count) , max(bathroom_count) FROM Apartments;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Give me the minimum and maximum bathroom count among all the apartments. [/INST]
SELECT min(bathroom_count) , max(bathroom_count) FROM Apartments;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What is the average number of bedrooms of all apartments? [/INST]
SELECT avg(bedroom_count) FROM Apartments;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Find the average number of bedrooms of all the apartments. [/INST]
SELECT avg(bedroom_count) FROM Apartments;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Return the apartment number and the number of rooms for each apartment. [/INST]
SELECT apt_number , room_count FROM Apartments;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the apartment number and the room count of each apartment? [/INST]
SELECT apt_number , room_count FROM Apartments;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What is the average number of rooms of apartments with type code "Studio"? [/INST]
SELECT avg(room_count) FROM Apartments WHERE apt_type_code = "Studio";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Find the average room count of the apartments that have the "Studio" type code. [/INST]
SELECT avg(room_count) FROM Apartments WHERE apt_type_code = "Studio";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Return the apartment numbers of the apartments with type code "Flat". [/INST]
SELECT apt_number FROM Apartments WHERE apt_type_code = "Flat";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which apartments have type code "Flat"? Give me their apartment numbers. [/INST]
SELECT apt_number FROM Apartments WHERE apt_type_code = "Flat";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Return the first names and last names of all guests [/INST]
SELECT guest_first_name , guest_last_name FROM Guests;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the first names and last names of all the guests? [/INST]
SELECT guest_first_name , guest_last_name FROM Guests;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Return the date of birth for all the guests with gender code "Male". [/INST]
SELECT date_of_birth FROM Guests WHERE gender_code = "Male";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are dates of birth of all the guests whose gender is "Male"? [/INST]
SELECT date_of_birth FROM Guests WHERE gender_code = "Male";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the apartment numbers, start dates, and end dates of all the apartment bookings. [/INST]
SELECT T2.apt_number , T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the apartment number, start date, and end date of each apartment booking? [/INST]
SELECT T2.apt_number , T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the booking start and end dates of the apartments with type code "Duplex"? [/INST]
SELECT T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_type_code = "Duplex";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Return the booking start date and end date for the apartments that have type code "Duplex". [/INST]
SELECT T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_type_code = "Duplex";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the booking start and end dates of the apartments with more than 2 bedrooms? [/INST]
SELECT T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 2;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Find the booking start date and end date for the apartments that have more than two bedrooms. [/INST]
SELECT T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 2;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What is the booking status code of the apartment with apartment number "Suite 634"? [/INST]
SELECT T1.booking_status_code FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_number = "Suite 634";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Tell me the booking status code for the apartment with number "Suite 634". [/INST]
SELECT T1.booking_status_code FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.apt_number = "Suite 634";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the distinct apartment numbers of the apartments that have bookings with status code "Confirmed". [/INST]
SELECT DISTINCT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Confirmed";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which apartments have bookings with status code "Confirmed"? Return their apartment numbers. [/INST]
SELECT DISTINCT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Confirmed";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the average room count of the apartments that have booking status code "Provisional". [/INST]
SELECT avg(room_count) FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Provisional";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What is the average room count of the apartments whose booking status code is "Provisional"? [/INST]
SELECT avg(room_count) FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Provisional";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the guest first names, start dates, and end dates of all the apartment bookings. [/INST]
SELECT T2.guest_first_name , T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the guest first name, start date, and end date of each apartment booking? [/INST]
SELECT T2.guest_first_name , T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the start dates and end dates of all the apartment bookings made by guests with gender code "Female". [/INST]
SELECT T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T2.gender_code = "Female";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the start date and end date of the apartment bookings made by female guests (gender code "Female")? [/INST]
SELECT T1.booking_start_date , T1.booking_start_date FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T2.gender_code = "Female";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the first names and last names of all the guests that have apartment bookings with status code "Confirmed". [/INST]
SELECT T2.guest_first_name , T2.guest_last_name FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T1.booking_status_code = "Confirmed";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which guests have apartment bookings with status code "Confirmed"? Return their first names and last names. [/INST]
SELECT T2.guest_first_name , T2.guest_last_name FROM Apartment_Bookings AS T1 JOIN Guests AS T2 ON T1.guest_id = T2.guest_id WHERE T1.booking_status_code = "Confirmed";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the facility codes of apartments with more than 4 bedrooms. [/INST]
SELECT T1.facility_code FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 4;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the facility codes of the apartments with more than four bedrooms? [/INST]
SELECT T1.facility_code FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 4;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the total number of rooms of all apartments with facility code "Gym". [/INST]
SELECT sum(T2.room_count) FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.facility_code = "Gym";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Find the total number of rooms in the apartments that have facility code "Gym". [/INST]
SELECT sum(T2.room_count) FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.facility_code = "Gym";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the total number of rooms of the apartments in the building with short name "Columbus Square". [/INST]
SELECT sum(T2.room_count) FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T1.building_short_name = "Columbus Square";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: How many rooms in total are there in the apartments in the building with short name "Columbus Square"? [/INST]
SELECT sum(T2.room_count) FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T1.building_short_name = "Columbus Square";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the addresses of the buildings that have apartments with more than 2 bathrooms. [/INST]
SELECT T1.building_address FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T2.bathroom_count > 2;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which buildings have apartments that have more than two bathrooms? Give me the addresses of the buildings. [/INST]
SELECT T1.building_address FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T2.bathroom_count > 2;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the apartment type codes and apartment numbers in the buildings managed by "Kyle". [/INST]
SELECT T2.apt_type_code , T2.apt_number FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T1.building_manager = "Kyle";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What apartment type codes and apartment numbers do the buildings managed by "Kyle" have? [/INST]
SELECT T2.apt_type_code , T2.apt_number FROM Apartment_Buildings AS T1 JOIN Apartments AS T2 ON T1.building_id = T2.building_id WHERE T1.building_manager = "Kyle";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the booking status code and the corresponding number of bookings. [/INST]
SELECT booking_status_code , COUNT(*) FROM Apartment_Bookings GROUP BY booking_status_code;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: How many bookings does each booking status have? List the booking status code and the number of corresponding bookings. [/INST]
SELECT booking_status_code , COUNT(*) FROM Apartment_Bookings GROUP BY booking_status_code;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Return all the apartment numbers sorted by the room count in ascending order. [/INST]
SELECT apt_number FROM Apartments ORDER BY room_count ASC;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Sort the apartment numbers in ascending order of room count. [/INST]
SELECT apt_number FROM Apartments ORDER BY room_count ASC;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Return the apartment number with the largest number of bedrooms. [/INST]
SELECT apt_number FROM Apartments ORDER BY bedroom_count DESC LIMIT 1;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What is the apartment number of the apartment with the most beds? [/INST]
SELECT apt_number FROM Apartments ORDER BY bedroom_count DESC LIMIT 1;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the apartment type codes and the corresponding number of apartments sorted by the number of apartments in ascending order. [/INST]
SELECT apt_type_code , COUNT(*) FROM Apartments GROUP BY apt_type_code ORDER BY COUNT(*) ASC;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Return each apartment type code with the number of apartments having that apartment type, in ascending order of the number of apartments. [/INST]
SELECT apt_type_code , COUNT(*) FROM Apartments GROUP BY apt_type_code ORDER BY COUNT(*) ASC;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the top 3 apartment type codes sorted by the average number of rooms in descending order. [/INST]
SELECT apt_type_code FROM Apartments GROUP BY apt_type_code ORDER BY avg(room_count) DESC LIMIT 3;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: What are the top three apartment types in terms of the average room count? Give me the [/INST]
SELECT apt_type_code FROM Apartments GROUP BY apt_type_code ORDER BY avg(room_count) DESC LIMIT 3;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the apartment type code that has the largest number of total rooms, together with the number of bathrooms and number of bedrooms. [/INST]
SELECT apt_type_code , bathroom_count , bedroom_count FROM Apartments GROUP BY apt_type_code ORDER BY sum(room_count) DESC LIMIT 1;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which apartment type has the largest number of total rooms? Return the apartment type code, its number of bathrooms and number of bedrooms. [/INST]
SELECT apt_type_code , bathroom_count , bedroom_count FROM Apartments GROUP BY apt_type_code ORDER BY sum(room_count) DESC LIMIT 1;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the most common apartment type code. [/INST]
SELECT apt_type_code FROM Apartments GROUP BY apt_type_code ORDER BY count(*) DESC LIMIT 1;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which apartment type code appears the most often? [/INST]
SELECT apt_type_code FROM Apartments GROUP BY apt_type_code ORDER BY count(*) DESC LIMIT 1;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the most common apartment type code among apartments with more than 1 bathroom. [/INST]
SELECT apt_type_code FROM Apartments WHERE bathroom_count > 1 GROUP BY apt_type_code ORDER BY count(*) DESC LIMIT 1;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which apartment type code is the most common among apartments with more than one bathroom? [/INST]
SELECT apt_type_code FROM Apartments WHERE bathroom_count > 1 GROUP BY apt_type_code ORDER BY count(*) DESC LIMIT 1;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show each apartment type code, and the maximum and minimum number of rooms for each type. [/INST]
SELECT apt_type_code , max(room_count) , min(room_count) FROM Apartments GROUP BY apt_type_code;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Return each apartment type code along with the maximum and minimum number of rooms among each type. [/INST]
SELECT apt_type_code , max(room_count) , min(room_count) FROM Apartments GROUP BY apt_type_code;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show each gender code and the corresponding count of guests sorted by the count in descending order. [/INST]
SELECT gender_code , COUNT(*) FROM Guests GROUP BY gender_code ORDER BY COUNT(*) DESC;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Sort the gender codes in descending order of their corresponding number of guests. Return both the gender codes and counts. [/INST]
SELECT gender_code , COUNT(*) FROM Guests GROUP BY gender_code ORDER BY COUNT(*) DESC;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: How many apartments do not have any facility? [/INST]
SELECT count(*) FROM Apartments WHERE apt_id NOT IN (SELECT apt_id FROM Apartment_Facilities);
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Find the number of apartments that have no facility. [/INST]
SELECT count(*) FROM Apartments WHERE apt_id NOT IN (SELECT apt_id FROM Apartment_Facilities);
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the apartment numbers of apartments with bookings that have status code both "Provisional" and "Confirmed" [/INST]
SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Confirmed" INTERSECT SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Provisional";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which apartments have bookings with both status codes "Provisional" and "Confirmed"? Give me the apartment numbers. [/INST]
SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Confirmed" INTERSECT SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Provisional";
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Show the apartment numbers of apartments with unit status availability of both 0 and 1. [/INST]
SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 0 INTERSECT SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 1;
Tables: Apartment_Buildings, Apartments, Apartment_Facilities, Guests, Apartment_Bookings, View_Unit_Status Columns: Apartment_Buildings.building_id, Apartment_Buildings.building_short_name, Apartment_Buildings.building_full_name, Apartment_Buildings.building_description, Apartment_Buildings.building_address, Apartment_Buildings.building_manager, Apartment_Buildings.building_phone, Apartments.apt_id, Apartments.building_id, Apartments.apt_type_code, Apartments.apt_number, Apartments.bathroom_count, Apartments.bedroom_count, Apartments.room_count, Apartment_Facilities.apt_id, Apartment_Facilities.facility_code, Guests.guest_id, Guests.gender_code, Guests.guest_first_name, Guests.guest_last_name, Guests.date_of_birth, Apartment_Bookings.apt_booking_id, Apartment_Bookings.apt_id, Apartment_Bookings.guest_id, Apartment_Bookings.booking_status_code, Apartment_Bookings.booking_start_date, Apartment_Bookings.booking_end_date, View_Unit_Status.apt_id, View_Unit_Status.apt_booking_id, View_Unit_Status.status_date, View_Unit_Status.available_yn Question: Which apartments have unit status availability of both 0 and 1? Return their apartment numbers. [/INST]
SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 0 INTERSECT SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 1;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: How many games are held after season 2007? [/INST]
SELECT count(*) FROM game WHERE season > 2007;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: List the dates of games by the home team name in descending order. [/INST]
SELECT Date FROM game ORDER BY home_team DESC;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: List the season, home team, away team of all the games. [/INST]
SELECT season , home_team , away_team FROM game;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: What are the maximum, minimum and average home games each stadium held? [/INST]
SELECT max(home_games) , min(home_games) , avg(home_games) FROM stadium;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: What is the average attendance of stadiums with capacity percentage higher than 100%? [/INST]
SELECT average_attendance FROM stadium WHERE capacity_percentage > 100;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: What are the player name, number of matches, and information source for players who do not suffer from injury of 'Knee problem'? [/INST]
SELECT player , number_of_matches , SOURCE FROM injury_accident WHERE injury != 'Knee problem';
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: What is the season of the game which causes the player 'Walter Samuel' to get injured? [/INST]
SELECT T1.season FROM game AS T1 JOIN injury_accident AS T2 ON T1.id = T2.game_id WHERE T2.player = 'Walter Samuel';
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: What are the ids, scores, and dates of the games which caused at least two injury accidents? [/INST]
SELECT T1.id , T1.score , T1.date FROM game AS T1 JOIN injury_accident AS T2 ON T2.game_id = T1.id GROUP BY T1.id HAVING count(*) >= 2;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: What are the id and name of the stadium where the most injury accidents happened? [/INST]
SELECT T1.id , T1.name FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id JOIN injury_accident AS T3 ON T2.id = T3.game_id GROUP BY T1.id ORDER BY count(*) DESC LIMIT 1;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: Find the id and name of the stadium where the largest number of injury accidents occurred. [/INST]
SELECT T1.id , T1.name FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id JOIN injury_accident AS T3 ON T2.id = T3.game_id GROUP BY T1.id ORDER BY count(*) DESC LIMIT 1;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: In which season and which stadium did any player have an injury of 'Foot injury' or 'Knee problem'? [/INST]
SELECT T1.season , T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.injury = 'Foot injury' OR T3.injury = 'Knee problem';
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: How many different kinds of information sources are there for injury accidents? [/INST]
SELECT count(DISTINCT SOURCE) FROM injury_accident;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: How many games are free of injury accidents? [/INST]
SELECT count(*) FROM game WHERE id NOT IN ( SELECT game_id FROM injury_accident );
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: How many distinct kinds of injuries happened after season 2010? [/INST]
SELECT count(DISTINCT T1.injury) FROM injury_accident AS T1 JOIN game AS T2 ON T1.game_id = T2.id WHERE T2.season > 2010;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: List the name of the stadium where both the player 'Walter Samuel' and the player 'Thiago Motta' got injured. [/INST]
SELECT T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.player = 'Walter Samuel' INTERSECT SELECT T2.name FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id WHERE T3.player = 'Thiago Motta';
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: Show the name, average attendance, total attendance for stadiums where no accidents happened. [/INST]
SELECT name , average_attendance , total_attendance FROM stadium EXCEPT SELECT T2.name , T2.average_attendance , T2.total_attendance FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: Which stadium name contains the substring "Bank"? [/INST]
SELECT name FROM stadium WHERE name LIKE "%Bank%";
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: How many games has each stadium held? [/INST]
SELECT T1.id , count(*) FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id GROUP BY T1.id;
Tables: stadium, game, injury_accident Columns: stadium.id, stadium.name, stadium.Home_Games, stadium.Average_Attendance, stadium.Total_Attendance, stadium.Capacity_Percentage, game.stadium_id, game.id, game.Season, game.Date, game.Home_team, game.Away_team, game.Score, game.Competition, injury_accident.game_id, injury_accident.id, injury_accident.Player, injury_accident.Injury, injury_accident.Number_of_matches, injury_accident.Source Question: For each injury accident, find the date of the game and the name of the injured player in the game, and sort the results in descending order of game season. [/INST]
SELECT T1.date , T2.player FROM game AS T1 JOIN injury_accident AS T2 ON T1.id = T2.game_id ORDER BY T1.season DESC;
Tables: Player_Attributes, sqlite_sequence, Player, League, Country, Team, Team_Attributes Columns: Player_Attributes.id, Player_Attributes.player_fifa_api_id, Player_Attributes.player_api_id, Player_Attributes.date, Player_Attributes.overall_rating, Player_Attributes.potential, Player_Attributes.preferred_foot, Player_Attributes.attacking_work_rate, Player_Attributes.defensive_work_rate, Player_Attributes.crossing, Player_Attributes.finishing, Player_Attributes.heading_accuracy, Player_Attributes.short_passing, Player_Attributes.volleys, Player_Attributes.dribbling, Player_Attributes.curve, Player_Attributes.free_kick_accuracy, Player_Attributes.long_passing, Player_Attributes.ball_control, Player_Attributes.acceleration, Player_Attributes.sprint_speed, Player_Attributes.agility, Player_Attributes.reactions, Player_Attributes.balance, Player_Attributes.shot_power, Player_Attributes.jumping, Player_Attributes.stamina, Player_Attributes.strength, Player_Attributes.long_shots, Player_Attributes.aggression, Player_Attributes.interceptions, Player_Attributes.positioning, Player_Attributes.vision, Player_Attributes.penalties, Player_Attributes.marking, Player_Attributes.standing_tackle, Player_Attributes.sliding_tackle, Player_Attributes.gk_diving, Player_Attributes.gk_handling, Player_Attributes.gk_kicking, Player_Attributes.gk_positioning, Player_Attributes.gk_reflexes, sqlite_sequence.name, sqlite_sequence.seq, Player.id, Player.player_api_id, Player.player_name, Player.player_fifa_api_id, Player.birthday, Player.height, Player.weight, League.id, League.country_id, League.name, Country.id, Country.name, Team.id, Team.team_api_id, Team.team_fifa_api_id, Team.team_long_name, Team.team_short_name, Team_Attributes.id, Team_Attributes.team_fifa_api_id, Team_Attributes.team_api_id, Team_Attributes.date, Team_Attributes.buildUpPlaySpeed, Team_Attributes.buildUpPlaySpeedClass, Team_Attributes.buildUpPlayDribbling, Team_Attributes.buildUpPlayDribblingClass, Team_Attributes.buildUpPlayPassing, Team_Attributes.buildUpPlayPassingClass, Team_Attributes.buildUpPlayPositioningClass, Team_Attributes.chanceCreationPassing, Team_Attributes.chanceCreationPassingClass, Team_Attributes.chanceCreationCrossing, Team_Attributes.chanceCreationCrossingClass, Team_Attributes.chanceCreationShooting, Team_Attributes.chanceCreationShootingClass, Team_Attributes.chanceCreationPositioningClass, Team_Attributes.defencePressure, Team_Attributes.defencePressureClass, Team_Attributes.defenceAggression, Team_Attributes.defenceAggressionClass, Team_Attributes.defenceTeamWidth, Team_Attributes.defenceTeamWidthClass, Team_Attributes.defenceDefenderLineClass Question: List all country and league names. [/INST]
SELECT T1.name , T2.name FROM Country AS T1 JOIN League AS T2 ON T1.id = T2.country_id;
Tables: Player_Attributes, sqlite_sequence, Player, League, Country, Team, Team_Attributes Columns: Player_Attributes.id, Player_Attributes.player_fifa_api_id, Player_Attributes.player_api_id, Player_Attributes.date, Player_Attributes.overall_rating, Player_Attributes.potential, Player_Attributes.preferred_foot, Player_Attributes.attacking_work_rate, Player_Attributes.defensive_work_rate, Player_Attributes.crossing, Player_Attributes.finishing, Player_Attributes.heading_accuracy, Player_Attributes.short_passing, Player_Attributes.volleys, Player_Attributes.dribbling, Player_Attributes.curve, Player_Attributes.free_kick_accuracy, Player_Attributes.long_passing, Player_Attributes.ball_control, Player_Attributes.acceleration, Player_Attributes.sprint_speed, Player_Attributes.agility, Player_Attributes.reactions, Player_Attributes.balance, Player_Attributes.shot_power, Player_Attributes.jumping, Player_Attributes.stamina, Player_Attributes.strength, Player_Attributes.long_shots, Player_Attributes.aggression, Player_Attributes.interceptions, Player_Attributes.positioning, Player_Attributes.vision, Player_Attributes.penalties, Player_Attributes.marking, Player_Attributes.standing_tackle, Player_Attributes.sliding_tackle, Player_Attributes.gk_diving, Player_Attributes.gk_handling, Player_Attributes.gk_kicking, Player_Attributes.gk_positioning, Player_Attributes.gk_reflexes, sqlite_sequence.name, sqlite_sequence.seq, Player.id, Player.player_api_id, Player.player_name, Player.player_fifa_api_id, Player.birthday, Player.height, Player.weight, League.id, League.country_id, League.name, Country.id, Country.name, Team.id, Team.team_api_id, Team.team_fifa_api_id, Team.team_long_name, Team.team_short_name, Team_Attributes.id, Team_Attributes.team_fifa_api_id, Team_Attributes.team_api_id, Team_Attributes.date, Team_Attributes.buildUpPlaySpeed, Team_Attributes.buildUpPlaySpeedClass, Team_Attributes.buildUpPlayDribbling, Team_Attributes.buildUpPlayDribblingClass, Team_Attributes.buildUpPlayPassing, Team_Attributes.buildUpPlayPassingClass, Team_Attributes.buildUpPlayPositioningClass, Team_Attributes.chanceCreationPassing, Team_Attributes.chanceCreationPassingClass, Team_Attributes.chanceCreationCrossing, Team_Attributes.chanceCreationCrossingClass, Team_Attributes.chanceCreationShooting, Team_Attributes.chanceCreationShootingClass, Team_Attributes.chanceCreationPositioningClass, Team_Attributes.defencePressure, Team_Attributes.defencePressureClass, Team_Attributes.defenceAggression, Team_Attributes.defenceAggressionClass, Team_Attributes.defenceTeamWidth, Team_Attributes.defenceTeamWidthClass, Team_Attributes.defenceDefenderLineClass Question: How many leagues are there in England? [/INST]
SELECT count(*) FROM Country AS T1 JOIN League AS T2 ON T1.id = T2.country_id WHERE T1.name = "England";
Tables: Player_Attributes, sqlite_sequence, Player, League, Country, Team, Team_Attributes Columns: Player_Attributes.id, Player_Attributes.player_fifa_api_id, Player_Attributes.player_api_id, Player_Attributes.date, Player_Attributes.overall_rating, Player_Attributes.potential, Player_Attributes.preferred_foot, Player_Attributes.attacking_work_rate, Player_Attributes.defensive_work_rate, Player_Attributes.crossing, Player_Attributes.finishing, Player_Attributes.heading_accuracy, Player_Attributes.short_passing, Player_Attributes.volleys, Player_Attributes.dribbling, Player_Attributes.curve, Player_Attributes.free_kick_accuracy, Player_Attributes.long_passing, Player_Attributes.ball_control, Player_Attributes.acceleration, Player_Attributes.sprint_speed, Player_Attributes.agility, Player_Attributes.reactions, Player_Attributes.balance, Player_Attributes.shot_power, Player_Attributes.jumping, Player_Attributes.stamina, Player_Attributes.strength, Player_Attributes.long_shots, Player_Attributes.aggression, Player_Attributes.interceptions, Player_Attributes.positioning, Player_Attributes.vision, Player_Attributes.penalties, Player_Attributes.marking, Player_Attributes.standing_tackle, Player_Attributes.sliding_tackle, Player_Attributes.gk_diving, Player_Attributes.gk_handling, Player_Attributes.gk_kicking, Player_Attributes.gk_positioning, Player_Attributes.gk_reflexes, sqlite_sequence.name, sqlite_sequence.seq, Player.id, Player.player_api_id, Player.player_name, Player.player_fifa_api_id, Player.birthday, Player.height, Player.weight, League.id, League.country_id, League.name, Country.id, Country.name, Team.id, Team.team_api_id, Team.team_fifa_api_id, Team.team_long_name, Team.team_short_name, Team_Attributes.id, Team_Attributes.team_fifa_api_id, Team_Attributes.team_api_id, Team_Attributes.date, Team_Attributes.buildUpPlaySpeed, Team_Attributes.buildUpPlaySpeedClass, Team_Attributes.buildUpPlayDribbling, Team_Attributes.buildUpPlayDribblingClass, Team_Attributes.buildUpPlayPassing, Team_Attributes.buildUpPlayPassingClass, Team_Attributes.buildUpPlayPositioningClass, Team_Attributes.chanceCreationPassing, Team_Attributes.chanceCreationPassingClass, Team_Attributes.chanceCreationCrossing, Team_Attributes.chanceCreationCrossingClass, Team_Attributes.chanceCreationShooting, Team_Attributes.chanceCreationShootingClass, Team_Attributes.chanceCreationPositioningClass, Team_Attributes.defencePressure, Team_Attributes.defencePressureClass, Team_Attributes.defenceAggression, Team_Attributes.defenceAggressionClass, Team_Attributes.defenceTeamWidth, Team_Attributes.defenceTeamWidthClass, Team_Attributes.defenceDefenderLineClass Question: What is the average weight of all players? [/INST]
SELECT avg(weight) FROM Player;
Tables: Player_Attributes, sqlite_sequence, Player, League, Country, Team, Team_Attributes Columns: Player_Attributes.id, Player_Attributes.player_fifa_api_id, Player_Attributes.player_api_id, Player_Attributes.date, Player_Attributes.overall_rating, Player_Attributes.potential, Player_Attributes.preferred_foot, Player_Attributes.attacking_work_rate, Player_Attributes.defensive_work_rate, Player_Attributes.crossing, Player_Attributes.finishing, Player_Attributes.heading_accuracy, Player_Attributes.short_passing, Player_Attributes.volleys, Player_Attributes.dribbling, Player_Attributes.curve, Player_Attributes.free_kick_accuracy, Player_Attributes.long_passing, Player_Attributes.ball_control, Player_Attributes.acceleration, Player_Attributes.sprint_speed, Player_Attributes.agility, Player_Attributes.reactions, Player_Attributes.balance, Player_Attributes.shot_power, Player_Attributes.jumping, Player_Attributes.stamina, Player_Attributes.strength, Player_Attributes.long_shots, Player_Attributes.aggression, Player_Attributes.interceptions, Player_Attributes.positioning, Player_Attributes.vision, Player_Attributes.penalties, Player_Attributes.marking, Player_Attributes.standing_tackle, Player_Attributes.sliding_tackle, Player_Attributes.gk_diving, Player_Attributes.gk_handling, Player_Attributes.gk_kicking, Player_Attributes.gk_positioning, Player_Attributes.gk_reflexes, sqlite_sequence.name, sqlite_sequence.seq, Player.id, Player.player_api_id, Player.player_name, Player.player_fifa_api_id, Player.birthday, Player.height, Player.weight, League.id, League.country_id, League.name, Country.id, Country.name, Team.id, Team.team_api_id, Team.team_fifa_api_id, Team.team_long_name, Team.team_short_name, Team_Attributes.id, Team_Attributes.team_fifa_api_id, Team_Attributes.team_api_id, Team_Attributes.date, Team_Attributes.buildUpPlaySpeed, Team_Attributes.buildUpPlaySpeedClass, Team_Attributes.buildUpPlayDribbling, Team_Attributes.buildUpPlayDribblingClass, Team_Attributes.buildUpPlayPassing, Team_Attributes.buildUpPlayPassingClass, Team_Attributes.buildUpPlayPositioningClass, Team_Attributes.chanceCreationPassing, Team_Attributes.chanceCreationPassingClass, Team_Attributes.chanceCreationCrossing, Team_Attributes.chanceCreationCrossingClass, Team_Attributes.chanceCreationShooting, Team_Attributes.chanceCreationShootingClass, Team_Attributes.chanceCreationPositioningClass, Team_Attributes.defencePressure, Team_Attributes.defencePressureClass, Team_Attributes.defenceAggression, Team_Attributes.defenceAggressionClass, Team_Attributes.defenceTeamWidth, Team_Attributes.defenceTeamWidthClass, Team_Attributes.defenceDefenderLineClass Question: What is the maximum and minimum height of all players? [/INST]
SELECT max(weight) , min(weight) FROM Player;
Tables: Player_Attributes, sqlite_sequence, Player, League, Country, Team, Team_Attributes Columns: Player_Attributes.id, Player_Attributes.player_fifa_api_id, Player_Attributes.player_api_id, Player_Attributes.date, Player_Attributes.overall_rating, Player_Attributes.potential, Player_Attributes.preferred_foot, Player_Attributes.attacking_work_rate, Player_Attributes.defensive_work_rate, Player_Attributes.crossing, Player_Attributes.finishing, Player_Attributes.heading_accuracy, Player_Attributes.short_passing, Player_Attributes.volleys, Player_Attributes.dribbling, Player_Attributes.curve, Player_Attributes.free_kick_accuracy, Player_Attributes.long_passing, Player_Attributes.ball_control, Player_Attributes.acceleration, Player_Attributes.sprint_speed, Player_Attributes.agility, Player_Attributes.reactions, Player_Attributes.balance, Player_Attributes.shot_power, Player_Attributes.jumping, Player_Attributes.stamina, Player_Attributes.strength, Player_Attributes.long_shots, Player_Attributes.aggression, Player_Attributes.interceptions, Player_Attributes.positioning, Player_Attributes.vision, Player_Attributes.penalties, Player_Attributes.marking, Player_Attributes.standing_tackle, Player_Attributes.sliding_tackle, Player_Attributes.gk_diving, Player_Attributes.gk_handling, Player_Attributes.gk_kicking, Player_Attributes.gk_positioning, Player_Attributes.gk_reflexes, sqlite_sequence.name, sqlite_sequence.seq, Player.id, Player.player_api_id, Player.player_name, Player.player_fifa_api_id, Player.birthday, Player.height, Player.weight, League.id, League.country_id, League.name, Country.id, Country.name, Team.id, Team.team_api_id, Team.team_fifa_api_id, Team.team_long_name, Team.team_short_name, Team_Attributes.id, Team_Attributes.team_fifa_api_id, Team_Attributes.team_api_id, Team_Attributes.date, Team_Attributes.buildUpPlaySpeed, Team_Attributes.buildUpPlaySpeedClass, Team_Attributes.buildUpPlayDribbling, Team_Attributes.buildUpPlayDribblingClass, Team_Attributes.buildUpPlayPassing, Team_Attributes.buildUpPlayPassingClass, Team_Attributes.buildUpPlayPositioningClass, Team_Attributes.chanceCreationPassing, Team_Attributes.chanceCreationPassingClass, Team_Attributes.chanceCreationCrossing, Team_Attributes.chanceCreationCrossingClass, Team_Attributes.chanceCreationShooting, Team_Attributes.chanceCreationShootingClass, Team_Attributes.chanceCreationPositioningClass, Team_Attributes.defencePressure, Team_Attributes.defencePressureClass, Team_Attributes.defenceAggression, Team_Attributes.defenceAggressionClass, Team_Attributes.defenceTeamWidth, Team_Attributes.defenceTeamWidthClass, Team_Attributes.defenceDefenderLineClass Question: List all player names who have an overall rating higher than the average. [/INST]
SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.overall_rating > ( SELECT avg(overall_rating) FROM Player_Attributes );
Tables: Player_Attributes, sqlite_sequence, Player, League, Country, Team, Team_Attributes Columns: Player_Attributes.id, Player_Attributes.player_fifa_api_id, Player_Attributes.player_api_id, Player_Attributes.date, Player_Attributes.overall_rating, Player_Attributes.potential, Player_Attributes.preferred_foot, Player_Attributes.attacking_work_rate, Player_Attributes.defensive_work_rate, Player_Attributes.crossing, Player_Attributes.finishing, Player_Attributes.heading_accuracy, Player_Attributes.short_passing, Player_Attributes.volleys, Player_Attributes.dribbling, Player_Attributes.curve, Player_Attributes.free_kick_accuracy, Player_Attributes.long_passing, Player_Attributes.ball_control, Player_Attributes.acceleration, Player_Attributes.sprint_speed, Player_Attributes.agility, Player_Attributes.reactions, Player_Attributes.balance, Player_Attributes.shot_power, Player_Attributes.jumping, Player_Attributes.stamina, Player_Attributes.strength, Player_Attributes.long_shots, Player_Attributes.aggression, Player_Attributes.interceptions, Player_Attributes.positioning, Player_Attributes.vision, Player_Attributes.penalties, Player_Attributes.marking, Player_Attributes.standing_tackle, Player_Attributes.sliding_tackle, Player_Attributes.gk_diving, Player_Attributes.gk_handling, Player_Attributes.gk_kicking, Player_Attributes.gk_positioning, Player_Attributes.gk_reflexes, sqlite_sequence.name, sqlite_sequence.seq, Player.id, Player.player_api_id, Player.player_name, Player.player_fifa_api_id, Player.birthday, Player.height, Player.weight, League.id, League.country_id, League.name, Country.id, Country.name, Team.id, Team.team_api_id, Team.team_fifa_api_id, Team.team_long_name, Team.team_short_name, Team_Attributes.id, Team_Attributes.team_fifa_api_id, Team_Attributes.team_api_id, Team_Attributes.date, Team_Attributes.buildUpPlaySpeed, Team_Attributes.buildUpPlaySpeedClass, Team_Attributes.buildUpPlayDribbling, Team_Attributes.buildUpPlayDribblingClass, Team_Attributes.buildUpPlayPassing, Team_Attributes.buildUpPlayPassingClass, Team_Attributes.buildUpPlayPositioningClass, Team_Attributes.chanceCreationPassing, Team_Attributes.chanceCreationPassingClass, Team_Attributes.chanceCreationCrossing, Team_Attributes.chanceCreationCrossingClass, Team_Attributes.chanceCreationShooting, Team_Attributes.chanceCreationShootingClass, Team_Attributes.chanceCreationPositioningClass, Team_Attributes.defencePressure, Team_Attributes.defencePressureClass, Team_Attributes.defenceAggression, Team_Attributes.defenceAggressionClass, Team_Attributes.defenceTeamWidth, Team_Attributes.defenceTeamWidthClass, Team_Attributes.defenceDefenderLineClass Question: What are the names of players who have the best dribbling? [/INST]
SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.dribbling = ( SELECT max(overall_rating) FROM Player_Attributes);
Tables: Player_Attributes, sqlite_sequence, Player, League, Country, Team, Team_Attributes Columns: Player_Attributes.id, Player_Attributes.player_fifa_api_id, Player_Attributes.player_api_id, Player_Attributes.date, Player_Attributes.overall_rating, Player_Attributes.potential, Player_Attributes.preferred_foot, Player_Attributes.attacking_work_rate, Player_Attributes.defensive_work_rate, Player_Attributes.crossing, Player_Attributes.finishing, Player_Attributes.heading_accuracy, Player_Attributes.short_passing, Player_Attributes.volleys, Player_Attributes.dribbling, Player_Attributes.curve, Player_Attributes.free_kick_accuracy, Player_Attributes.long_passing, Player_Attributes.ball_control, Player_Attributes.acceleration, Player_Attributes.sprint_speed, Player_Attributes.agility, Player_Attributes.reactions, Player_Attributes.balance, Player_Attributes.shot_power, Player_Attributes.jumping, Player_Attributes.stamina, Player_Attributes.strength, Player_Attributes.long_shots, Player_Attributes.aggression, Player_Attributes.interceptions, Player_Attributes.positioning, Player_Attributes.vision, Player_Attributes.penalties, Player_Attributes.marking, Player_Attributes.standing_tackle, Player_Attributes.sliding_tackle, Player_Attributes.gk_diving, Player_Attributes.gk_handling, Player_Attributes.gk_kicking, Player_Attributes.gk_positioning, Player_Attributes.gk_reflexes, sqlite_sequence.name, sqlite_sequence.seq, Player.id, Player.player_api_id, Player.player_name, Player.player_fifa_api_id, Player.birthday, Player.height, Player.weight, League.id, League.country_id, League.name, Country.id, Country.name, Team.id, Team.team_api_id, Team.team_fifa_api_id, Team.team_long_name, Team.team_short_name, Team_Attributes.id, Team_Attributes.team_fifa_api_id, Team_Attributes.team_api_id, Team_Attributes.date, Team_Attributes.buildUpPlaySpeed, Team_Attributes.buildUpPlaySpeedClass, Team_Attributes.buildUpPlayDribbling, Team_Attributes.buildUpPlayDribblingClass, Team_Attributes.buildUpPlayPassing, Team_Attributes.buildUpPlayPassingClass, Team_Attributes.buildUpPlayPositioningClass, Team_Attributes.chanceCreationPassing, Team_Attributes.chanceCreationPassingClass, Team_Attributes.chanceCreationCrossing, Team_Attributes.chanceCreationCrossingClass, Team_Attributes.chanceCreationShooting, Team_Attributes.chanceCreationShootingClass, Team_Attributes.chanceCreationPositioningClass, Team_Attributes.defencePressure, Team_Attributes.defencePressureClass, Team_Attributes.defenceAggression, Team_Attributes.defenceAggressionClass, Team_Attributes.defenceTeamWidth, Team_Attributes.defenceTeamWidthClass, Team_Attributes.defenceDefenderLineClass Question: List the names of all players who have a crossing score higher than 90 and prefer their right foot. [/INST]
SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.crossing > 90 AND T2.preferred_foot = "right";