combined_text
stringlengths
106
1.05k
###question:What is the storm name and max speed which affected the greatest number of regions?###answer:SELECT T1.name, T1.max_speed FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE storm (name VARCHAR, max_speed VARCHAR, storm_id VARCHAR); CREATE TABLE affected_region (storm_id VARCHAR)
###question:Show the name of storms which don't have affected region in record.###answer:SELECT name FROM storm WHERE NOT storm_id IN (SELECT storm_id FROM affected_region)###context:CREATE TABLE affected_region (name VARCHAR, storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)
###question:Show storm name with at least two regions and 10 cities affected.###answer:SELECT T1.name FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id HAVING COUNT(*) >= 2 INTERSECT SELECT T1.name FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id HAVING SUM(T2.number_city_affected) >= 10###context:CREATE TABLE affected_region (storm_id VARCHAR, number_city_affected INTEGER); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)
###question:Show all storm names except for those with at least two affected regions.###answer:SELECT name FROM storm EXCEPT SELECT T1.name FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id HAVING COUNT(*) >= 2###context:CREATE TABLE storm (name VARCHAR); CREATE TABLE affected_region (storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)
###question:What are the region names affected by the storm with a number of deaths of least 10?###answer:SELECT T2.region_name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T3.number_deaths >= 10###context:CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (storm_id VARCHAR, number_deaths VARCHAR)
###question:Show all storm names affecting region "Denmark".###answer:SELECT T3.name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.region_name = 'Denmark'###context:CREATE TABLE region (region_id VARCHAR, region_name VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)
###question:Show the region name with at least two storms.###answer:SELECT T1.region_name FROM region AS T1 JOIN affected_region AS T2 ON T1.region_id = T2.region_id GROUP BY T1.region_id HAVING COUNT(*) >= 2###context:CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR)
###question:Find the names of the regions which were affected by the storm that killed the greatest number of people.###answer:SELECT T2.region_name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id ORDER BY T3.Number_Deaths DESC LIMIT 1###context:CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE storm (storm_id VARCHAR, Number_Deaths VARCHAR)
###question:Find the name of the storm that affected both Afghanistan and Albania regions.###answer:SELECT T3.Name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.Region_name = 'Afghanistan' INTERSECT SELECT T3.Name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.Region_name = 'Albania'###context:CREATE TABLE storm (Name VARCHAR, storm_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE region (region_id VARCHAR, Region_name VARCHAR)
###question:How many counties are there in total?###answer:SELECT COUNT(*) FROM county###context:CREATE TABLE county (Id VARCHAR)
###question:Show the county name and population of all counties.###answer:SELECT County_name, Population FROM county###context:CREATE TABLE county (County_name VARCHAR, Population VARCHAR)
###question:Show the average population of all counties.###answer:SELECT AVG(Population) FROM county###context:CREATE TABLE county (Population INTEGER)
###question:Return the maximum and minimum population among all counties.###answer:SELECT MAX(Population), MIN(Population) FROM county###context:CREATE TABLE county (Population INTEGER)
###question:Show all the distinct districts for elections.###answer:SELECT DISTINCT District FROM election###context:CREATE TABLE election (District VARCHAR)
###question:Show the zip code of the county with name "Howard".###answer:SELECT Zip_code FROM county WHERE County_name = "Howard"###context:CREATE TABLE county (Zip_code VARCHAR, County_name VARCHAR)
###question:Show the delegate from district 1 in election.###answer:SELECT Delegate FROM election WHERE District = 1###context:CREATE TABLE election (Delegate VARCHAR, District VARCHAR)
###question:Show the delegate and committee information of elections.###answer:SELECT Delegate, Committee FROM election###context:CREATE TABLE election (Delegate VARCHAR, Committee VARCHAR)
###question:How many distinct governors are there?###answer:SELECT COUNT(DISTINCT Governor) FROM party###context:CREATE TABLE party (Governor VARCHAR)
###question:Show the lieutenant governor and comptroller from the democratic party.###answer:SELECT Lieutenant_Governor, Comptroller FROM party WHERE Party = "Democratic"###context:CREATE TABLE party (Lieutenant_Governor VARCHAR, Comptroller VARCHAR, Party VARCHAR)
###question:In which distinct years was the governor "Eliot Spitzer"?###answer:SELECT DISTINCT YEAR FROM party WHERE Governor = "Eliot Spitzer"###context:CREATE TABLE party (YEAR VARCHAR, Governor VARCHAR)
###question:Show all the information about election.###answer:SELECT * FROM election###context:CREATE TABLE election (Id VARCHAR)
###question:Show the delegates and the names of county they belong to.###answer:SELECT T2.Delegate, T1.County_name FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District###context:CREATE TABLE election (Delegate VARCHAR, District VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)
###question:Which delegates are from counties with population smaller than 100000?###answer:SELECT T2.Delegate FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District WHERE T1.Population < 100000###context:CREATE TABLE election (Delegate VARCHAR, District VARCHAR); CREATE TABLE county (County_id VARCHAR, Population INTEGER)
###question:How many distinct delegates are from counties with population larger than 50000?###answer:SELECT COUNT(DISTINCT T2.Delegate) FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District WHERE T1.Population > 50000###context:CREATE TABLE election (Delegate VARCHAR, District VARCHAR); CREATE TABLE county (County_id VARCHAR, Population INTEGER)
###question:What are the names of the county that the delegates on "Appropriations" committee belong to?###answer:SELECT T1.County_name FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District WHERE T2.Committee = "Appropriations"###context:CREATE TABLE election (District VARCHAR, Committee VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)
###question:Show the delegates and the names of the party they belong to.###answer:SELECT T1.Delegate, T2.Party FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID###context:CREATE TABLE election (Delegate VARCHAR, Party VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)
###question:Who were the governors of the parties associated with delegates from district 1?###answer:SELECT T2.Governor FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T1.District = 1###context:CREATE TABLE party (Governor VARCHAR, Party_ID VARCHAR); CREATE TABLE election (Party VARCHAR, District VARCHAR)
###question:Who were the comptrollers of the parties associated with the delegates from district 1 or district 2?###answer:SELECT T2.Comptroller FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T1.District = 1 OR T1.District = 2###context:CREATE TABLE party (Comptroller VARCHAR, Party_ID VARCHAR); CREATE TABLE election (Party VARCHAR, District VARCHAR)
###question:Return all the committees that have delegates from Democratic party.###answer:SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = "Democratic"###context:CREATE TABLE election (Committee VARCHAR, Party VARCHAR); CREATE TABLE party (Party_ID VARCHAR, Party VARCHAR)
###question:Show the name of each county along with the corresponding number of delegates from that county.###answer:SELECT T1.County_name, COUNT(*) FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District GROUP BY T1.County_id###context:CREATE TABLE election (District VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)
###question:Show the name of each party and the corresponding number of delegates from that party.###answer:SELECT T2.Party, COUNT(*) FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID GROUP BY T1.Party###context:CREATE TABLE election (Party VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)
###question:Return the names of all counties sorted by population in ascending order.###answer:SELECT County_name FROM county ORDER BY Population###context:CREATE TABLE county (County_name VARCHAR, Population VARCHAR)
###question:Return the names of all counties sorted by county name in descending alphabetical order.###answer:SELECT County_name FROM county ORDER BY County_name DESC###context:CREATE TABLE county (County_name VARCHAR)
###question:Show the name of the county with the biggest population.###answer:SELECT County_name FROM county ORDER BY Population DESC LIMIT 1###context:CREATE TABLE county (County_name VARCHAR, Population VARCHAR)
###question:Show the 3 counties with the smallest population.###answer:SELECT County_name FROM county ORDER BY Population LIMIT 3###context:CREATE TABLE county (County_name VARCHAR, Population VARCHAR)
###question:Show the names of counties that have at least two delegates.###answer:SELECT T1.County_name FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District GROUP BY T1.County_id HAVING COUNT(*) >= 2###context:CREATE TABLE election (District VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)
###question:Show the name of the party that has at least two records.###answer:SELECT Party FROM party GROUP BY Party HAVING COUNT(*) >= 2###context:CREATE TABLE party (Party VARCHAR)
###question:Show the name of the party that has the most delegates.###answer:SELECT T2.Party FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID GROUP BY T1.Party ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE election (Party VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)
###question:Show the people that have been governor the most times.###answer:SELECT Governor FROM party GROUP BY Governor ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE party (Governor VARCHAR)
###question:Show the people that have been comptroller the most times and the corresponding number of times.###answer:SELECT Comptroller, COUNT(*) FROM party GROUP BY Comptroller ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE party (Comptroller VARCHAR)
###question:What are the names of parties that do not have delegates in election?###answer:SELECT Party FROM party WHERE NOT Party_ID IN (SELECT Party FROM election)###context:CREATE TABLE election (Party VARCHAR, Party_ID VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)
###question:What are the names of parties that have both delegates on "Appropriations" committee and###answer:SELECT T2.Party FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T1.Committee = "Appropriations" INTERSECT SELECT T2.Party FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T1.Committee = "Economic Matters"###context:CREATE TABLE election (Party VARCHAR, Committee VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)
###question:Which committees have delegates from both democratic party and liberal party?###answer:SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = "Democratic" INTERSECT SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = "Liberal"###context:CREATE TABLE election (Committee VARCHAR, Party VARCHAR); CREATE TABLE party (Party_ID VARCHAR, Party VARCHAR)
###question:How many journalists are there?###answer:SELECT COUNT(*) FROM journalist###context:CREATE TABLE journalist (Id VARCHAR)
###question:List the names of journalists in ascending order of years working.###answer:SELECT Name FROM journalist ORDER BY Years_working###context:CREATE TABLE journalist (Name VARCHAR, Years_working VARCHAR)
###question:What are the nationalities and ages of journalists?###answer:SELECT Nationality, Age FROM journalist###context:CREATE TABLE journalist (Nationality VARCHAR, Age VARCHAR)
###question:Show the names of journalists from "England" or "Wales".###answer:SELECT Name FROM journalist WHERE Nationality = "England" OR Nationality = "Wales"###context:CREATE TABLE journalist (Name VARCHAR, Nationality VARCHAR)
###question:What is the average number of years spent working as a journalist?###answer:SELECT AVG(Years_working) FROM journalist###context:CREATE TABLE journalist (Years_working INTEGER)
###question:What is the nationality of the journalist with the largest number of years working?###answer:SELECT Nationality FROM journalist ORDER BY Years_working DESC LIMIT 1###context:CREATE TABLE journalist (Nationality VARCHAR, Years_working VARCHAR)
###question:Show the different nationalities and the number of journalists of each nationality.###answer:SELECT Nationality, COUNT(*) FROM journalist GROUP BY Nationality###context:CREATE TABLE journalist (Nationality VARCHAR)
###question:Show the most common nationality for journalists.###answer:SELECT Nationality FROM journalist GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE journalist (Nationality VARCHAR)
###question:Show the nations that have both journalists with more than 10 years of working and journalists with less than 3 years of working.###answer:SELECT Nationality FROM journalist WHERE Years_working > 10 INTERSECT SELECT Nationality FROM journalist WHERE Years_working < 3###context:CREATE TABLE journalist (Nationality VARCHAR, Years_working INTEGER)
###question:Show the dates, places, and names of events in descending order of the attendance.###answer:SELECT Date, Name, venue FROM event ORDER BY Event_Attendance DESC###context:CREATE TABLE event (Date VARCHAR, Name VARCHAR, venue VARCHAR, Event_Attendance VARCHAR)
###question:Show the names of journalists and the dates of the events they reported.###answer:SELECT T3.Name, T2.Date FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID###context:CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Date VARCHAR, Event_ID VARCHAR)
###question:Show the names of journalists and the names of the events they reported in ascending order###answer:SELECT T3.Name, T2.Name FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID ORDER BY T2.Event_Attendance###context:CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Name VARCHAR, Event_ID VARCHAR, Event_Attendance VARCHAR)
###question:Show the names of journalists and the number of events they reported.###answer:SELECT T3.Name, COUNT(*) FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID GROUP BY T3.Name###context:CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Event_ID VARCHAR)
###question:Show the names of journalists that have reported more than one event.###answer:SELECT T3.Name FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID GROUP BY T3.Name HAVING COUNT(*) > 1###context:CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Event_ID VARCHAR)
###question:List the names of journalists who have not reported any event.###answer:SELECT Name FROM journalist WHERE NOT journalist_ID IN (SELECT journalist_ID FROM news_report)###context:CREATE TABLE journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Name VARCHAR, journalist_ID VARCHAR)
###question:what are the average and maximum attendances of all events?###answer:SELECT AVG(Event_Attendance), MAX(Event_Attendance) FROM event###context:CREATE TABLE event (Event_Attendance INTEGER)
###question:Find the average age and experience working length of journalists working on different role type.###answer:SELECT AVG(t1.age), AVG(Years_working), t2.work_type FROM journalist AS t1 JOIN news_report AS t2 ON t1.journalist_id = t2.journalist_id GROUP BY t2.work_type###context:CREATE TABLE news_report (work_type VARCHAR, journalist_id VARCHAR); CREATE TABLE journalist (age INTEGER, journalist_id VARCHAR)
###question:List the event venues and names that have the top 2 most number of people attended.###answer:SELECT venue, name FROM event ORDER BY Event_Attendance DESC LIMIT 2###context:CREATE TABLE event (venue VARCHAR, name VARCHAR, Event_Attendance VARCHAR)
###question:Show me all the restaurants.###answer:SELECT ResName FROM Restaurant###context:CREATE TABLE Restaurant (ResName VARCHAR)
###question:What is the address of the restaurant Subway?###answer:SELECT Address FROM Restaurant WHERE ResName = "Subway"###context:CREATE TABLE Restaurant (Address VARCHAR, ResName VARCHAR)
###question:What is the rating of the restaurant Subway?###answer:SELECT Rating FROM Restaurant WHERE ResName = "Subway"###context:CREATE TABLE Restaurant (Rating VARCHAR, ResName VARCHAR)
###question:List all restaurant types.###answer:SELECT ResTypeName FROM Restaurant_Type###context:CREATE TABLE Restaurant_Type (ResTypeName VARCHAR)
###question:What is the description of the restaurant type Sandwich?###answer:SELECT ResTypeDescription FROM Restaurant_Type WHERE ResTypeName = "Sandwich"###context:CREATE TABLE Restaurant_Type (ResTypeDescription VARCHAR, ResTypeName VARCHAR)
###question:Which restaurants have highest rating? List the restaurant name and its rating.###answer:SELECT ResName, Rating FROM Restaurant ORDER BY Rating DESC LIMIT 1###context:CREATE TABLE Restaurant (ResName VARCHAR, Rating VARCHAR)
###question:What is the age of student Linda Smith?###answer:SELECT Age FROM Student WHERE Fname = "Linda" AND Lname = "Smith"###context:CREATE TABLE Student (Age VARCHAR, Fname VARCHAR, Lname VARCHAR)
###question:What is the gender of the student Linda Smith?###answer:SELECT Sex FROM Student WHERE Fname = "Linda" AND Lname = "Smith"###context:CREATE TABLE Student (Sex VARCHAR, Fname VARCHAR, Lname VARCHAR)
###question:List all students' first names and last names who majored in 600.###answer:SELECT Fname, Lname FROM Student WHERE Major = 600###context:CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Major VARCHAR)
###question:Which city does student Linda Smith live in?###answer:SELECT city_code FROM Student WHERE Fname = "Linda" AND Lname = "Smith"###context:CREATE TABLE Student (city_code VARCHAR, Fname VARCHAR, Lname VARCHAR)
###question:Advisor 1121 has how many students?###answer:SELECT COUNT(*) FROM Student WHERE Advisor = 1121###context:CREATE TABLE Student (Advisor VARCHAR)
###question:Which Advisor has most of students? List advisor and the number of students.###answer:SELECT Advisor, COUNT(*) FROM Student GROUP BY Advisor ORDER BY COUNT(Advisor) DESC LIMIT 1###context:CREATE TABLE Student (Advisor VARCHAR)
###question:Which major has least number of students? List the major and the number of students.###answer:SELECT Major, COUNT(*) FROM Student GROUP BY Major ORDER BY COUNT(Major) LIMIT 1###context:CREATE TABLE Student (Major VARCHAR)
###question:Which major has between 2 and 30 number of students? List major and the number of students.###answer:SELECT Major, COUNT(*) FROM Student GROUP BY Major HAVING COUNT(Major) BETWEEN 2 AND 30###context:CREATE TABLE Student (Major VARCHAR)
###question:Which student's age is older than 18 and is majoring in 600? List each student's first and last name.###answer:SELECT Fname, Lname FROM Student WHERE Age > 18 AND Major = 600###context:CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Age VARCHAR, Major VARCHAR)
###question:List all female students age is older than 18 who is not majoring in 600. List students' first name and last name.###answer:SELECT Fname, Lname FROM Student WHERE Age > 18 AND Major <> 600 AND Sex = 'F'###context:CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Sex VARCHAR, Age VARCHAR, Major VARCHAR)
###question:How many restaurant is the Sandwich type restaurant?###answer:SELECT COUNT(*) FROM Restaurant JOIN Type_Of_Restaurant ON Restaurant.ResID = Type_Of_Restaurant.ResID JOIN Restaurant_Type ON Type_Of_Restaurant.ResTypeID = Restaurant_Type.ResTypeID GROUP BY Type_Of_Restaurant.ResTypeID HAVING Restaurant_Type.ResTypeName = 'Sandwich'###context:CREATE TABLE Type_Of_Restaurant (Id VARCHAR); CREATE TABLE Restaurant (Id VARCHAR); CREATE TABLE Restaurant_Type (Id VARCHAR)
###question:How long does student Linda Smith spend on the restaurant in total?###answer:SELECT SUM(Spent) FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID WHERE Student.Fname = "Linda" AND Student.Lname = "Smith"###context:CREATE TABLE Visits_Restaurant (Spent INTEGER); CREATE TABLE Student (Spent INTEGER)
###question:How many times has the student Linda Smith visited Subway?###answer:SELECT COUNT(*) FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID JOIN Restaurant ON Visits_Restaurant.ResID = Restaurant.ResID WHERE Student.Fname = "Linda" AND Student.Lname = "Smith" AND Restaurant.ResName = "Subway"###context:CREATE TABLE Visits_Restaurant (Id VARCHAR); CREATE TABLE Student (Id VARCHAR); CREATE TABLE Restaurant (Id VARCHAR)
###question:When did Linda Smith visit Subway?###answer:SELECT TIME FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID JOIN Restaurant ON Visits_Restaurant.ResID = Restaurant.ResID WHERE Student.Fname = "Linda" AND Student.Lname = "Smith" AND Restaurant.ResName = "Subway"###context:CREATE TABLE Restaurant (TIME VARCHAR); CREATE TABLE Visits_Restaurant (TIME VARCHAR); CREATE TABLE Student (TIME VARCHAR)
###question:At which restaurant did the students spend the least amount of time? List restaurant and the time students spent on in total.###answer:SELECT Restaurant.ResName, SUM(Visits_Restaurant.Spent) FROM Visits_Restaurant JOIN Restaurant ON Visits_Restaurant.ResID = Restaurant.ResID GROUP BY Restaurant.ResID ORDER BY SUM(Visits_Restaurant.Spent) LIMIT 1###context:CREATE TABLE Visits_Restaurant (Id VARCHAR); CREATE TABLE Restaurant (Id VARCHAR)
###question:Which student visited restaurant most often? List student's first name and last name.###answer:SELECT Student.Fname, Student.Lname FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID GROUP BY Student.StuID ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE Visits_Restaurant (Id VARCHAR); CREATE TABLE Student (Id VARCHAR)
###question:Find the ids of orders whose status is 'Success'.###answer:SELECT actual_order_id FROM actual_orders WHERE order_status_code = 'Success'###context:CREATE TABLE actual_orders (actual_order_id VARCHAR, order_status_code VARCHAR)
###question:Find the name and price of the product that has been ordered the greatest number of times.###answer:SELECT t1.product_name, t1.product_price FROM products AS t1 JOIN regular_order_products AS t2 ON t1.product_id = t2.product_id GROUP BY t2.product_id ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE products (product_name VARCHAR, product_price VARCHAR, product_id VARCHAR); CREATE TABLE regular_order_products (product_id VARCHAR)
###question:Find the number of customers in total.###answer:SELECT COUNT(*) FROM customers###context:CREATE TABLE customers (Id VARCHAR)
###question:How many different payment methods are there?###answer:SELECT COUNT(DISTINCT payment_method) FROM customers###context:CREATE TABLE customers (payment_method VARCHAR)
###question:Show the details of all trucks in the order of their license number.###answer:SELECT truck_details FROM trucks ORDER BY truck_licence_number###context:CREATE TABLE trucks (truck_details VARCHAR, truck_licence_number VARCHAR)
###question:Find the name of the most expensive product.###answer:SELECT product_name FROM products ORDER BY product_price DESC LIMIT 1###context:CREATE TABLE products (product_name VARCHAR, product_price VARCHAR)
###question:Find the names of customers who are not living in the state of California.###answer:SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = 'California'###context:CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR)
###question:List the names and emails of customers who payed by Visa card.###answer:SELECT customer_email, customer_name FROM customers WHERE payment_method = 'Visa'###context:CREATE TABLE customers (customer_email VARCHAR, customer_name VARCHAR, payment_method VARCHAR)
###question:Find the names and phone numbers of customers living in California state.###answer:SELECT t1.customer_name, t1.customer_phone FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = 'California'###context:CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_phone VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR)
###question:Find the states which do not have any employee in their record.###answer:SELECT state_province_county FROM addresses WHERE NOT address_id IN (SELECT employee_address_id FROM Employees)###context:CREATE TABLE Employees (state_province_county VARCHAR, address_id VARCHAR, employee_address_id VARCHAR); CREATE TABLE addresses (state_province_county VARCHAR, address_id VARCHAR, employee_address_id VARCHAR)
###question:List the names, phone numbers, and emails of all customers sorted by their dates of becoming customers.###answer:SELECT customer_name, customer_phone, customer_email FROM Customers ORDER BY date_became_customer###context:CREATE TABLE Customers (customer_name VARCHAR, customer_phone VARCHAR, customer_email VARCHAR, date_became_customer VARCHAR)
###question:Find the name of the first 5 customers.###answer:SELECT customer_name FROM Customers ORDER BY date_became_customer LIMIT 5###context:CREATE TABLE Customers (customer_name VARCHAR, date_became_customer VARCHAR)
###question:Find the payment method that is used most frequently.###answer:SELECT payment_method FROM Customers GROUP BY payment_method ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE Customers (payment_method VARCHAR)
###question:List the names of all routes in alphabetic order.###answer:SELECT route_name FROM Delivery_Routes ORDER BY route_name###context:CREATE TABLE Delivery_Routes (route_name VARCHAR)
###question:Find the name of route that has the highest number of deliveries.###answer:SELECT t1.route_name FROM Delivery_Routes AS t1 JOIN Delivery_Route_Locations AS t2 ON t1.route_id = t2.route_id GROUP BY t1.route_id ORDER BY COUNT(*) DESC LIMIT 1###context:CREATE TABLE Delivery_Routes (route_name VARCHAR, route_id VARCHAR); CREATE TABLE Delivery_Route_Locations (route_id VARCHAR)
###question:List the state names and the number of customers living in each state.###answer:SELECT t2.state_province_county, COUNT(*) FROM customer_addresses AS t1 JOIN addresses AS t2 ON t1.address_id = t2.address_id GROUP BY t2.state_province_county###context:CREATE TABLE customer_addresses (address_id VARCHAR); CREATE TABLE addresses (state_province_county VARCHAR, address_id VARCHAR)
###question:How many authors are there?###answer:SELECT COUNT(*) FROM authors###context:CREATE TABLE authors (Id VARCHAR)