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