training_input
stringlengths
118
1.06k
###context:CREATE TABLE customers (customer_type_code VARCHAR) ###human: How many customers are there in the customer type with the most customers? ###assistant: SELECT COUNT(*) FROM customers GROUP BY customer_type_code ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE staff (last_name VARCHAR, staff_id VARCHAR); CREATE TABLE complaints (staff_id VARCHAR, date_complaint_raised VARCHAR) ###human: What is the last name of the staff who has handled the first ever complaint? ###assistant: SELECT t1.last_name FROM staff AS t1 JOIN complaints AS t2 ON t1.staff_id = t2.staff_id ORDER BY t2.date_complaint_raised LIMIT 1
###context:CREATE TABLE complaints (complaint_type_code VARCHAR) ###human: How many distinct complaint type codes are there in the database? ###assistant: SELECT COUNT(DISTINCT complaint_type_code) FROM complaints
###context:CREATE TABLE customers (address_line_1 VARCHAR, address_line_2 VARCHAR, email_address VARCHAR) ###human: Find the address line 1 and 2 of the customer with email "[email protected]". ###assistant: SELECT address_line_1, address_line_2 FROM customers WHERE email_address = "[email protected]"
###context:CREATE TABLE complaints (complaint_status_code VARCHAR, complaint_type_code VARCHAR) ###human: Find the number of complaints with Product Failure type for each complaint status. ###assistant: SELECT complaint_status_code, COUNT(*) FROM complaints WHERE complaint_type_code = "Product Failure" GROUP BY complaint_status_code
###context:CREATE TABLE complaints (staff_id VARCHAR); CREATE TABLE staff (first_name VARCHAR, staff_id VARCHAR) ###human: What is first names of the top 5 staff who have handled the greatest number of complaints? ###assistant: SELECT t1.first_name FROM staff AS t1 JOIN complaints AS t2 ON t1.staff_id = t2.staff_id GROUP BY t2.staff_id ORDER BY COUNT(*) LIMIT 5
###context:CREATE TABLE customers (state VARCHAR) ###human: Which state has the most customers? ###assistant: SELECT state FROM customers GROUP BY state ORDER BY COUNT(*) LIMIT 1
###context:CREATE TABLE submission (Id VARCHAR) ###human: How many submissions are there? ###assistant: SELECT COUNT(*) FROM submission
###context:CREATE TABLE submission (Author VARCHAR, Scores VARCHAR) ###human: List the authors of submissions in ascending order of scores. ###assistant: SELECT Author FROM submission ORDER BY Scores
###context:CREATE TABLE submission (Author VARCHAR, College VARCHAR) ###human: What are the authors of submissions and their colleges? ###assistant: SELECT Author, College FROM submission
###context:CREATE TABLE submission (Author VARCHAR, College VARCHAR) ###human: Show the names of authors from college "Florida" or "Temple" ###assistant: SELECT Author FROM submission WHERE College = "Florida" OR College = "Temple"
###context:CREATE TABLE submission (Scores INTEGER) ###human: What is the average score of submissions? ###assistant: SELECT AVG(Scores) FROM submission
###context:CREATE TABLE submission (Author VARCHAR, Scores VARCHAR) ###human: What is the author of the submission with the highest score? ###assistant: SELECT Author FROM submission ORDER BY Scores DESC LIMIT 1
###context:CREATE TABLE submission (College VARCHAR) ###human: Show different colleges along with the number of authors of submission from each college. ###assistant: SELECT College, COUNT(*) FROM submission GROUP BY College
###context:CREATE TABLE submission (College VARCHAR) ###human: Show the most common college of authors of submissions. ###assistant: SELECT College FROM submission GROUP BY College ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE submission (College VARCHAR, Scores INTEGER) ###human: Show the colleges that have both authors with submission score larger than 90 and authors with submission score smaller than 80. ###assistant: SELECT College FROM submission WHERE Scores > 90 INTERSECT SELECT College FROM submission WHERE Scores < 80
###context:CREATE TABLE acceptance (Result VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR) ###human: Show the authors of submissions and the acceptance results of their submissions. ###assistant: SELECT T2.Author, T1.Result FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID
###context:CREATE TABLE acceptance (Result VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Submission_ID VARCHAR, Scores VARCHAR) ###human: Show the result of the submission with the highest score. ###assistant: SELECT T1.Result FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID ORDER BY T2.Scores DESC LIMIT 1
###context:CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE acceptance (workshop_id VARCHAR, Submission_ID VARCHAR) ###human: Show each author and the number of workshops they submitted to. ###assistant: SELECT T2.Author, COUNT(DISTINCT T1.workshop_id) FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID GROUP BY T2.Author
###context:CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE acceptance (Submission_ID VARCHAR, workshop_id VARCHAR) ###human: Show the authors who have submissions to more than one workshop. ###assistant: SELECT T2.Author FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID GROUP BY T2.Author HAVING COUNT(DISTINCT T1.workshop_id) > 1
###context:CREATE TABLE workshop (Date VARCHAR, Venue VARCHAR) ###human: Show the date and venue of each workshop in ascending alphabetical order of the venue. ###assistant: SELECT Date, Venue FROM workshop ORDER BY Venue
###context:CREATE TABLE acceptance (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR) ###human: List the authors who do not have submission to any workshop. ###assistant: SELECT Author FROM submission WHERE NOT Submission_ID IN (SELECT Submission_ID FROM acceptance)
###context:CREATE TABLE INVESTORS (Id VARCHAR) ###human: Find the number of investors in total. ###assistant: SELECT COUNT(*) FROM INVESTORS
###context:CREATE TABLE INVESTORS (Investor_details VARCHAR) ###human: Show all investor details. ###assistant: SELECT Investor_details FROM INVESTORS
###context:CREATE TABLE LOTS (lot_details VARCHAR) ###human: Show all distinct lot details. ###assistant: SELECT DISTINCT lot_details FROM LOTS
###context:CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER) ###human: Show the maximum amount of transaction. ###assistant: SELECT MAX(amount_of_transaction) FROM TRANSACTIONS
###context:CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR) ###human: Show all date and share count of transactions. ###assistant: SELECT date_of_transaction, share_count FROM TRANSACTIONS
###context:CREATE TABLE TRANSACTIONS (share_count INTEGER) ###human: What is the total share of transactions? ###assistant: SELECT SUM(share_count) FROM TRANSACTIONS
###context:CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, transaction_type_code VARCHAR) ###human: Show all transaction ids with transaction code 'PUR'. ###assistant: SELECT transaction_id FROM TRANSACTIONS WHERE transaction_type_code = 'PUR'
###context:CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, transaction_type_code VARCHAR) ###human: Show all dates of transactions whose type code is "SALE". ###assistant: SELECT date_of_transaction FROM TRANSACTIONS WHERE transaction_type_code = "SALE"
###context:CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER, transaction_type_code VARCHAR) ###human: Show the average amount of transactions with type code "SALE". ###assistant: SELECT AVG(amount_of_transaction) FROM TRANSACTIONS WHERE transaction_type_code = "SALE"
###context:CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR) ###human: Show the description of transaction type with code "PUR". ###assistant: SELECT transaction_type_description FROM Ref_Transaction_Types WHERE transaction_type_code = "PUR"
###context:CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER, transaction_type_code VARCHAR, share_count VARCHAR) ###human: Show the minimum amount of transactions whose type code is "PUR" and whose share count is bigger than 50. ###assistant: SELECT MIN(amount_of_transaction) FROM TRANSACTIONS WHERE transaction_type_code = "PUR" AND share_count > 50
###context:CREATE TABLE TRANSACTIONS (share_count INTEGER, amount_of_transaction INTEGER) ###human: Show the maximum share count of transactions where the amount is smaller than 10000 ###assistant: SELECT MAX(share_count) FROM TRANSACTIONS WHERE amount_of_transaction < 10000
###context:CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR, amount_of_transaction VARCHAR) ###human: Show the dates of transactions if the share count is bigger than 100 or the amount is bigger than 1000. ###assistant: SELECT date_of_transaction FROM TRANSACTIONS WHERE share_count > 100 OR amount_of_transaction > 1000
###context:CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR); CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, transaction_type_code VARCHAR, share_count INTEGER) ###human: Show the transaction type descriptions and dates if the share count is smaller than 10. ###assistant: SELECT T1.transaction_type_description, T2.date_of_transaction FROM Ref_Transaction_Types AS T1 JOIN TRANSACTIONS AS T2 ON T1.transaction_type_code = T2.transaction_type_code WHERE T2.share_count < 10
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR) ###human: Show details of all investors if they make any transaction with share count greater than 100. ###assistant: SELECT T1.Investor_details FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id WHERE T2.share_count > 100
###context:CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR) ###human: How many distinct transaction types are used in the transactions? ###assistant: SELECT COUNT(DISTINCT transaction_type_code) FROM TRANSACTIONS
###context:CREATE TABLE LOTS (lot_details VARCHAR, investor_id VARCHAR) ###human: Return the lot details and investor ids. ###assistant: SELECT lot_details, investor_id FROM LOTS
###context:CREATE TABLE LOTS (lot_details VARCHAR, investor_id VARCHAR); CREATE TABLE INVESTORS (investor_id VARCHAR, Investor_details VARCHAR) ###human: Return the lot details of lots that belong to investors with details "l"? ###assistant: SELECT T2.lot_details FROM INVESTORS AS T1 JOIN LOTS AS T2 ON T1.investor_id = T2.investor_id WHERE T1.Investor_details = "l"
###context:CREATE TABLE PURCHASES (purchase_details VARCHAR, purchase_transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, amount_of_transaction INTEGER) ###human: What are the purchase details of transactions with amount bigger than 10000? ###assistant: SELECT T1.purchase_details FROM PURCHASES AS T1 JOIN TRANSACTIONS AS T2 ON T1.purchase_transaction_id = T2.transaction_id WHERE T2.amount_of_transaction > 10000
###context:CREATE TABLE SALES (sales_details VARCHAR, sales_transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, transaction_id VARCHAR, amount_of_transaction INTEGER) ###human: What are the sale details and dates of transactions with amount smaller than 3000? ###assistant: SELECT T1.sales_details, T2.date_of_transaction FROM SALES AS T1 JOIN TRANSACTIONS AS T2 ON T1.sales_transaction_id = T2.transaction_id WHERE T2.amount_of_transaction < 3000
###context:CREATE TABLE LOTS (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE TRANSACTIONS_LOTS (transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, share_count INTEGER) ###human: What are the lot details of lots associated with transactions with share count smaller than 50? ###assistant: SELECT T1.lot_details FROM LOTS AS T1 JOIN TRANSACTIONS_LOTS AS T2 ON T1.lot_id = T2.transaction_id JOIN TRANSACTIONS AS T3 ON T2.transaction_id = T3.transaction_id WHERE T3.share_count < 50
###context:CREATE TABLE LOTS (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE TRANSACTIONS_LOTS (transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, share_count VARCHAR, transaction_type_code VARCHAR) ###human: What are the lot details of lots associated with transactions whose share count is bigger than 100 and whose type code is "PUR"? ###assistant: SELECT T1.lot_details FROM LOTS AS T1 JOIN TRANSACTIONS_LOTS AS T2 ON T1.lot_id = T2.transaction_id JOIN TRANSACTIONS AS T3 ON T2.transaction_id = T3.transaction_id WHERE T3.share_count > 100 AND T3.transaction_type_code = "PUR"
###context:CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR, amount_of_transaction INTEGER) ###human: Show the average transaction amount for different transaction types. ###assistant: SELECT transaction_type_code, AVG(amount_of_transaction) FROM TRANSACTIONS GROUP BY transaction_type_code
###context:CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR, share_count INTEGER) ###human: Show the maximum and minimum share count of different transaction types. ###assistant: SELECT transaction_type_code, MAX(share_count), MIN(share_count) FROM TRANSACTIONS GROUP BY transaction_type_code
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER) ###human: Show the average share count of transactions for different investors. ###assistant: SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER) ###human: Show the average share count of transactions each each investor, ordered by average share count. ###assistant: SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id ORDER BY AVG(share_count)
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR, amount_of_transaction INTEGER) ###human: Show the average amount of transactions for different investors. ###assistant: SELECT investor_id, AVG(amount_of_transaction) FROM TRANSACTIONS GROUP BY investor_id
###context:CREATE TABLE TRANSACTIONS (transaction_id VARCHAR); CREATE TABLE Transactions_Lots (lot_id VARCHAR, transaction_id VARCHAR) ###human: Show the average amount of transactions for different lots. ###assistant: SELECT T2.lot_id, AVG(amount_of_transaction) FROM TRANSACTIONS AS T1 JOIN Transactions_Lots AS T2 ON T1.transaction_id = T2.transaction_id GROUP BY T2.lot_id
###context:CREATE TABLE TRANSACTIONS (transaction_id VARCHAR); CREATE TABLE Transactions_Lots (lot_id VARCHAR, transaction_id VARCHAR) ###human: Show the average amount of transactions for different lots, ordered by average amount of transactions. ###assistant: SELECT T2.lot_id, AVG(amount_of_transaction) FROM TRANSACTIONS AS T1 JOIN Transactions_Lots AS T2 ON T1.transaction_id = T2.transaction_id GROUP BY T2.lot_id ORDER BY AVG(amount_of_transaction)
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR, transaction_type_code VARCHAR) ###human: Show the number of transactions with transaction type code "SALE" for different investors if it is larger than 0. ###assistant: SELECT investor_id, COUNT(*) FROM TRANSACTIONS WHERE transaction_type_code = "SALE" GROUP BY investor_id
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR) ###human: Show the number of transactions for different investors. ###assistant: SELECT investor_id, COUNT(*) FROM TRANSACTIONS GROUP BY investor_id
###context:CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR) ###human: Show the transaction type code that occurs the fewest times. ###assistant: SELECT transaction_type_code FROM TRANSACTIONS GROUP BY transaction_type_code ORDER BY COUNT(*) LIMIT 1
###context:CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR) ###human: Show the transaction type code that occurs the most frequently. ###assistant: SELECT transaction_type_code FROM TRANSACTIONS GROUP BY transaction_type_code ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR); CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR) ###human: Show the description of the transaction type that occurs most frequently. ###assistant: SELECT T1.transaction_type_description FROM Ref_Transaction_Types AS T1 JOIN TRANSACTIONS AS T2 ON T1.transaction_type_code = T2.transaction_type_code GROUP BY T1.transaction_type_code ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR) ###human: Show the id and details of the investor that has the largest number of transactions. ###assistant: SELECT T2.investor_id, T1.Investor_details FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id GROUP BY T2.investor_id ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR) ###human: Show the id and details for the investors who have the top 3 number of transactions. ###assistant: SELECT T2.investor_id, T1.Investor_details FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id GROUP BY T2.investor_id ORDER BY COUNT(*) DESC LIMIT 3
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (investor_id VARCHAR) ###human: Show the ids of the investors who have at least two transactions. ###assistant: SELECT T2.investor_id FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id GROUP BY T2.investor_id HAVING COUNT(*) >= 2
###context:CREATE TABLE TRANSACTIONS (investor_id VARCHAR, transaction_type_code VARCHAR); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR) ###human: Show the ids and details of the investors who have at least two transactions with type code "SALE". ###assistant: SELECT T2.investor_id, T1.Investor_details FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id WHERE T2.transaction_type_code = "SALE" GROUP BY T2.investor_id HAVING COUNT(*) >= 2
###context:CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR, amount_of_transaction VARCHAR) ###human: What are the dates of transactions with at least 100 share count or amount bigger than 100? ###assistant: SELECT date_of_transaction FROM TRANSACTIONS WHERE share_count >= 100 OR amount_of_transaction >= 100
###context:CREATE TABLE purchases (sales_details VARCHAR, purchase_details VARCHAR); CREATE TABLE sales (sales_details VARCHAR, purchase_details VARCHAR) ###human: What are the details of all sales and purchases? ###assistant: SELECT sales_details FROM sales UNION SELECT purchase_details FROM purchases
###context:CREATE TABLE Lots (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE Lots (lot_details VARCHAR); CREATE TABLE transactions_lots (lot_id VARCHAR) ###human: What are the details of the lots which are not used in any transactions? ###assistant: SELECT lot_details FROM Lots EXCEPT SELECT T1.lot_details FROM Lots AS T1 JOIN transactions_lots AS T2 ON T1.lot_id = T2.lot_id
###context:CREATE TABLE HOTELS (Id VARCHAR) ###human: How many available hotels are there in total? ###assistant: SELECT COUNT(*) FROM HOTELS
###context:CREATE TABLE HOTELS (price_range VARCHAR) ###human: What are the price ranges of hotels? ###assistant: SELECT price_range FROM HOTELS
###context:CREATE TABLE LOCATIONS (Location_Name VARCHAR) ###human: Show all distinct location names. ###assistant: SELECT DISTINCT Location_Name FROM LOCATIONS
###context:CREATE TABLE Staff (Name VARCHAR, Other_Details VARCHAR) ###human: Show the names and details of all the staff members. ###assistant: SELECT Name, Other_Details FROM Staff
###context:CREATE TABLE VISITORS (Tourist_Details VARCHAR) ###human: Show details of all visitors. ###assistant: SELECT Tourist_Details FROM VISITORS
###context:CREATE TABLE HOTELS (price_range VARCHAR, star_rating_code VARCHAR) ###human: Show the price ranges of hotels with 5 star ratings. ###assistant: SELECT price_range FROM HOTELS WHERE star_rating_code = "5"
###context:CREATE TABLE HOTELS (price_range INTEGER, star_rating_code VARCHAR, pets_allowed_yn VARCHAR) ###human: Show the average price range of hotels that have 5 star ratings and allow pets. ###assistant: SELECT AVG(price_range) FROM HOTELS WHERE star_rating_code = "5" AND pets_allowed_yn = 1
###context:CREATE TABLE LOCATIONS (Address VARCHAR, Location_Name VARCHAR) ###human: What is the address of the location "UK Gallery"? ###assistant: SELECT Address FROM LOCATIONS WHERE Location_Name = "UK Gallery"
###context:CREATE TABLE LOCATIONS (Other_Details VARCHAR, Location_Name VARCHAR) ###human: What is the detail of the location UK Gallery? ###assistant: SELECT Other_Details FROM LOCATIONS WHERE Location_Name = "UK Gallery"
###context:CREATE TABLE LOCATIONS (Location_Name VARCHAR) ###human: Which location names contain the word "film"? ###assistant: SELECT Location_Name FROM LOCATIONS WHERE Location_Name LIKE "%film%"
###context:CREATE TABLE PHOTOS (Name VARCHAR) ###human: How many distinct names are associated with all the photos? ###assistant: SELECT COUNT(DISTINCT Name) FROM PHOTOS
###context:CREATE TABLE VISITS (Visit_Date VARCHAR) ###human: What are the distinct visit dates? ###assistant: SELECT DISTINCT Visit_Date FROM VISITS
###context:CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, How_to_Get_There VARCHAR) ###human: What are the names of the tourist attractions that can be accessed by bus? ###assistant: SELECT Name FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = "bus"
###context:CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, Opening_Hours VARCHAR, How_to_Get_There VARCHAR) ###human: What are the names and opening hours of the tourist attractions that can be accessed by bus or walk? ###assistant: SELECT Name, Opening_Hours FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = "bus" OR How_to_Get_There = "walk"
###context:CREATE TABLE HOTELS (star_rating_code VARCHAR, price_range INTEGER); CREATE TABLE Ref_Hotel_Star_Ratings (star_rating_description VARCHAR, star_rating_code VARCHAR) ###human: What are the star rating descriptions of the hotels with price above 10000? ###assistant: SELECT T2.star_rating_description FROM HOTELS AS T1 JOIN Ref_Hotel_Star_Ratings AS T2 ON T1.star_rating_code = T2.star_rating_code WHERE T1.price_range > 10000
###context:CREATE TABLE TOURIST_ATTRACTIONS (Opening_Hours VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE MUSEUMS (Museum_Details VARCHAR, Museum_ID VARCHAR) ###human: What are the details and opening hours of the museums? ###assistant: SELECT T1.Museum_Details, T2.Opening_Hours FROM MUSEUMS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Museum_ID = T2.Tourist_Attraction_ID
###context:CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE PHOTOS (Tourist_Attraction_ID VARCHAR, Name VARCHAR) ###human: What is the name of the tourist attraction that is associated with the photo "game1"? ###assistant: SELECT T2.Name FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T1.Name = "game1"
###context:CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, Name VARCHAR); CREATE TABLE PHOTOS (Name VARCHAR, Description VARCHAR, Tourist_Attraction_ID VARCHAR) ###human: What are the names and descriptions of the photos taken at the tourist attraction "film festival"? ###assistant: SELECT T1.Name, T1.Description FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T2.Name = "film festival"
###context:CREATE TABLE TOURIST_ATTRACTIONS (How_to_Get_There VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE ROYAL_FAMILY (Royal_Family_Details VARCHAR, Royal_Family_ID VARCHAR) ###human: What are the details and ways to get to tourist attractions related to royal family? ###assistant: SELECT T1.Royal_Family_Details, T2.How_to_Get_There FROM ROYAL_FAMILY AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Royal_Family_ID = T2.Tourist_Attraction_ID
###context:CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE SHOPS (Shop_Details VARCHAR, Shop_ID VARCHAR) ###human: What are the details of the shops that can be accessed by walk? ###assistant: SELECT T1.Shop_Details FROM SHOPS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Shop_ID = T2.Tourist_Attraction_ID WHERE T2.How_to_Get_There = "walk"
###context:CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, Name VARCHAR); CREATE TABLE STAFF (Name VARCHAR, Tourist_Attraction_ID VARCHAR) ###human: What is the name of the staff that is in charge of the attraction named "US museum"? ###assistant: SELECT T1.Name FROM STAFF AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T2.Name = "US museum"
###context:CREATE TABLE Street_Markets (Market_Details VARCHAR, Market_ID VARCHAR); CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, How_to_Get_There VARCHAR) ###human: What are the details of the markets that can be accessed by walk or bus? ###assistant: SELECT T1.Market_Details FROM Street_Markets AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Market_ID = T2.Tourist_Attraction_ID WHERE T2.How_to_Get_There = "walk" OR T2.How_to_Get_There = "bus"
###context:CREATE TABLE VISITORS (Tourist_ID VARCHAR, Tourist_Details VARCHAR); CREATE TABLE VISITS (Visit_Date VARCHAR, Visit_Details VARCHAR, Tourist_ID VARCHAR) ###human: What are the visit date and details of the visitor whose detail is 'Vincent'? ###assistant: SELECT T2.Visit_Date, T2.Visit_Details FROM VISITORS AS T1 JOIN VISITS AS T2 ON T1.Tourist_ID = T2.Tourist_ID WHERE T1.Tourist_Details = "Vincent"
###context:CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_ID VARCHAR, Tourist_Details VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR) ###human: Which tourist attractions does the visitor with detail 'Vincent' visit? ###assistant: SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID JOIN VISITORS AS T3 ON T2.Tourist_ID = T3.Tourist_ID WHERE T3.Tourist_Details = "Vincent"
###context:CREATE TABLE VISITORS (Tourist_ID VARCHAR, Tourist_Details VARCHAR); CREATE TABLE VISITS (Visit_Date VARCHAR, Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR) ###human: What are the names of the tourist attractions and the dates when the tourists named Vincent or Vivian visited there? ###assistant: SELECT T1.Name, T3.Visit_Date FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Vincent" OR T2.Tourist_Details = "Vivian"
###context:CREATE TABLE HOTELS (star_rating_code VARCHAR, price_range INTEGER) ###human: Show the average price of hotels for each star rating code. ###assistant: SELECT star_rating_code, AVG(price_range) FROM HOTELS GROUP BY star_rating_code
###context:CREATE TABLE HOTELS (pets_allowed_yn VARCHAR, price_range INTEGER) ###human: Show the average price of hotels for different pet policy. ###assistant: SELECT pets_allowed_yn, AVG(price_range) FROM HOTELS GROUP BY pets_allowed_yn
###context:CREATE TABLE HOTELS (hotel_id VARCHAR, star_rating_code VARCHAR, price_range VARCHAR) ###human: Show the id and star rating of each hotel, ordered by its price from low to high. ###assistant: SELECT hotel_id, star_rating_code FROM HOTELS ORDER BY price_range
###context:CREATE TABLE HOTELS (other_hotel_details VARCHAR, price_range VARCHAR) ###human: Show the details of the top 3 most expensive hotels. ###assistant: SELECT other_hotel_details FROM HOTELS ORDER BY price_range DESC LIMIT 3
###context:CREATE TABLE HOTELS (other_hotel_details VARCHAR, star_rating_code VARCHAR, price_range VARCHAR) ###human: Show the details and star ratings of the 3 least expensive hotels. ###assistant: SELECT other_hotel_details, star_rating_code FROM HOTELS ORDER BY price_range LIMIT 3
###context:CREATE TABLE Tourist_Attractions (How_to_Get_There VARCHAR) ###human: Show the transportation method most people choose to get to tourist attractions. ###assistant: SELECT How_to_Get_There FROM Tourist_Attractions GROUP BY How_to_Get_There ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE Ref_Attraction_Types (Attraction_Type_Description VARCHAR, Attraction_Type_Code VARCHAR); CREATE TABLE Tourist_Attractions (Attraction_Type_Code VARCHAR) ###human: Show the description and code of the attraction type most tourist attractions belong to. ###assistant: SELECT T1.Attraction_Type_Description, T2.Attraction_Type_Code FROM Ref_Attraction_Types AS T1 JOIN Tourist_Attractions AS T2 ON T1.Attraction_Type_Code = T2.Attraction_Type_Code GROUP BY T2.Attraction_Type_Code ORDER BY COUNT(*) DESC LIMIT 1
###context:CREATE TABLE Tourist_Attractions (How_to_Get_There VARCHAR) ###human: Show different ways to get to attractions and the number of attractions that can be accessed in the corresponding way. ###assistant: SELECT How_to_Get_There, COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There
###context:CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR) ###human: Show different tourist attractions' names, ids, and the corresponding number of visits. ###assistant: SELECT T1.Name, T2.Tourist_Attraction_ID, COUNT(*) FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID
###context:CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR) ###human: Show the names and ids of tourist attractions that are visited at least two times. ###assistant: SELECT T1.Name, T2.Tourist_Attraction_ID FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID HAVING COUNT(*) >= 2
###context:CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR) ###human: Show the names and ids of tourist attractions that are visited at most once. ###assistant: SELECT T1.Name, T1.Tourist_Attraction_ID FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID HAVING COUNT(*) <= 1
###context:CREATE TABLE Tourist_Attractions (Name VARCHAR, Location_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE Locations (Location_ID VARCHAR, Address VARCHAR) ###human: What are the names of tourist attractions that can be reached by walk or is at address 660 Shea Crescent? ###assistant: SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = "660 Shea Crescent" OR T2.How_to_Get_There = "walk"