Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
3,300 |
<question>: How many customers are there in the customer type with the most customers? <context>: CREATE TABLE customers (customer_type_code VARCHAR)
|
SELECT COUNT(*) FROM customers GROUP BY customer_type_code ORDER BY COUNT(*) DESC LIMIT 1
|
3,301 |
<question>: What is the last name of the staff who has handled the first ever complaint? <context>: CREATE TABLE staff (last_name VARCHAR, staff_id VARCHAR); CREATE TABLE complaints (staff_id VARCHAR, date_complaint_raised VARCHAR)
|
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
|
3,302 |
<question>: How many distinct complaint type codes are there in the database? <context>: CREATE TABLE complaints (complaint_type_code VARCHAR)
|
SELECT COUNT(DISTINCT complaint_type_code) FROM complaints
|
3,303 |
<question>: Find the address line 1 and 2 of the customer with email "[email protected]". <context>: CREATE TABLE customers (address_line_1 VARCHAR, address_line_2 VARCHAR, email_address VARCHAR)
|
SELECT address_line_1, address_line_2 FROM customers WHERE email_address = "[email protected]"
|
3,304 |
<question>: Find the number of complaints with Product Failure type for each complaint status. <context>: CREATE TABLE complaints (complaint_status_code VARCHAR, complaint_type_code VARCHAR)
|
SELECT complaint_status_code, COUNT(*) FROM complaints WHERE complaint_type_code = "Product Failure" GROUP BY complaint_status_code
|
3,305 |
<question>: What is first names of the top 5 staff who have handled the greatest number of complaints? <context>: CREATE TABLE complaints (staff_id VARCHAR); CREATE TABLE staff (first_name VARCHAR, staff_id VARCHAR)
|
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
|
3,306 |
<question>: Which state has the most customers? <context>: CREATE TABLE customers (state VARCHAR)
|
SELECT state FROM customers GROUP BY state ORDER BY COUNT(*) LIMIT 1
|
3,307 |
<question>: How many submissions are there? <context>: CREATE TABLE submission (Id VARCHAR)
|
SELECT COUNT(*) FROM submission
|
3,308 |
<question>: List the authors of submissions in ascending order of scores. <context>: CREATE TABLE submission (Author VARCHAR, Scores VARCHAR)
|
SELECT Author FROM submission ORDER BY Scores
|
3,309 |
<question>: What are the authors of submissions and their colleges? <context>: CREATE TABLE submission (Author VARCHAR, College VARCHAR)
|
SELECT Author, College FROM submission
|
3,310 |
<question>: Show the names of authors from college "Florida" or "Temple" <context>: CREATE TABLE submission (Author VARCHAR, College VARCHAR)
|
SELECT Author FROM submission WHERE College = "Florida" OR College = "Temple"
|
3,311 |
<question>: What is the average score of submissions? <context>: CREATE TABLE submission (Scores INTEGER)
|
SELECT AVG(Scores) FROM submission
|
3,312 |
<question>: What is the author of the submission with the highest score? <context>: CREATE TABLE submission (Author VARCHAR, Scores VARCHAR)
|
SELECT Author FROM submission ORDER BY Scores DESC LIMIT 1
|
3,313 |
<question>: Show different colleges along with the number of authors of submission from each college. <context>: CREATE TABLE submission (College VARCHAR)
|
SELECT College, COUNT(*) FROM submission GROUP BY College
|
3,314 |
<question>: Show the most common college of authors of submissions. <context>: CREATE TABLE submission (College VARCHAR)
|
SELECT College FROM submission GROUP BY College ORDER BY COUNT(*) DESC LIMIT 1
|
3,315 |
<question>: Show the colleges that have both authors with submission score larger than 90 and authors with submission score smaller than 80. <context>: CREATE TABLE submission (College VARCHAR, Scores INTEGER)
|
SELECT College FROM submission WHERE Scores > 90 INTERSECT SELECT College FROM submission WHERE Scores < 80
|
3,316 |
<question>: Show the authors of submissions and the acceptance results of their submissions. <context>: CREATE TABLE acceptance (Result VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR)
|
SELECT T2.Author, T1.Result FROM acceptance AS T1 JOIN submission AS T2 ON T1.Submission_ID = T2.Submission_ID
|
3,317 |
<question>: Show the result of the submission with the highest score. <context>: CREATE TABLE acceptance (Result VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Submission_ID VARCHAR, Scores VARCHAR)
|
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
|
3,318 |
<question>: Show each author and the number of workshops they submitted to. <context>: CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE acceptance (workshop_id VARCHAR, Submission_ID VARCHAR)
|
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
|
3,319 |
<question>: Show the authors who have submissions to more than one workshop. <context>: CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE acceptance (Submission_ID VARCHAR, workshop_id VARCHAR)
|
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
|
3,320 |
<question>: Show the date and venue of each workshop in ascending alphabetical order of the venue. <context>: CREATE TABLE workshop (Date VARCHAR, Venue VARCHAR)
|
SELECT Date, Venue FROM workshop ORDER BY Venue
|
3,321 |
<question>: List the authors who do not have submission to any workshop. <context>: CREATE TABLE acceptance (Author VARCHAR, Submission_ID VARCHAR); CREATE TABLE submission (Author VARCHAR, Submission_ID VARCHAR)
|
SELECT Author FROM submission WHERE NOT Submission_ID IN (SELECT Submission_ID FROM acceptance)
|
3,322 |
<question>: Find the number of investors in total. <context>: CREATE TABLE INVESTORS (Id VARCHAR)
|
SELECT COUNT(*) FROM INVESTORS
|
3,323 |
<question>: Show all investor details. <context>: CREATE TABLE INVESTORS (Investor_details VARCHAR)
|
SELECT Investor_details FROM INVESTORS
|
3,324 |
<question>: Show all distinct lot details. <context>: CREATE TABLE LOTS (lot_details VARCHAR)
|
SELECT DISTINCT lot_details FROM LOTS
|
3,325 |
<question>: Show the maximum amount of transaction. <context>: CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER)
|
SELECT MAX(amount_of_transaction) FROM TRANSACTIONS
|
3,326 |
<question>: Show all date and share count of transactions. <context>: CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR)
|
SELECT date_of_transaction, share_count FROM TRANSACTIONS
|
3,327 |
<question>: What is the total share of transactions? <context>: CREATE TABLE TRANSACTIONS (share_count INTEGER)
|
SELECT SUM(share_count) FROM TRANSACTIONS
|
3,328 |
<question>: Show all transaction ids with transaction code 'PUR'. <context>: CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, transaction_type_code VARCHAR)
|
SELECT transaction_id FROM TRANSACTIONS WHERE transaction_type_code = 'PUR'
|
3,329 |
<question>: Show all dates of transactions whose type code is "SALE". <context>: CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, transaction_type_code VARCHAR)
|
SELECT date_of_transaction FROM TRANSACTIONS WHERE transaction_type_code = "SALE"
|
3,330 |
<question>: Show the average amount of transactions with type code "SALE". <context>: CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER, transaction_type_code VARCHAR)
|
SELECT AVG(amount_of_transaction) FROM TRANSACTIONS WHERE transaction_type_code = "SALE"
|
3,331 |
<question>: Show the description of transaction type with code "PUR". <context>: CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR)
|
SELECT transaction_type_description FROM Ref_Transaction_Types WHERE transaction_type_code = "PUR"
|
3,332 |
<question>: Show the minimum amount of transactions whose type code is "PUR" and whose share count is bigger than 50. <context>: CREATE TABLE TRANSACTIONS (amount_of_transaction INTEGER, transaction_type_code VARCHAR, share_count VARCHAR)
|
SELECT MIN(amount_of_transaction) FROM TRANSACTIONS WHERE transaction_type_code = "PUR" AND share_count > 50
|
3,333 |
<question>: Show the maximum share count of transactions where the amount is smaller than 10000 <context>: CREATE TABLE TRANSACTIONS (share_count INTEGER, amount_of_transaction INTEGER)
|
SELECT MAX(share_count) FROM TRANSACTIONS WHERE amount_of_transaction < 10000
|
3,334 |
<question>: Show the dates of transactions if the share count is bigger than 100 or the amount is bigger than 1000. <context>: CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR, amount_of_transaction VARCHAR)
|
SELECT date_of_transaction FROM TRANSACTIONS WHERE share_count > 100 OR amount_of_transaction > 1000
|
3,335 |
<question>: Show the transaction type descriptions and dates if the share count is smaller than 10. <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)
|
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
|
3,336 |
<question>: Show details of all investors if they make any transaction with share count greater than 100. <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR)
|
SELECT T1.Investor_details FROM INVESTORS AS T1 JOIN TRANSACTIONS AS T2 ON T1.investor_id = T2.investor_id WHERE T2.share_count > 100
|
3,337 |
<question>: How many distinct transaction types are used in the transactions? <context>: CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR)
|
SELECT COUNT(DISTINCT transaction_type_code) FROM TRANSACTIONS
|
3,338 |
<question>: Return the lot details and investor ids. <context>: CREATE TABLE LOTS (lot_details VARCHAR, investor_id VARCHAR)
|
SELECT lot_details, investor_id FROM LOTS
|
3,339 |
<question>: Return the lot details of lots that belong to investors with details "l"? <context>: CREATE TABLE LOTS (lot_details VARCHAR, investor_id VARCHAR); CREATE TABLE INVESTORS (investor_id VARCHAR, Investor_details VARCHAR)
|
SELECT T2.lot_details FROM INVESTORS AS T1 JOIN LOTS AS T2 ON T1.investor_id = T2.investor_id WHERE T1.Investor_details = "l"
|
3,340 |
<question>: What are the purchase details of transactions with amount bigger than 10000? <context>: CREATE TABLE PURCHASES (purchase_details VARCHAR, purchase_transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, amount_of_transaction INTEGER)
|
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
|
3,341 |
<question>: What are the sale details and dates of transactions with amount smaller than 3000? <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)
|
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
|
3,342 |
<question>: What are the lot details of lots associated with transactions with share count smaller than 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 INTEGER)
|
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
|
3,343 |
<question>: What are the lot details of lots associated with transactions whose share count is bigger than 100 and whose type code is "PUR"? <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)
|
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"
|
3,344 |
<question>: Show the average transaction amount for different transaction types. <context>: CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR, amount_of_transaction INTEGER)
|
SELECT transaction_type_code, AVG(amount_of_transaction) FROM TRANSACTIONS GROUP BY transaction_type_code
|
3,345 |
<question>: Show the maximum and minimum share count of different transaction types. <context>: CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR, share_count INTEGER)
|
SELECT transaction_type_code, MAX(share_count), MIN(share_count) FROM TRANSACTIONS GROUP BY transaction_type_code
|
3,346 |
<question>: Show the average share count of transactions for different investors. <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER)
|
SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id
|
3,347 |
<question>: Show the average share count of transactions each each investor, ordered by average share count. <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER)
|
SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id ORDER BY AVG(share_count)
|
3,348 |
<question>: Show the average amount of transactions for different investors. <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR, amount_of_transaction INTEGER)
|
SELECT investor_id, AVG(amount_of_transaction) FROM TRANSACTIONS GROUP BY investor_id
|
3,349 |
<question>: Show the average amount of transactions for different lots. <context>: CREATE TABLE TRANSACTIONS (transaction_id VARCHAR); CREATE TABLE Transactions_Lots (lot_id VARCHAR, transaction_id VARCHAR)
|
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
|
3,350 |
<question>: Show the average amount of transactions for different lots, ordered by average amount of transactions. <context>: CREATE TABLE TRANSACTIONS (transaction_id VARCHAR); CREATE TABLE Transactions_Lots (lot_id VARCHAR, transaction_id VARCHAR)
|
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)
|
3,351 |
<question>: Show the number of transactions with transaction type code "SALE" for different investors if it is larger than 0. <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR, transaction_type_code VARCHAR)
|
SELECT investor_id, COUNT(*) FROM TRANSACTIONS WHERE transaction_type_code = "SALE" GROUP BY investor_id
|
3,352 |
<question>: Show the number of transactions for different investors. <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR)
|
SELECT investor_id, COUNT(*) FROM TRANSACTIONS GROUP BY investor_id
|
3,353 |
<question>: Show the transaction type code that occurs the fewest times. <context>: CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR)
|
SELECT transaction_type_code FROM TRANSACTIONS GROUP BY transaction_type_code ORDER BY COUNT(*) LIMIT 1
|
3,354 |
<question>: Show the transaction type code that occurs the most frequently. <context>: CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR)
|
SELECT transaction_type_code FROM TRANSACTIONS GROUP BY transaction_type_code ORDER BY COUNT(*) DESC LIMIT 1
|
3,355 |
<question>: Show the description of the transaction type that occurs most frequently. <context>: CREATE TABLE TRANSACTIONS (transaction_type_code VARCHAR); CREATE TABLE Ref_Transaction_Types (transaction_type_description VARCHAR, transaction_type_code VARCHAR)
|
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
|
3,356 |
<question>: Show the id and details of the investor that has the largest number of transactions. <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR)
|
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
|
3,357 |
<question>: Show the id and details for the investors who have the top 3 number of transactions. <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR)
|
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
|
3,358 |
<question>: Show the ids of the investors who have at least two transactions. <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR); CREATE TABLE INVESTORS (investor_id VARCHAR)
|
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
|
3,359 |
<question>: Show the ids and details of the investors who have at least two transactions with type code "SALE". <context>: CREATE TABLE TRANSACTIONS (investor_id VARCHAR, transaction_type_code VARCHAR); CREATE TABLE INVESTORS (Investor_details VARCHAR, investor_id VARCHAR)
|
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
|
3,360 |
<question>: What are the dates of transactions with at least 100 share count or amount bigger than 100? <context>: CREATE TABLE TRANSACTIONS (date_of_transaction VARCHAR, share_count VARCHAR, amount_of_transaction VARCHAR)
|
SELECT date_of_transaction FROM TRANSACTIONS WHERE share_count >= 100 OR amount_of_transaction >= 100
|
3,361 |
<question>: What are the details of all sales and purchases? <context>: CREATE TABLE purchases (sales_details VARCHAR, purchase_details VARCHAR); CREATE TABLE sales (sales_details VARCHAR, purchase_details VARCHAR)
|
SELECT sales_details FROM sales UNION SELECT purchase_details FROM purchases
|
3,362 |
<question>: What are the details of the lots which are not used in any transactions? <context>: CREATE TABLE Lots (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE Lots (lot_details VARCHAR); CREATE TABLE transactions_lots (lot_id VARCHAR)
|
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
|
3,363 |
<question>: How many available hotels are there in total? <context>: CREATE TABLE HOTELS (Id VARCHAR)
|
SELECT COUNT(*) FROM HOTELS
|
3,364 |
<question>: What are the price ranges of hotels? <context>: CREATE TABLE HOTELS (price_range VARCHAR)
|
SELECT price_range FROM HOTELS
|
3,365 |
<question>: Show all distinct location names. <context>: CREATE TABLE LOCATIONS (Location_Name VARCHAR)
|
SELECT DISTINCT Location_Name FROM LOCATIONS
|
3,366 |
<question>: Show the names and details of all the staff members. <context>: CREATE TABLE Staff (Name VARCHAR, Other_Details VARCHAR)
|
SELECT Name, Other_Details FROM Staff
|
3,367 |
<question>: Show details of all visitors. <context>: CREATE TABLE VISITORS (Tourist_Details VARCHAR)
|
SELECT Tourist_Details FROM VISITORS
|
3,368 |
<question>: Show the price ranges of hotels with 5 star ratings. <context>: CREATE TABLE HOTELS (price_range VARCHAR, star_rating_code VARCHAR)
|
SELECT price_range FROM HOTELS WHERE star_rating_code = "5"
|
3,369 |
<question>: Show the average price range of hotels that have 5 star ratings and allow pets. <context>: CREATE TABLE HOTELS (price_range INTEGER, star_rating_code VARCHAR, pets_allowed_yn VARCHAR)
|
SELECT AVG(price_range) FROM HOTELS WHERE star_rating_code = "5" AND pets_allowed_yn = 1
|
3,370 |
<question>: What is the address of the location "UK Gallery"? <context>: CREATE TABLE LOCATIONS (Address VARCHAR, Location_Name VARCHAR)
|
SELECT Address FROM LOCATIONS WHERE Location_Name = "UK Gallery"
|
3,371 |
<question>: What is the detail of the location UK Gallery? <context>: CREATE TABLE LOCATIONS (Other_Details VARCHAR, Location_Name VARCHAR)
|
SELECT Other_Details FROM LOCATIONS WHERE Location_Name = "UK Gallery"
|
3,372 |
<question>: Which location names contain the word "film"? <context>: CREATE TABLE LOCATIONS (Location_Name VARCHAR)
|
SELECT Location_Name FROM LOCATIONS WHERE Location_Name LIKE "%film%"
|
3,373 |
<question>: How many distinct names are associated with all the photos? <context>: CREATE TABLE PHOTOS (Name VARCHAR)
|
SELECT COUNT(DISTINCT Name) FROM PHOTOS
|
3,374 |
<question>: What are the distinct visit dates? <context>: CREATE TABLE VISITS (Visit_Date VARCHAR)
|
SELECT DISTINCT Visit_Date FROM VISITS
|
3,375 |
<question>: What are the names of the tourist attractions that can be accessed by bus? <context>: CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, How_to_Get_There VARCHAR)
|
SELECT Name FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = "bus"
|
3,376 |
<question>: What are the names and opening hours of the tourist attractions that can be accessed by bus or walk? <context>: CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, Opening_Hours VARCHAR, How_to_Get_There VARCHAR)
|
SELECT Name, Opening_Hours FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = "bus" OR How_to_Get_There = "walk"
|
3,377 |
<question>: What are the star rating descriptions of the hotels with price above 10000? <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)
|
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
|
3,378 |
<question>: What are the details and opening hours of the museums? <context>: CREATE TABLE TOURIST_ATTRACTIONS (Opening_Hours VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE MUSEUMS (Museum_Details VARCHAR, Museum_ID VARCHAR)
|
SELECT T1.Museum_Details, T2.Opening_Hours FROM MUSEUMS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Museum_ID = T2.Tourist_Attraction_ID
|
3,379 |
<question>: What is the name of the tourist attraction that is associated with the photo "game1"? <context>: CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE PHOTOS (Tourist_Attraction_ID VARCHAR, Name VARCHAR)
|
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"
|
3,380 |
<question>: What are the names and descriptions of the photos taken at the tourist attraction "film festival"? <context>: CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, Name VARCHAR); CREATE TABLE PHOTOS (Name VARCHAR, Description VARCHAR, Tourist_Attraction_ID VARCHAR)
|
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"
|
3,381 |
<question>: What are the details and ways to get to tourist attractions related to royal family? <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)
|
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
|
3,382 |
<question>: What are the details of the shops that can be accessed by walk? <context>: CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE SHOPS (Shop_Details VARCHAR, Shop_ID VARCHAR)
|
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"
|
3,383 |
<question>: What is the name of the staff that is in charge of the attraction named "US museum"? <context>: CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, Name VARCHAR); CREATE TABLE STAFF (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
|
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"
|
3,384 |
<question>: What are the details of the markets that can be accessed by walk or bus? <context>: CREATE TABLE Street_Markets (Market_Details VARCHAR, Market_ID VARCHAR); CREATE TABLE TOURIST_ATTRACTIONS (Tourist_Attraction_ID VARCHAR, How_to_Get_There VARCHAR)
|
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"
|
3,385 |
<question>: What are the visit date and details of the visitor whose detail is 'Vincent'? <context>: CREATE TABLE VISITORS (Tourist_ID VARCHAR, Tourist_Details VARCHAR); CREATE TABLE VISITS (Visit_Date VARCHAR, Visit_Details VARCHAR, Tourist_ID VARCHAR)
|
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"
|
3,386 |
<question>: Which tourist attractions does the visitor with detail 'Vincent' visit? <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)
|
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"
|
3,387 |
<question>: What are the names of the tourist attractions and the dates when the tourists named Vincent or Vivian visited there? <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)
|
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"
|
3,388 |
<question>: Show the average price of hotels for each star rating code. <context>: CREATE TABLE HOTELS (star_rating_code VARCHAR, price_range INTEGER)
|
SELECT star_rating_code, AVG(price_range) FROM HOTELS GROUP BY star_rating_code
|
3,389 |
<question>: Show the average price of hotels for different pet policy. <context>: CREATE TABLE HOTELS (pets_allowed_yn VARCHAR, price_range INTEGER)
|
SELECT pets_allowed_yn, AVG(price_range) FROM HOTELS GROUP BY pets_allowed_yn
|
3,390 |
<question>: Show the id and star rating of each hotel, ordered by its price from low to high. <context>: CREATE TABLE HOTELS (hotel_id VARCHAR, star_rating_code VARCHAR, price_range VARCHAR)
|
SELECT hotel_id, star_rating_code FROM HOTELS ORDER BY price_range
|
3,391 |
<question>: Show the details of the top 3 most expensive hotels. <context>: CREATE TABLE HOTELS (other_hotel_details VARCHAR, price_range VARCHAR)
|
SELECT other_hotel_details FROM HOTELS ORDER BY price_range DESC LIMIT 3
|
3,392 |
<question>: Show the details and star ratings of the 3 least expensive hotels. <context>: CREATE TABLE HOTELS (other_hotel_details VARCHAR, star_rating_code VARCHAR, price_range VARCHAR)
|
SELECT other_hotel_details, star_rating_code FROM HOTELS ORDER BY price_range LIMIT 3
|
3,393 |
<question>: Show the transportation method most people choose to get to tourist attractions. <context>: CREATE TABLE Tourist_Attractions (How_to_Get_There VARCHAR)
|
SELECT How_to_Get_There FROM Tourist_Attractions GROUP BY How_to_Get_There ORDER BY COUNT(*) DESC LIMIT 1
|
3,394 |
<question>: Show the description and code of the attraction type most tourist attractions belong to. <context>: CREATE TABLE Ref_Attraction_Types (Attraction_Type_Description VARCHAR, Attraction_Type_Code VARCHAR); CREATE TABLE Tourist_Attractions (Attraction_Type_Code VARCHAR)
|
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
|
3,395 |
<question>: Show different ways to get to attractions and the number of attractions that can be accessed in the corresponding way. <context>: CREATE TABLE Tourist_Attractions (How_to_Get_There VARCHAR)
|
SELECT How_to_Get_There, COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There
|
3,396 |
<question>: Show different tourist attractions' names, ids, and the corresponding number of visits. <context>: CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
|
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
|
3,397 |
<question>: Show the names and ids of tourist attractions that are visited at least two times. <context>: CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
|
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
|
3,398 |
<question>: Show the names and ids of tourist attractions that are visited at most once. <context>: CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
|
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
|
3,399 |
<question>: What are the names of tourist attractions that can be reached by walk or is at address 660 Shea Crescent? <context>: CREATE TABLE Tourist_Attractions (Name VARCHAR, Location_ID VARCHAR, How_to_Get_There VARCHAR); CREATE TABLE Locations (Location_ID VARCHAR, Address VARCHAR)
|
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"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.