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