Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
2,800 | <question>: When is the last day any resident moved in? <context>: CREATE TABLE Residents (date_moved_in INTEGER) | SELECT MAX(date_moved_in) FROM Residents |
2,801 | <question>: What are the resident details containing the substring 'Miss'? <context>: CREATE TABLE Residents (other_details VARCHAR) | SELECT other_details FROM Residents WHERE other_details LIKE '%Miss%' |
2,802 | <question>: List the customer event id and the corresponding move in date and property id. <context>: CREATE TABLE customer_events (customer_event_id VARCHAR, date_moved_in VARCHAR, property_id VARCHAR) | SELECT customer_event_id, date_moved_in, property_id FROM customer_events |
2,803 | <question>: How many customers did not have any event? <context>: CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE customer_events (customer_id VARCHAR) | SELECT COUNT(*) FROM customers WHERE NOT customer_id IN (SELECT customer_id FROM customer_events) |
2,804 | <question>: What are the distinct move in dates of the residents? <context>: CREATE TABLE residents (date_moved_in VARCHAR) | SELECT DISTINCT date_moved_in FROM residents |
2,805 | <question>: List the locations of schools in ascending order of enrollment. <context>: CREATE TABLE school (LOCATION VARCHAR, Enrollment VARCHAR) | SELECT LOCATION FROM school ORDER BY Enrollment |
2,806 | <question>: List the locations of schools in descending order of founded year. <context>: CREATE TABLE school (LOCATION VARCHAR, Founded VARCHAR) | SELECT LOCATION FROM school ORDER BY Founded DESC |
2,807 | <question>: What are the enrollments of schools whose denomination is not "Catholic"? <context>: CREATE TABLE school (Enrollment VARCHAR, Denomination VARCHAR) | SELECT Enrollment FROM school WHERE Denomination <> "Catholic" |
2,808 | <question>: What is the average enrollment of schools? <context>: CREATE TABLE school (Enrollment INTEGER) | SELECT AVG(Enrollment) FROM school |
2,809 | <question>: What are the teams of the players, sorted in ascending alphabetical order? <context>: CREATE TABLE player (Team VARCHAR) | SELECT Team FROM player ORDER BY Team |
2,810 | <question>: Find the team of the player of the highest age. <context>: CREATE TABLE player (Team VARCHAR, Age VARCHAR) | SELECT Team FROM player ORDER BY Age DESC LIMIT 1 |
2,811 | <question>: List the teams of the players with the top 5 largest ages. <context>: CREATE TABLE player (Team VARCHAR, Age VARCHAR) | SELECT Team FROM player ORDER BY Age DESC LIMIT 5 |
2,812 | <question>: For each player, show the team and the location of school they belong to. <context>: CREATE TABLE school (Location VARCHAR, School_ID VARCHAR); CREATE TABLE player (Team VARCHAR, School_ID VARCHAR) | SELECT T1.Team, T2.Location FROM player AS T1 JOIN school AS T2 ON T1.School_ID = T2.School_ID |
2,813 | <question>: Show the locations of schools that have more than 1 player. <context>: CREATE TABLE player (School_ID VARCHAR); CREATE TABLE school (Location VARCHAR, School_ID VARCHAR) | SELECT T2.Location FROM player AS T1 JOIN school AS T2 ON T1.School_ID = T2.School_ID GROUP BY T1.School_ID HAVING COUNT(*) > 1 |
2,814 | <question>: Show the denomination of the school that has the most players. <context>: CREATE TABLE player (School_ID VARCHAR); CREATE TABLE school (Denomination VARCHAR, School_ID VARCHAR) | SELECT T2.Denomination FROM player AS T1 JOIN school AS T2 ON T1.School_ID = T2.School_ID GROUP BY T1.School_ID ORDER BY COUNT(*) DESC LIMIT 1 |
2,815 | <question>: Show locations and nicknames of schools. <context>: CREATE TABLE school (Location VARCHAR, School_ID VARCHAR); CREATE TABLE school_details (Nickname VARCHAR, School_ID VARCHAR) | SELECT T1.Location, T2.Nickname FROM school AS T1 JOIN school_details AS T2 ON T1.School_ID = T2.School_ID |
2,816 | <question>: Please show different denominations and the corresponding number of schools. <context>: CREATE TABLE school (Denomination VARCHAR) | SELECT Denomination, COUNT(*) FROM school GROUP BY Denomination |
2,817 | <question>: Please show different denominations and the corresponding number of schools in descending order. <context>: CREATE TABLE school (Denomination VARCHAR) | SELECT Denomination, COUNT(*) FROM school GROUP BY Denomination ORDER BY COUNT(*) DESC |
2,818 | <question>: List the school color of the school that has the largest enrollment. <context>: CREATE TABLE school (School_Colors VARCHAR, Enrollment VARCHAR) | SELECT School_Colors FROM school ORDER BY Enrollment DESC LIMIT 1 |
2,819 | <question>: List the locations of schools that do not have any player. <context>: CREATE TABLE school (LOCATION VARCHAR, School_ID VARCHAR); CREATE TABLE Player (LOCATION VARCHAR, School_ID VARCHAR) | SELECT LOCATION FROM school WHERE NOT School_ID IN (SELECT School_ID FROM Player) |
2,820 | <question>: Show the denomination shared by schools founded before 1890 and schools founded after 1900 <context>: CREATE TABLE school (Denomination VARCHAR, Founded INTEGER) | SELECT Denomination FROM school WHERE Founded < 1890 INTERSECT SELECT Denomination FROM school WHERE Founded > 1900 |
2,821 | <question>: Show the nicknames of schools that are not in division 1. <context>: CREATE TABLE school_details (Nickname VARCHAR, Division VARCHAR) | SELECT Nickname FROM school_details WHERE Division <> "Division 1" |
2,822 | <question>: Show the denomination shared by more than one school. <context>: CREATE TABLE school (Denomination VARCHAR) | SELECT Denomination FROM school GROUP BY Denomination HAVING COUNT(*) > 1 |
2,823 | <question>: Find all the distinct district names ordered by city area in descending. <context>: CREATE TABLE district (District_name VARCHAR, city_area VARCHAR) | SELECT DISTINCT District_name FROM district ORDER BY city_area DESC |
2,824 | <question>: Find the list of page size which have more than 3 product listed <context>: CREATE TABLE product (max_page_size VARCHAR) | SELECT max_page_size FROM product GROUP BY max_page_size HAVING COUNT(*) > 3 |
2,825 | <question>: Find the name and population of district with population between 200000 and 2000000 <context>: CREATE TABLE district (District_name VARCHAR, City_Population INTEGER) | SELECT District_name, City_Population FROM district WHERE City_Population BETWEEN 200000 AND 2000000 |
2,826 | <question>: Find the name all districts with city area greater than 10 or population larger than 100000 <context>: CREATE TABLE district (district_name VARCHAR, city_area VARCHAR, City_Population VARCHAR) | SELECT district_name FROM district WHERE city_area > 10 OR City_Population > 100000 |
2,827 | <question>: Which district has the largest population? <context>: CREATE TABLE district (district_name VARCHAR, city_population VARCHAR) | SELECT district_name FROM district ORDER BY city_population DESC LIMIT 1 |
2,828 | <question>: Which district has the least area? <context>: CREATE TABLE district (district_name VARCHAR, city_area VARCHAR) | SELECT district_name FROM district ORDER BY city_area LIMIT 1 |
2,829 | <question>: Find the total population of the top 3 districts with the largest area. <context>: CREATE TABLE district (city_population INTEGER, city_area VARCHAR) | SELECT SUM(city_population) FROM district ORDER BY city_area DESC LIMIT 3 |
2,830 | <question>: Find all types of store and number of them. <context>: CREATE TABLE store (TYPE VARCHAR) | SELECT TYPE, COUNT(*) FROM store GROUP BY TYPE |
2,831 | <question>: Find the names of all stores in Khanewal District. <context>: CREATE TABLE district (district_id VARCHAR, district_name VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR); CREATE TABLE store (store_name VARCHAR, store_id VARCHAR) | SELECT t1.store_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t3.district_name = "Khanewal District" |
2,832 | <question>: Find all the stores in the district with the most population. <context>: CREATE TABLE store_district (store_id VARCHAR); CREATE TABLE district (district_id VARCHAR, city_population VARCHAR); CREATE TABLE store (store_name VARCHAR, store_id VARCHAR) | SELECT t1.store_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id WHERE district_id = (SELECT district_id FROM district ORDER BY city_population DESC LIMIT 1) |
2,833 | <question>: Which city is the headquarter of the store named "Blackville" in? <context>: CREATE TABLE store (store_id VARCHAR, store_name VARCHAR); CREATE TABLE district (headquartered_city VARCHAR, district_id VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR) | SELECT t3.headquartered_city FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t1.store_name = "Blackville" |
2,834 | <question>: Find the number of stores in each city. <context>: CREATE TABLE district (headquartered_city VARCHAR, district_id VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR); CREATE TABLE store (store_id VARCHAR) | SELECT t3.headquartered_city, COUNT(*) FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id GROUP BY t3.headquartered_city |
2,835 | <question>: Find the city with the most number of stores. <context>: CREATE TABLE district (headquartered_city VARCHAR, district_id VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR); CREATE TABLE store (store_id VARCHAR) | SELECT t3.headquartered_city FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id GROUP BY t3.headquartered_city ORDER BY COUNT(*) DESC LIMIT 1 |
2,836 | <question>: What is the average pages per minute color? <context>: CREATE TABLE product (pages_per_minute_color INTEGER) | SELECT AVG(pages_per_minute_color) FROM product |
2,837 | <question>: What products are available at store named "Miramichi"? <context>: CREATE TABLE store_product (product_id VARCHAR, store_id VARCHAR); CREATE TABLE store (store_id VARCHAR, store_name VARCHAR); CREATE TABLE product (product VARCHAR, product_id VARCHAR) | SELECT t1.product FROM product AS t1 JOIN store_product AS t2 ON t1.product_id = t2.product_id JOIN store AS t3 ON t2.store_id = t3.store_id WHERE t3.store_name = "Miramichi" |
2,838 | <question>: Find products with max page size as "A4" and pages per minute color smaller than 5. <context>: CREATE TABLE product (product VARCHAR, max_page_size VARCHAR, pages_per_minute_color VARCHAR) | SELECT product FROM product WHERE max_page_size = "A4" AND pages_per_minute_color < 5 |
2,839 | <question>: Find products with max page size as "A4" or pages per minute color smaller than 5. <context>: CREATE TABLE product (product VARCHAR, max_page_size VARCHAR, pages_per_minute_color VARCHAR) | SELECT product FROM product WHERE max_page_size = "A4" OR pages_per_minute_color < 5 |
2,840 | <question>: Find all the product whose name contains the word "Scanner". <context>: CREATE TABLE product (product VARCHAR) | SELECT product FROM product WHERE product LIKE "%Scanner%" |
2,841 | <question>: Find the most prominent max page size among all the products. <context>: CREATE TABLE product (max_page_size VARCHAR) | SELECT max_page_size FROM product GROUP BY max_page_size ORDER BY COUNT(*) DESC LIMIT 1 |
2,842 | <question>: Find the name of the products that are not using the most frequently-used max page size. <context>: CREATE TABLE product (product VARCHAR, max_page_size VARCHAR) | SELECT product FROM product WHERE product <> (SELECT max_page_size FROM product GROUP BY max_page_size ORDER BY COUNT(*) DESC LIMIT 1) |
2,843 | <question>: Find the total population of the districts where the area is bigger than the average city area. <context>: CREATE TABLE district (city_population INTEGER, city_area INTEGER) | SELECT SUM(city_population) FROM district WHERE city_area > (SELECT AVG(city_area) FROM district) |
2,844 | <question>: Find the names of districts where have both city mall and village store type stores. <context>: CREATE TABLE district (District_name VARCHAR, district_id VARCHAR); CREATE TABLE store (store_id VARCHAR, Type VARCHAR); CREATE TABLE store_district (store_id VARCHAR, district_id VARCHAR) | SELECT t3.District_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t1.Type = "City Mall" INTERSECT SELECT t3.District_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t1.Type = "Village Store" |
2,845 | <question>: What is the total enrollment number of all colleges? <context>: CREATE TABLE College (enr INTEGER) | SELECT SUM(enr) FROM College |
2,846 | <question>: What is the average enrollment number? <context>: CREATE TABLE College (enr INTEGER) | SELECT AVG(enr) FROM College |
2,847 | <question>: How many colleges in total? <context>: CREATE TABLE College (Id VARCHAR) | SELECT COUNT(*) FROM College |
2,848 | <question>: How many players have more than 1000 hours of training? <context>: CREATE TABLE Player (HS INTEGER) | SELECT COUNT(*) FROM Player WHERE HS > 1000 |
2,849 | <question>: How many colleges has more than 15000 students? <context>: CREATE TABLE College (enr INTEGER) | SELECT COUNT(*) FROM College WHERE enr > 15000 |
2,850 | <question>: What is the average training hours of all players? <context>: CREATE TABLE Player (HS INTEGER) | SELECT AVG(HS) FROM Player |
2,851 | <question>: Find the name and training hours of players whose hours are below 1500. <context>: CREATE TABLE Player (pName VARCHAR, HS INTEGER) | SELECT pName, HS FROM Player WHERE HS < 1500 |
2,852 | <question>: How many different colleges do attend the tryout test? <context>: CREATE TABLE tryout (cName VARCHAR) | SELECT COUNT(DISTINCT cName) FROM tryout |
2,853 | <question>: What are the unique types of player positions in the tryout? <context>: CREATE TABLE tryout (pPos VARCHAR) | SELECT COUNT(DISTINCT pPos) FROM tryout |
2,854 | <question>: How many students got accepted after the tryout? <context>: CREATE TABLE tryout (decision VARCHAR) | SELECT COUNT(*) FROM tryout WHERE decision = 'yes' |
2,855 | <question>: How many students whose are playing the role of goalie? <context>: CREATE TABLE tryout (pPos VARCHAR) | SELECT COUNT(*) FROM tryout WHERE pPos = 'goalie' |
2,856 | <question>: Find the max, average and min training hours of all players. <context>: CREATE TABLE Player (HS INTEGER) | SELECT AVG(HS), MAX(HS), MIN(HS) FROM Player |
2,857 | <question>: What is average enrollment of colleges in the state FL? <context>: CREATE TABLE College (enr INTEGER, state VARCHAR) | SELECT AVG(enr) FROM College WHERE state = 'FL' |
2,858 | <question>: What are the names of players whose training hours is between 500 and 1500? <context>: CREATE TABLE Player (pName VARCHAR, HS INTEGER) | SELECT pName FROM Player WHERE HS BETWEEN 500 AND 1500 |
2,859 | <question>: Find the players whose names contain letter 'a'. <context>: CREATE TABLE Player (pName VARCHAR) | SELECT DISTINCT pName FROM Player WHERE pName LIKE '%a%' |
2,860 | <question>: Find the name, enrollment of the colleges whose size is bigger than 10000 and location is in state LA. <context>: CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR) | SELECT cName, enr FROM College WHERE enr > 10000 AND state = "LA" |
2,861 | <question>: List all information about college sorted by enrollment number in the ascending order. <context>: CREATE TABLE College (enr VARCHAR) | SELECT * FROM College ORDER BY enr |
2,862 | <question>: List the name of the colleges whose enrollment is greater 18000 sorted by the college's name. <context>: CREATE TABLE College (cName VARCHAR, enr INTEGER) | SELECT cName FROM College WHERE enr > 18000 ORDER BY cName |
2,863 | <question>: Find the name of players whose card is yes in the descending order of training hours. <context>: CREATE TABLE Player (pName VARCHAR, yCard VARCHAR, HS VARCHAR) | SELECT pName FROM Player WHERE yCard = 'yes' ORDER BY HS DESC |
2,864 | <question>: Find the name of different colleges involved in the tryout in alphabetical order. <context>: CREATE TABLE tryout (cName VARCHAR) | SELECT DISTINCT cName FROM tryout ORDER BY cName |
2,865 | <question>: Which position is most popular among players in the tryout? <context>: CREATE TABLE tryout (pPos VARCHAR) | SELECT pPos FROM tryout GROUP BY pPos ORDER BY COUNT(*) DESC LIMIT 1 |
2,866 | <question>: Find the number of students who participate in the tryout for each college ordered by descending count. <context>: CREATE TABLE tryout (cName VARCHAR) | SELECT COUNT(*), cName FROM tryout GROUP BY cName ORDER BY COUNT(*) DESC |
2,867 | <question>: What is minimum hours of the students playing in different position? <context>: CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pPos VARCHAR, pID VARCHAR) | SELECT MIN(T2.HS), T1.pPos FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID GROUP BY T1.pPos |
2,868 | <question>: What are the names of schools with the top 3 largest size? <context>: CREATE TABLE college (cName VARCHAR, enr VARCHAR) | SELECT cName FROM college ORDER BY enr DESC LIMIT 3 |
2,869 | <question>: What is the name of school that has the smallest enrollment in each state? <context>: CREATE TABLE college (cName VARCHAR, state VARCHAR, enr INTEGER) | SELECT cName, state, MIN(enr) FROM college GROUP BY state |
2,870 | <question>: Find the states where have some college students in tryout. <context>: CREATE TABLE college (cName VARCHAR); CREATE TABLE tryout (cName VARCHAR) | SELECT DISTINCT state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName |
2,871 | <question>: Find the states where have some college students in tryout and their decisions are yes. <context>: CREATE TABLE tryout (cName VARCHAR, decision VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR) | SELECT DISTINCT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision = 'yes' |
2,872 | <question>: Find the name and college of students whose decisions are yes in the tryout. <context>: CREATE TABLE tryout (cName VARCHAR, pID VARCHAR, decision VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR) | SELECT T1.pName, T2.cName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' |
2,873 | <question>: Find the name of all students who were in the tryout sorted in alphabetic order. <context>: CREATE TABLE tryout (pID VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR) | SELECT T1.pName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID ORDER BY T1.pName |
2,874 | <question>: Find the name and hours of the students whose tryout decision is yes. <context>: CREATE TABLE player (pName VARCHAR, HS VARCHAR, pID VARCHAR); CREATE TABLE tryout (pID VARCHAR, decision VARCHAR) | SELECT T1.pName, T1.HS FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' |
2,875 | <question>: Find the states of the colleges that have students in the tryout who played in striker position. <context>: CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR) | SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'striker' |
2,876 | <question>: Find the names of the students who are in the position of striker and got a yes tryout decision. <context>: CREATE TABLE tryout (pID VARCHAR, decision VARCHAR, pPos VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR) | SELECT T1.pName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' AND T2.pPos = 'striker' |
2,877 | <question>: Find the state of the college which player Charles is attending. <context>: CREATE TABLE tryout (cName VARCHAR, pID VARCHAR); CREATE TABLE player (pID VARCHAR, pName VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR) | SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName JOIN player AS T3 ON T2.pID = T3.pID WHERE T3.pName = 'Charles' |
2,878 | <question>: Find the average and maximum hours for the students whose tryout decision is yes. <context>: CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pID VARCHAR, decision VARCHAR) | SELECT AVG(T1.HS), MAX(T1.HS) FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' |
2,879 | <question>: Find the average hours for the students whose tryout decision is no. <context>: CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pID VARCHAR, decision VARCHAR) | SELECT AVG(T1.HS) FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'no' |
2,880 | <question>: What is the maximum training hours for the students whose training hours is greater than 1000 in different positions? <context>: CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pPos VARCHAR, pID VARCHAR) | SELECT MAX(T1.HS), pPos FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T1.HS > 1000 GROUP BY T2.pPos |
2,881 | <question>: Which colleges do the tryout players whose name starts with letter D go to? <context>: CREATE TABLE tryout (cName VARCHAR, pID VARCHAR); CREATE TABLE player (pID VARCHAR, pName VARCHAR) | SELECT T1.cName FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID WHERE T2.pName LIKE 'D%' |
2,882 | <question>: Which college has any student who is a goalie and succeeded in the tryout. <context>: CREATE TABLE tryout (cName VARCHAR, decision VARCHAR, pPos VARCHAR) | SELECT cName FROM tryout WHERE decision = 'yes' AND pPos = 'goalie' |
2,883 | <question>: Find the name of the tryout players who are from the college with largest size. <context>: CREATE TABLE college (cName VARCHAR, enr VARCHAR); CREATE TABLE tryout (pID VARCHAR, cName VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR) | SELECT T2.pName FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID WHERE T1.cName = (SELECT cName FROM college ORDER BY enr DESC LIMIT 1) |
2,884 | <question>: What is the state and enrollment of the colleges where have any students who got accepted in the tryout decision. <context>: CREATE TABLE tryout (cName VARCHAR, decision VARCHAR); CREATE TABLE college (state VARCHAR, enr VARCHAR, cName VARCHAR) | SELECT DISTINCT T1.state, T1.enr FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision = 'yes' |
2,885 | <question>: Find the names of either colleges in LA with greater than 15000 size or in state AZ with less than 13000 enrollment. <context>: CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR) | SELECT cName FROM College WHERE enr < 13000 AND state = "AZ" UNION SELECT cName FROM College WHERE enr > 15000 AND state = "LA" |
2,886 | <question>: Find the names of schools that have some students playing in goalie and mid positions. <context>: CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR) | SELECT cName FROM tryout WHERE pPos = 'goalie' INTERSECT SELECT cName FROM tryout WHERE pPos = 'mid' |
2,887 | <question>: Find the names of states that have some college students playing in goalie and mid positions. <context>: CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR) | SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'goalie' INTERSECT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'mid' |
2,888 | <question>: How many schools have some students playing in goalie and mid positions. <context>: CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR) | SELECT COUNT(*) FROM (SELECT cName FROM tryout WHERE pPos = 'goalie' INTERSECT SELECT cName FROM tryout WHERE pPos = 'mid') |
2,889 | <question>: Find the names of schools that have some players in the mid position but not in the goalie position. <context>: CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR) | SELECT cName FROM tryout WHERE pPos = 'mid' EXCEPT SELECT cName FROM tryout WHERE pPos = 'goalie' |
2,890 | <question>: Find the names of states that have some college students playing in the mid position but not in the goalie position. <context>: CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR) | SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'mid' EXCEPT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'goalie' |
2,891 | <question>: How many states that have some college students playing in the mid position but not in the goalie position. <context>: CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR) | SELECT COUNT(*) FROM (SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'mid' EXCEPT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'goalie') |
2,892 | <question>: Find the states where have the colleges whose enrollments are less than the largest size. <context>: CREATE TABLE college (state VARCHAR, enr INTEGER) | SELECT DISTINCT state FROM college WHERE enr < (SELECT MAX(enr) FROM college) |
2,893 | <question>: Find names of colleges with enrollment greater than that of some (at least one) college in the FL state. <context>: CREATE TABLE college (cName VARCHAR, enr INTEGER, state VARCHAR) | SELECT DISTINCT cName FROM college WHERE enr > (SELECT MIN(enr) FROM college WHERE state = 'FL') |
2,894 | <question>: Find names of all colleges whose enrollment is greater than that of all colleges in the FL state. <context>: CREATE TABLE college (cName VARCHAR, enr INTEGER, state VARCHAR) | SELECT cName FROM college WHERE enr > (SELECT MAX(enr) FROM college WHERE state = 'FL') |
2,895 | <question>: What is the total number of enrollment of schools that do not have any goalie player? <context>: CREATE TABLE college (enr INTEGER, cName VARCHAR, pPos VARCHAR); CREATE TABLE tryout (enr INTEGER, cName VARCHAR, pPos VARCHAR) | SELECT SUM(enr) FROM college WHERE NOT cName IN (SELECT cName FROM tryout WHERE pPos = "goalie") |
2,896 | <question>: What is the number of states that has some college whose enrollment is larger than the average enrollment? <context>: CREATE TABLE college (state VARCHAR, enr INTEGER) | SELECT COUNT(DISTINCT state) FROM college WHERE enr > (SELECT AVG(enr) FROM college) |
2,897 | <question>: What is the number of states that has some colleges whose enrollment is smaller than the average enrollment? <context>: CREATE TABLE college (state VARCHAR, enr INTEGER) | SELECT COUNT(DISTINCT state) FROM college WHERE enr < (SELECT AVG(enr) FROM college) |
2,898 | <question>: How many devices are there? <context>: CREATE TABLE device (Id VARCHAR) | SELECT COUNT(*) FROM device |
2,899 | <question>: List the carriers of devices in ascending alphabetical order. <context>: CREATE TABLE device (Carrier VARCHAR) | SELECT Carrier FROM device ORDER BY Carrier |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.