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