output stringlengths 18 557 | instruction stringlengths 22 540 |
|---|---|
SELECT MAX(date_moved_in) FROM Residents | CREATE TABLE Residents (date_moved_in INTEGER), When is the last day any resident moved in? |
SELECT other_details FROM Residents WHERE other_details LIKE '%Miss%' | CREATE TABLE Residents (other_details VARCHAR), What are the resident details containing the substring 'Miss'? |
SELECT customer_event_id, date_moved_in, property_id FROM customer_events | CREATE TABLE customer_events (customer_event_id VARCHAR, date_moved_in VARCHAR, property_id VARCHAR), List the customer event id and the corresponding move in date and property id. |
SELECT COUNT(*) FROM customers WHERE NOT customer_id IN (SELECT customer_id FROM customer_events) | CREATE TABLE customers (customer_id VARCHAR); CREATE TABLE customer_events (customer_id VARCHAR), How many customers did not have any event? |
SELECT DISTINCT date_moved_in FROM residents | CREATE TABLE residents (date_moved_in VARCHAR), What are the distinct move in dates of the residents? |
SELECT LOCATION FROM school ORDER BY Enrollment | CREATE TABLE school (LOCATION VARCHAR, Enrollment VARCHAR), List the locations of schools in ascending order of enrollment. |
SELECT LOCATION FROM school ORDER BY Founded DESC | CREATE TABLE school (LOCATION VARCHAR, Founded VARCHAR), List the locations of schools in descending order of founded year. |
SELECT Enrollment FROM school WHERE Denomination <> "Catholic" | CREATE TABLE school (Enrollment VARCHAR, Denomination VARCHAR), What are the enrollments of schools whose denomination is not "Catholic"? |
SELECT AVG(Enrollment) FROM school | CREATE TABLE school (Enrollment INTEGER), What is the average enrollment of schools? |
SELECT Team FROM player ORDER BY Team | CREATE TABLE player (Team VARCHAR), What are the teams of the players, sorted in ascending alphabetical order? |
SELECT Team FROM player ORDER BY Age DESC LIMIT 1 | CREATE TABLE player (Team VARCHAR, Age VARCHAR), Find the team of the player of the highest age. |
SELECT Team FROM player ORDER BY Age DESC LIMIT 5 | CREATE TABLE player (Team VARCHAR, Age VARCHAR), List the teams of the players with the top 5 largest ages. |
SELECT T1.Team, T2.Location FROM player AS T1 JOIN school AS T2 ON T1.School_ID = T2.School_ID | CREATE TABLE school (Location VARCHAR, School_ID VARCHAR); CREATE TABLE player (Team VARCHAR, School_ID VARCHAR), For each player, show the team and the location of school they belong to. |
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 | CREATE TABLE player (School_ID VARCHAR); CREATE TABLE school (Location VARCHAR, School_ID VARCHAR), Show the locations of schools that have more than 1 player. |
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 | CREATE TABLE player (School_ID VARCHAR); CREATE TABLE school (Denomination VARCHAR, School_ID VARCHAR), Show the denomination of the school that has the most players. |
SELECT T1.Location, T2.Nickname FROM school AS T1 JOIN school_details AS T2 ON T1.School_ID = T2.School_ID | CREATE TABLE school (Location VARCHAR, School_ID VARCHAR); CREATE TABLE school_details (Nickname VARCHAR, School_ID VARCHAR), Show locations and nicknames of schools. |
SELECT Denomination, COUNT(*) FROM school GROUP BY Denomination | CREATE TABLE school (Denomination VARCHAR), Please show different denominations and the corresponding number of schools. |
SELECT Denomination, COUNT(*) FROM school GROUP BY Denomination ORDER BY COUNT(*) DESC | CREATE TABLE school (Denomination VARCHAR), Please show different denominations and the corresponding number of schools in descending order. |
SELECT School_Colors FROM school ORDER BY Enrollment DESC LIMIT 1 | CREATE TABLE school (School_Colors VARCHAR, Enrollment VARCHAR), List the school color of the school that has the largest enrollment. |
SELECT LOCATION FROM school WHERE NOT School_ID IN (SELECT School_ID FROM Player) | CREATE TABLE school (LOCATION VARCHAR, School_ID VARCHAR); CREATE TABLE Player (LOCATION VARCHAR, School_ID VARCHAR), List the locations of schools that do not have any player. |
SELECT Denomination FROM school WHERE Founded < 1890 INTERSECT SELECT Denomination FROM school WHERE Founded > 1900 | CREATE TABLE school (Denomination VARCHAR, Founded INTEGER), Show the denomination shared by schools founded before 1890 and schools founded after 1900 |
SELECT Nickname FROM school_details WHERE Division <> "Division 1" | CREATE TABLE school_details (Nickname VARCHAR, Division VARCHAR), Show the nicknames of schools that are not in division 1. |
SELECT Denomination FROM school GROUP BY Denomination HAVING COUNT(*) > 1 | CREATE TABLE school (Denomination VARCHAR), Show the denomination shared by more than one school. |
SELECT DISTINCT District_name FROM district ORDER BY city_area DESC | CREATE TABLE district (District_name VARCHAR, city_area VARCHAR), Find all the distinct district names ordered by city area in descending. |
SELECT max_page_size FROM product GROUP BY max_page_size HAVING COUNT(*) > 3 | CREATE TABLE product (max_page_size VARCHAR), Find the list of page size which have more than 3 product listed |
SELECT District_name, City_Population FROM district WHERE City_Population BETWEEN 200000 AND 2000000 | CREATE TABLE district (District_name VARCHAR, City_Population INTEGER), Find the name and population of district with population between 200000 and 2000000 |
SELECT district_name FROM district WHERE city_area > 10 OR City_Population > 100000 | CREATE TABLE district (district_name VARCHAR, city_area VARCHAR, City_Population VARCHAR), Find the name all districts with city area greater than 10 or population larger than 100000 |
SELECT district_name FROM district ORDER BY city_population DESC LIMIT 1 | CREATE TABLE district (district_name VARCHAR, city_population VARCHAR), Which district has the largest population? |
SELECT district_name FROM district ORDER BY city_area LIMIT 1 | CREATE TABLE district (district_name VARCHAR, city_area VARCHAR), Which district has the least area? |
SELECT SUM(city_population) FROM district ORDER BY city_area DESC LIMIT 3 | CREATE TABLE district (city_population INTEGER, city_area VARCHAR), Find the total population of the top 3 districts with the largest area. |
SELECT TYPE, COUNT(*) FROM store GROUP BY TYPE | CREATE TABLE store (TYPE VARCHAR), Find all types of store and number of them. |
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" | 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), Find the names of all stores in Khanewal District. |
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) | 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), Find all the stores in the district with the most population. |
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" | 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), Which city is the headquarter of the store named "Blackville" in? |
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 | 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), Find the number of stores in each city. |
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 | 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), Find the city with the most number of stores. |
SELECT AVG(pages_per_minute_color) FROM product | CREATE TABLE product (pages_per_minute_color INTEGER), What is the average pages per minute color? |
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" | 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), What products are available at store named "Miramichi"? |
SELECT product FROM product WHERE max_page_size = "A4" AND pages_per_minute_color < 5 | CREATE TABLE product (product VARCHAR, max_page_size VARCHAR, pages_per_minute_color VARCHAR), Find products with max page size as "A4" and pages per minute color smaller than 5. |
SELECT product FROM product WHERE max_page_size = "A4" OR pages_per_minute_color < 5 | CREATE TABLE product (product VARCHAR, max_page_size VARCHAR, pages_per_minute_color VARCHAR), Find products with max page size as "A4" or pages per minute color smaller than 5. |
SELECT product FROM product WHERE product LIKE "%Scanner%" | CREATE TABLE product (product VARCHAR), Find all the product whose name contains the word "Scanner". |
SELECT max_page_size FROM product GROUP BY max_page_size ORDER BY COUNT(*) DESC LIMIT 1 | CREATE TABLE product (max_page_size VARCHAR), Find the most prominent max page size among all the products. |
SELECT product FROM product WHERE product <> (SELECT max_page_size FROM product GROUP BY max_page_size ORDER BY COUNT(*) DESC LIMIT 1) | CREATE TABLE product (product VARCHAR, max_page_size VARCHAR), Find the name of the products that are not using the most frequently-used max page size. |
SELECT SUM(city_population) FROM district WHERE city_area > (SELECT AVG(city_area) FROM district) | CREATE TABLE district (city_population INTEGER, city_area INTEGER), Find the total population of the districts where the area is bigger than the average city area. |
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" | 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), Find the names of districts where have both city mall and village store type stores. |
SELECT SUM(enr) FROM College | CREATE TABLE College (enr INTEGER), What is the total enrollment number of all colleges? |
SELECT AVG(enr) FROM College | CREATE TABLE College (enr INTEGER), What is the average enrollment number? |
SELECT COUNT(*) FROM College | CREATE TABLE College (Id VARCHAR), How many colleges in total? |
SELECT COUNT(*) FROM Player WHERE HS > 1000 | CREATE TABLE Player (HS INTEGER), How many players have more than 1000 hours of training? |
SELECT COUNT(*) FROM College WHERE enr > 15000 | CREATE TABLE College (enr INTEGER), How many colleges has more than 15000 students? |
SELECT AVG(HS) FROM Player | CREATE TABLE Player (HS INTEGER), What is the average training hours of all players? |
SELECT pName, HS FROM Player WHERE HS < 1500 | CREATE TABLE Player (pName VARCHAR, HS INTEGER), Find the name and training hours of players whose hours are below 1500. |
SELECT COUNT(DISTINCT cName) FROM tryout | CREATE TABLE tryout (cName VARCHAR), How many different colleges do attend the tryout test? |
SELECT COUNT(DISTINCT pPos) FROM tryout | CREATE TABLE tryout (pPos VARCHAR), What are the unique types of player positions in the tryout? |
SELECT COUNT(*) FROM tryout WHERE decision = 'yes' | CREATE TABLE tryout (decision VARCHAR), How many students got accepted after the tryout? |
SELECT COUNT(*) FROM tryout WHERE pPos = 'goalie' | CREATE TABLE tryout (pPos VARCHAR), How many students whose are playing the role of goalie? |
SELECT AVG(HS), MAX(HS), MIN(HS) FROM Player | CREATE TABLE Player (HS INTEGER), Find the max, average and min training hours of all players. |
SELECT AVG(enr) FROM College WHERE state = 'FL' | CREATE TABLE College (enr INTEGER, state VARCHAR), What is average enrollment of colleges in the state FL? |
SELECT pName FROM Player WHERE HS BETWEEN 500 AND 1500 | CREATE TABLE Player (pName VARCHAR, HS INTEGER), What are the names of players whose training hours is between 500 and 1500? |
SELECT DISTINCT pName FROM Player WHERE pName LIKE '%a%' | CREATE TABLE Player (pName VARCHAR), Find the players whose names contain letter 'a'. |
SELECT cName, enr FROM College WHERE enr > 10000 AND state = "LA" | CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR), Find the name, enrollment of the colleges whose size is bigger than 10000 and location is in state LA. |
SELECT * FROM College ORDER BY enr | CREATE TABLE College (enr VARCHAR), List all information about college sorted by enrollment number in the ascending order. |
SELECT cName FROM College WHERE enr > 18000 ORDER BY cName | CREATE TABLE College (cName VARCHAR, enr INTEGER), List the name of the colleges whose enrollment is greater 18000 sorted by the college's name. |
SELECT pName FROM Player WHERE yCard = 'yes' ORDER BY HS DESC | CREATE TABLE Player (pName VARCHAR, yCard VARCHAR, HS VARCHAR), Find the name of players whose card is yes in the descending order of training hours. |
SELECT DISTINCT cName FROM tryout ORDER BY cName | CREATE TABLE tryout (cName VARCHAR), Find the name of different colleges involved in the tryout in alphabetical order. |
SELECT pPos FROM tryout GROUP BY pPos ORDER BY COUNT(*) DESC LIMIT 1 | CREATE TABLE tryout (pPos VARCHAR), Which position is most popular among players in the tryout? |
SELECT COUNT(*), cName FROM tryout GROUP BY cName ORDER BY COUNT(*) DESC | CREATE TABLE tryout (cName VARCHAR), Find the number of students who participate in the tryout for each college ordered by descending count. |
SELECT MIN(T2.HS), T1.pPos FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID GROUP BY T1.pPos | CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pPos VARCHAR, pID VARCHAR), What is minimum hours of the students playing in different position? |
SELECT cName FROM college ORDER BY enr DESC LIMIT 3 | CREATE TABLE college (cName VARCHAR, enr VARCHAR), What are the names of schools with the top 3 largest size? |
SELECT cName, state, MIN(enr) FROM college GROUP BY state | CREATE TABLE college (cName VARCHAR, state VARCHAR, enr INTEGER), What is the name of school that has the smallest enrollment in each state? |
SELECT DISTINCT state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName | CREATE TABLE college (cName VARCHAR); CREATE TABLE tryout (cName VARCHAR), Find the states where have some college students in tryout. |
SELECT DISTINCT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision = 'yes' | CREATE TABLE tryout (cName VARCHAR, decision VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR), Find the states where have some college students in tryout and their decisions are yes. |
SELECT T1.pName, T2.cName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' | CREATE TABLE tryout (cName VARCHAR, pID VARCHAR, decision VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR), Find the name and college of students whose decisions are yes in the tryout. |
SELECT T1.pName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID ORDER BY T1.pName | CREATE TABLE tryout (pID VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR), Find the name of all students who were in the tryout sorted in alphabetic order. |
SELECT T1.pName, T1.HS FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' | CREATE TABLE player (pName VARCHAR, HS VARCHAR, pID VARCHAR); CREATE TABLE tryout (pID VARCHAR, decision VARCHAR), Find the name and hours of the students whose tryout decision is yes. |
SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'striker' | CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR), Find the states of the colleges that have students in the tryout who played in striker position. |
SELECT T1.pName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' AND T2.pPos = 'striker' | CREATE TABLE tryout (pID VARCHAR, decision VARCHAR, pPos VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR), Find the names of the students who are in the position of striker and got a yes tryout decision. |
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' | CREATE TABLE tryout (cName VARCHAR, pID VARCHAR); CREATE TABLE player (pID VARCHAR, pName VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR), Find the state of the college which player Charles is attending. |
SELECT AVG(T1.HS), MAX(T1.HS) FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' | CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pID VARCHAR, decision VARCHAR), Find the average and maximum hours for the students whose tryout decision is yes. |
SELECT AVG(T1.HS) FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'no' | CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pID VARCHAR, decision VARCHAR), Find the average hours for the students whose tryout decision is no. |
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 | CREATE TABLE player (HS INTEGER, pID VARCHAR); CREATE TABLE tryout (pPos VARCHAR, pID VARCHAR), What is the maximum training hours for the students whose training hours is greater than 1000 in different positions? |
SELECT T1.cName FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID WHERE T2.pName LIKE 'D%' | CREATE TABLE tryout (cName VARCHAR, pID VARCHAR); CREATE TABLE player (pID VARCHAR, pName VARCHAR), Which colleges do the tryout players whose name starts with letter D go to? |
SELECT cName FROM tryout WHERE decision = 'yes' AND pPos = 'goalie' | CREATE TABLE tryout (cName VARCHAR, decision VARCHAR, pPos VARCHAR), Which college has any student who is a goalie and succeeded in the tryout. |
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) | CREATE TABLE college (cName VARCHAR, enr VARCHAR); CREATE TABLE tryout (pID VARCHAR, cName VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR), Find the name of the tryout players who are from the college with largest size. |
SELECT DISTINCT T1.state, T1.enr FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.decision = 'yes' | CREATE TABLE tryout (cName VARCHAR, decision VARCHAR); CREATE TABLE college (state VARCHAR, enr VARCHAR, cName VARCHAR), What is the state and enrollment of the colleges where have any students who got accepted in the tryout decision. |
SELECT cName FROM College WHERE enr < 13000 AND state = "AZ" UNION SELECT cName FROM College WHERE enr > 15000 AND state = "LA" | CREATE TABLE College (cName VARCHAR, enr VARCHAR, state VARCHAR), Find the names of either colleges in LA with greater than 15000 size or in state AZ with less than 13000 enrollment. |
SELECT cName FROM tryout WHERE pPos = 'goalie' INTERSECT SELECT cName FROM tryout WHERE pPos = 'mid' | CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR), Find the names of schools that have some students playing in goalie and mid positions. |
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' | CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR), Find the names of states that have some college students playing in goalie and mid positions. |
SELECT COUNT(*) FROM (SELECT cName FROM tryout WHERE pPos = 'goalie' INTERSECT SELECT cName FROM tryout WHERE pPos = 'mid') | CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR), How many schools have some students playing in goalie and mid positions. |
SELECT cName FROM tryout WHERE pPos = 'mid' EXCEPT SELECT cName FROM tryout WHERE pPos = 'goalie' | CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR), Find the names of schools that have some players in the mid position but not in the goalie position. |
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' | CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR), Find the names of states that have some college students playing in the mid position but not in the goalie position. |
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') | CREATE TABLE tryout (cName VARCHAR, pPos VARCHAR); CREATE TABLE college (state VARCHAR, cName VARCHAR), How many states that have some college students playing in the mid position but not in the goalie position. |
SELECT DISTINCT state FROM college WHERE enr < (SELECT MAX(enr) FROM college) | CREATE TABLE college (state VARCHAR, enr INTEGER), Find the states where have the colleges whose enrollments are less than the largest size. |
SELECT DISTINCT cName FROM college WHERE enr > (SELECT MIN(enr) FROM college WHERE state = 'FL') | CREATE TABLE college (cName VARCHAR, enr INTEGER, state VARCHAR), Find names of colleges with enrollment greater than that of some (at least one) college in the FL state. |
SELECT cName FROM college WHERE enr > (SELECT MAX(enr) FROM college WHERE state = 'FL') | CREATE TABLE college (cName VARCHAR, enr INTEGER, state VARCHAR), Find names of all colleges whose enrollment is greater than that of all colleges in the FL state. |
SELECT SUM(enr) FROM college WHERE NOT cName IN (SELECT cName FROM tryout WHERE pPos = "goalie") | CREATE TABLE college (enr INTEGER, cName VARCHAR, pPos VARCHAR); CREATE TABLE tryout (enr INTEGER, cName VARCHAR, pPos VARCHAR), What is the total number of enrollment of schools that do not have any goalie player? |
SELECT COUNT(DISTINCT state) FROM college WHERE enr > (SELECT AVG(enr) FROM college) | CREATE TABLE college (state VARCHAR, enr INTEGER), What is the number of states that has some college whose enrollment is larger than the average enrollment? |
SELECT COUNT(DISTINCT state) FROM college WHERE enr < (SELECT AVG(enr) FROM college) | CREATE TABLE college (state VARCHAR, enr INTEGER), What is the number of states that has some colleges whose enrollment is smaller than the average enrollment? |
SELECT COUNT(*) FROM device | CREATE TABLE device (Id VARCHAR), How many devices are there? |
SELECT Carrier FROM device ORDER BY Carrier | CREATE TABLE device (Carrier VARCHAR), List the carriers of devices in ascending alphabetical order. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.