question
stringlengths 12
244
| sql
stringlengths 22
468
|
---|---|
How many times was there a class A winner when Gregory-Portland was the class AAAA?
|
SELECT COUNT Class A FROM table WHERE Class AAAA = Gregory-Portland
|
How many Class AAAA winners where in 2002-03?
|
SELECT COUNT Class AAAA FROM table WHERE School Year = 2002-03
|
Who was the class AAAAA in 2008-09?
|
SELECT Class AAAAA FROM table WHERE School Year = 2008-09
|
Who was the Class AA winner when Plains was Class A winner and Lubbock was Class AAAAA winner?
|
SELECT Class AA FROM table WHERE Class A = Plains AND Class AAAAA = Lubbock
|
Who was the Class A winner in 2006-07?
|
SELECT Class A FROM table WHERE School Year = 2006-07
|
If class a is canadian and class aaa is wimberley, which possible school years could this fall on?
|
SELECT School Year FROM table WHERE Class AAA = Wimberley AND Class A = Canadian
|
For franklin of class aa, which school years does this occur?
|
SELECT School Year FROM table WHERE Class AA = Franklin
|
Which school years have a class a being lindsay and a class aaa being cuero?
|
SELECT School Year FROM table WHERE Class A = Lindsay AND Class AAA = Cuero
|
What season was the overall record 29-7?
|
SELECT Season FROM table WHERE Overall = 29-7
|
How far into the postseason did the Rams go when their record was 29-7?
|
SELECT Postseason FROM table WHERE Overall = 29-7
|
What was the Ram's conference record when they were the CBI champions?
|
SELECT Conference FROM table WHERE Postseason = CBI Champions
|
What season was the overall record 24-10?
|
SELECT Season FROM table WHERE Overall = 24-10
|
In what season was the overall record 29-7?
|
SELECT Season FROM table WHERE Overall = 29-7
|
What are the school years where class "AAA" is argyle?
|
SELECT School Year FROM table WHERE Class AAA = Argyle
|
What are all the AAA classes in the school years of 2005-06?
|
SELECT Class AAA FROM table WHERE School Year = 2005-06
|
What are all the AAAA classes in the schools years 2004-05?
|
SELECT Class AAAA FROM table WHERE School Year = 2004-05
|
What are all the school years where class AAAA is in Gregory-Portland?
|
SELECT School Year FROM table WHERE Class AAAA = Gregory-Portland
|
What are all the AAA classes in the school years of 2004-05?
|
SELECT Class AAA FROM table WHERE School Year = 2004-05
|
What are all classes for the position SLB?
|
SELECT Class FROM table WHERE Position = SLB
|
What are all weights for the number 27?
|
SELECT Weight FROM table WHERE Number = 27
|
What are all names for the position FS?
|
SELECT Name FROM table WHERE Position = FS
|
Name the call sign for the 17 physical
|
SELECT Call sign FROM table WHERE Physical = 17
|
Name the branding for forum communications
|
SELECT Branding FROM table WHERE Owner = Forum Communications
|
Name the number of branding for 31 physical
|
SELECT COUNT Branding FROM table WHERE Physical = 31
|
Name the number of virtual for NBC
|
SELECT COUNT Virtual FROM table WHERE Network = NBC
|
Name the virtual for Fox
|
SELECT COUNT Virtual FROM table WHERE Network = Fox
|
Name the owners for prairie public
|
SELECT COUNT Owner FROM table WHERE Branding = Prairie Public
|
Name the total number of class aaa for 2006-07
|
SELECT COUNT Class AAA FROM table WHERE School Year = 2006-07
|
Name the class aaaa for menard
|
SELECT Class AAAA FROM table WHERE Class A = Menard
|
Name the school year for class aaaa for wichita falls
|
SELECT School Year FROM table WHERE Class AAAA = Wichita Falls
|
Name the class a for carthage
|
SELECT Class A FROM table WHERE Class AAAA = Carthage
|
What is the original title of europe for dummies?
|
SELECT Original title FROM table WHERE English title = Europe for Dummies
|
What is the English version of Mariusz Szczygieł book?
|
SELECT English title FROM table WHERE Author = Mariusz Szczygieł
|
who is the the pole position with date being august 10
|
SELECT Pole position FROM table WHERE Date = August 10
|
how many winning team with circuit being road america
|
SELECT COUNT Winning team FROM table WHERE Circuit = Road America
|
who is the the winning driver with pole position being paul tracy and race name being miller genuine draft 200
|
SELECT Winning driver FROM table WHERE Pole position = Paul Tracy AND Race Name = Miller Genuine Draft 200
|
who is the the pole position with rnd being 16
|
SELECT Pole position FROM table WHERE Rnd = 16
|
what's the race name with date being september 7
|
SELECT Race Name FROM table WHERE Date = September 7
|
what's the circuit with rnd being 5
|
SELECT Circuit FROM table WHERE Rnd = 5
|
What is the number of appearances where the most recent final result is 1999, beat Genk 3-1?
|
SELECT COUNT # appearances FROM table WHERE Most recent final = 1999, beat Genk 3-1
|
What is the number of runner-up results for the years (won in bold) 1984, 2010?
|
SELECT MAX # runner-up FROM table WHERE years (won in bold) = 1984, 2010
|
What is the most recent final result for the years (won in bold) 1979?
|
SELECT Most recent final FROM table WHERE years (won in bold) = 1979
|
what's the title with original air date being september23,1995
|
SELECT Title FROM table WHERE Original air date = September23,1995
|
who wrote with original air date being september23,1995
|
SELECT Written by FROM table WHERE Original air date = September23,1995
|
who directed with original air date being november18,1995
|
SELECT Directed by FROM table WHERE Original air date = November18,1995
|
What percentages of social democratic correspond to a 5.5% left bloc?
|
SELECT Social Democratic FROM table WHERE Left Bloc = 5.5%
|
When was there 8.9% Green-Communist?
|
SELECT Date Released FROM table WHERE Green-Communist = 8.9%
|
How many socialists correspond to a 7.5% People's Party?
|
SELECT COUNT Socialist FROM table WHERE Peoples Party = 7.5%
|
What are all percentages of Left Block when there is a 28.7% Social Democratic?
|
SELECT Left Bloc FROM table WHERE Social Democratic = 28.7%
|
If Socialist is at 46.1%, what are all percentages for social democratic?
|
SELECT Social Democratic FROM table WHERE Socialist = 46.1%
|
How many percentages of Left Bloc correspond to a 32.1% Social Democratic?
|
SELECT COUNT Left Bloc FROM table WHERE Social Democratic = 32.1%
|
What is the NFL team of the player whose college is Minnesota?
|
SELECT NFL Team FROM table WHERE College = Minnesota
|
What college did the defensive back attend?
|
SELECT College FROM table WHERE Position = Defensive Back
|
What is the pick number of the player whose college is Florida State?
|
SELECT Pick # FROM table WHERE College = Florida State
|
How many colleges did pick number 269 attend?
|
SELECT COUNT College FROM table WHERE Pick # = 269
|
How many picks played Tight end?
|
SELECT COUNT Pick # FROM table WHERE Position = Tight End
|
What is the position of the player whose college is Western Kentucky?
|
SELECT Position FROM table WHERE College = Western Kentucky
|
What position does Robert Brooks play?
|
SELECT COUNT Position FROM table WHERE Player = Robert Brooks
|
Which team does Robert Brooks play with?
|
SELECT NFL Team FROM table WHERE Player = Robert Brooks
|
Which team picked from South Carolina college?
|
SELECT NFL Team FROM table WHERE College = South Carolina
|
Which college was the wide receiver whose pick was less than 130.0 picked from?
|
SELECT College FROM table WHERE Position = Wide Receiver AND Pick # < 130.0
|
What position(s) does the player drafted #34 play?
|
SELECT Position FROM table WHERE Pick # = 34
|
What is the highest pick number?
|
SELECT MAX Pick # FROM table
|
What number picked were players from arizona state picked?
|
SELECT Pick # FROM table WHERE College = Arizona State
|
What NFL team does player keith woodside play for?
|
SELECT NFL Team FROM table WHERE Player = Keith Woodside
|
what's the player with college being penn state
|
SELECT Player FROM table WHERE College = Penn State
|
what's the position with college being usc
|
SELECT Position FROM table WHERE College = USC
|
how many college with player being rich voltzke
|
SELECT COUNT College FROM table WHERE Player = Rich Voltzke
|
what's the college with position being placekicker
|
SELECT College FROM table WHERE Position = Placekicker
|
who is the the player where pick # is 64
|
SELECT Player FROM table WHERE Pick # = 64
|
What day were the Denver Broncos the opponent?
|
SELECT Date FROM table WHERE Opponent = Denver Broncos
|
What day was the oppenent the detroit lions?
|
SELECT Date FROM table WHERE Opponent = Detroit Lions
|
List the record of 0-1 from the table?
|
SELECT Week FROM table WHERE Record = 0-1
|
Type the record details if any result has L 3-6 in it?
|
SELECT Record FROM table WHERE Result = L 3-6
|
Find the least value of attendance?
|
SELECT MIN Attendance FROM table
|
type the attendance for playing with tampa bay buccaneers?
|
SELECT Attendance FROM table WHERE Opponent = Tampa Bay Buccaneers
|
How many times was obamacare: fed/ state/ partnership recorded for Louisiana?
|
SELECT COUNT Obamacare: Fed/ State/ Partnership FROM table WHERE State = Louisiana
|
How many numbers were recorded under revenue when revenue per capita was $6,126?
|
SELECT COUNT Revenue (millions) FROM table WHERE Revenue per capita = $6,126
|
How many times was presidential majority 2000/2004 recorded when obamacare: fed/ state/ partnership was Utah shop?
|
SELECT COUNT Presidential majority 2000/2004 FROM table WHERE Obamacare: Fed/ State/ Partnership = Utah shop
|
What was the spending per capita when the revenue per capita was $7,755?
|
SELECT Spending per capita FROM table WHERE Revenue per capita = $7,755
|
What was the recorded result under presidential majority 2000/2004 when the presiditial majority in 2012 was non-voting?
|
SELECT Presidential majority 2000/2004 FROM table WHERE Presidential majority 2012 = Non-voting
|
How many times was revenue in millions recorded when the spending per capita was $6,736?
|
SELECT COUNT Revenue (millions) FROM table WHERE Spending per capita = $6,736
|
What is the largest number of DVDs?
|
SELECT MAX DVD No. FROM table
|
What is the highest number of episodes?
|
SELECT MAX Ep No. FROM table
|
What is the most recent release date?
|
SELECT MAX Release date FROM table
|
How many release dates does volume 4 DVD have?
|
SELECT COUNT Release date FROM table WHERE DVD name = Volume 4
|
what is the arrival time for no. 14?
|
SELECT Arrival FROM table WHERE No. = 14
|
what is the arrival time where the station code is awy?
|
SELECT Arrival FROM table WHERE Station Code = AWY
|
what amount of stations have station code is awy?
|
SELECT COUNT Station FROM table WHERE Station Code = AWY
|
what is the arrival time where station code is pnvl?
|
SELECT Arrival FROM table WHERE Station Code = PNVL
|
Which stations had volume of 5088 in 2004-05?
|
SELECT Station Name FROM table WHERE 2004–05 = 5088
|
How many stations in 2011-12 had volume of 11580 in 2008-09?
|
SELECT COUNT 2011–12 FROM table WHERE 2008–09 = 11580
|
What was the least volume recorded in 2011-12 when 2008-09 had 21652?
|
SELECT MIN 2011–12 FROM table WHERE 2008–09 = 21652
|
How many years was the total 402?
|
SELECT COUNT Years FROM table WHERE Total = 402
|
Who won the young rider classification in Stage 9 where the mountain classification was Emanuele Sella?
|
SELECT Young rider classification FROM table WHERE Mountains classification = Emanuele Sella AND Stage = 9
|
Who is the general classification leader for stage 3?
|
SELECT General classification FROM table WHERE Stage = 3
|
Who won the points classifications in the stage where Matteo Priamo was the winner?
|
SELECT COUNT Points classification FROM table WHERE Winner = Matteo Priamo
|
Who was awarded the young ride classification leader when the winner was Marzio Bruseghin?
|
SELECT Young rider classification FROM table WHERE Winner = Marzio Bruseghin
|
Which title did Neil Affleck direct?
|
SELECT Title FROM table WHERE Directed by = Neil Affleck
|
What is the first number in series that had the production code 1ACX03?
|
SELECT MAX No. in series FROM table WHERE Production code = 1ACX03
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.