question
stringlengths
12
244
sql
stringlengths
22
468
Name the district for 1994
SELECT District FROM table WHERE First elected = 1994
Name the party for pennsylvania 10
SELECT Party FROM table WHERE District = Pennsylvania 10
Name the result for glenn thompson
SELECT Result FROM table WHERE Incumbent = Glenn Thompson
Name the number of district for bill shuster
SELECT COUNT District FROM table WHERE Incumbent = Bill Shuster
List the total play time for 11 starts.
SELECT MAX Minutes FROM table WHERE Starts = 11
In what region is the enrollment ratio in primary 94.40?
SELECT Region FROM table WHERE Primary (6–13 years) = 94.40
What is the enrollment ratio for preschool in the region where enrollment ratio for tertiary is 29.55?
SELECT Preschool (0–5 years) FROM table WHERE Tertiary (18–24 years) = 29.55
What is the enrollment ratio in primary in the region where the enrollment ratio in preschool is 38.14?
SELECT Primary (6–13 years) FROM table WHERE Preschool (0–5 years) = 38.14
What is the enrollment ratio in tertiary in the region where the enrollment ration in secondary is 71.43?
SELECT Tertiary (18–24 years) FROM table WHERE Secondary (14–17 years) = 71.43
What is the enrollment ratio in preschool in the region where the enrollment ratio in primary is 93.10?
SELECT Preschool (0–5 years) FROM table WHERE Primary (6–13 years) = 93.10
What is the enrollment ration in primary in the region where the enrollment ratio in preschool is 50.23?
SELECT Primary (6–13 years) FROM table WHERE Preschool (0–5 years) = 50.23
what is the number of registered female voters where the percentage is 108.6%
SELECT Enrolled women FROM table WHERE E/VAP ratio Women = 108.6%
what is the percentage of male voters where the level of maturity is 123726
SELECT E/VAP ratio Total FROM table WHERE Men of voting age = 123726
How many regions had 153 women prison inmates?
SELECT COUNT Incarceration rate Total FROM table WHERE Prison inmates Women = 153
How many regions had an incarceration rate for females of 63?
SELECT COUNT Incarceration rate Total FROM table WHERE Incarceration rate Female = 63
What is the male incarceration rate of maule?
SELECT MAX Incarceration rate Male FROM table WHERE Region = Maule
Name the region for automatic washing machine being 60.9%
SELECT Region FROM table WHERE Automatic washing machine = 60.9%
Name the fixed telephone line for 25.6% vehicle
SELECT Fixed telephone line FROM table WHERE Vehicle = 25.6%
Name the region for 39.2% vehicle
SELECT Region FROM table WHERE Vehicle = 39.2%
What region has 0.3% solar panel?
SELECT Region FROM table WHERE Solar panel = 0.3%
What is atacama's percentage of solar panels?
SELECT Solar panel FROM table WHERE Region = Atacama
Which region has 0.6% none?
SELECT Region FROM table WHERE None = 0.6%
What is the percentage of public network in the region that has 0.1% other sources, 0.0% solar, and is named maule?
SELECT Public network FROM table WHERE Other source = 0.1% AND Solar panel = 0.0% AND Region = Maule
How many regions have 0.5% solar panels?
SELECT COUNT Public network FROM table WHERE Solar panel = 0.5%
Who directed "you are not in any trouble, are you?"
SELECT Directed by FROM table WHERE Title = "You Are Not in Any Trouble, Are You?"
What is the production number of 3-04?
SELECT MAX Prod No. FROM table WHERE Episode No. = 3-04
What was the title of the episode that aired on October 7, 1965?
SELECT Title FROM table WHERE Original airdate UK = October 7, 1965
When don inglis and ralph smart are the writers how many episode numbers are there?
SELECT COUNT Episode No. FROM table WHERE Written by = Don Inglis and Ralph Smart
Name the number of schools for 1011/12 is 26
SELECT COUNT Institute FROM table WHERE 2011/12 = 26
Name the 2013/14 for 2012/13 is 36
SELECT 2013/14 FROM table WHERE 2012/13 = 36
Name the number of regions for 2013/14 being 27
SELECT COUNT Region FROM table WHERE 2013/14 = 27
Name the most 2012/13 for university of cambridge
SELECT MAX 2012/13 FROM table WHERE Institute = University of Cambridge
Name the birth date for taavi sadam
SELECT Birth Date FROM table WHERE Player = Taavi Sadam
Name the height for asko esna
SELECT Height FROM table WHERE Player = Asko Esna
Name the birth date for estonia for spiker and height of 189
SELECT Birth Date FROM table WHERE Nationality = Estonia AND Position = Spiker AND Height = 189
Name the player for 199 height
SELECT Player FROM table WHERE Height = 199
if the 2.09 million US viewers watched this episode, who was it written by
SELECT Written by FROM table WHERE U.S. Viewers (in millions) = 2.09
If the episode was directed by Michael Offer, what was the episode number?
SELECT MIN No. FROM table WHERE Directed by = Michael Offer
How many directors directed the episode titled "Incoming"?
SELECT COUNT Directed by FROM table WHERE Title = "Incoming"
If the episode was directed by Michael Offer, how many US Viewers watched it?
SELECT U.S. Viewers (in millions) FROM table WHERE Directed by = Michael Offer
How many US viewers watched the episode titled "The Way through"?
SELECT U.S. Viewers (in millions) FROM table WHERE Title = "The Way Through"
What draft pick number was the player with the position DL?
SELECT Pick # FROM table WHERE Position = DL
How many draft picks were for Winnipeg blue bombers?
SELECT COUNT Pick # FROM table WHERE CFL Team = Winnipeg Blue Bombers
How many colleges provided players with positions LB?
SELECT COUNT College FROM table WHERE Position = LB
What college did the player come from whose position is DL?
SELECT College FROM table WHERE Position = DL
What team got a draft pick player from McGill?
SELECT CFL Team FROM table WHERE College = McGill
What number draft pick was Oklahoma State's Greg Hill in 1983?
SELECT Pick # FROM table WHERE College = Oklahoma State AND Player = Greg Hill
What number pick was Danny Walters in the 1983 NFL draft?
SELECT COUNT Pick # FROM table WHERE Player = Danny Walters
What were the pick numbers of the defensive tackles chosen by the New Orleans Saints in the 1983 draft?
SELECT Position FROM table WHERE NFL Team = New Orleans Saints
What number draft pick was linebacker Steve Maidlow in the 1983 NFL Draft?
SELECT Position FROM table WHERE Player = Steve Maidlow
In which colleges is the NFL Team New York Giants and with the position defensive back?
SELECT College FROM table WHERE NFL Team = New York Giants AND Position = Defensive back
What NFL Team has the player Danny Triplett with the position linebacker?
SELECT NFL Team FROM table WHERE Position = Linebacker AND Player = Danny Triplett
What are the NFL Teams in College North Texas State?
SELECT NFL Team FROM table WHERE College = North Texas State
How many colleges have the NFL Team Buffalo Bills?
SELECT COUNT College FROM table WHERE NFL Team = Buffalo Bills
Who are the all the players whose position is guard in college Clemson?
SELECT Player FROM table WHERE College = Clemson AND Position = Guard
What NFL Teams have the player Aaron Williams?
SELECT NFL Team FROM table WHERE Player = Aaron Williams
Name the least pick number for the denver broncos
SELECT MIN Pick # FROM table WHERE NFL Team = Denver Broncos
Name the position for pick number 39
SELECT Position FROM table WHERE Pick # = 39
Name the total number of pick number being henry ellard
SELECT COUNT Pick # FROM table WHERE Player = Henry Ellard
Name the player for new orleans saints
SELECT Player FROM table WHERE NFL Team = New Orleans Saints
Name the number of players for georgia tech
SELECT COUNT Player FROM table WHERE College = Georgia Tech
Name the most pick number for guard and kansas city chiefs
SELECT MAX Pick # FROM table WHERE Position = Guard AND NFL Team = Kansas City Chiefs
Name the nfl team for pick number 151
SELECT NFL Team FROM table WHERE Pick # = 151
Name the college for houston oilers
SELECT College FROM table WHERE NFL Team = Houston Oilers
Name the most pick number for illinois
SELECT MAX Pick # FROM table WHERE College = Illinois
Name the total number for nfl team for ellis gardner
SELECT COUNT NFL Team FROM table WHERE Player = Ellis Gardner
Name the position for delaware
SELECT Position FROM table WHERE College = Delaware
Name the nfl team for eric williams
SELECT NFL Team FROM table WHERE Player = Eric Williams
how many l2 cache has a clock speed to tdp ratio of 46.7?
SELECT COUNT L2 Cache FROM table WHERE Clock Speed to TDP ratio (MHz/W) = 46.7
What NFL team picked a player from Jackson State?
SELECT NFL Team FROM table WHERE College = Jackson State
What position was the draft pick that came from Langston?
SELECT Position FROM table WHERE College = Langston
How many players were the running back draft pick for the New England Patriots?
SELECT COUNT Player FROM table WHERE NFL Team = New England Patriots AND Position = Running back
Who was the draft pick for Kansas City Chiefs?
SELECT Player FROM table WHERE NFL Team = Kansas City Chiefs
What college did the tight end draft pick for New England Patriots come from?
SELECT College FROM table WHERE NFL Team = New England Patriots AND Position = Tight end
What is the Cuchumela Municipality minimum?
SELECT MIN Cuchumuela Municipality FROM table
If Villa Rivero Municipality if 7, what is the language?
SELECT Language FROM table WHERE Villa Rivero Municipality = 7
What is the language total number if the Tacachi Municipality is 3?
SELECT COUNT Language FROM table WHERE Tacachi Municipality = 3
If the language is another native, what is the San Benito Municipality total number?
SELECT COUNT San Benito Municipality FROM table WHERE Language = Another native
If the language is Spanish, what is the Vinto Municipality minimum?
SELECT MIN Vinto Municipality FROM table WHERE Language = Spanish
If the Vinto Municipality is 18630, what is the Quillacollo Municipality?
SELECT MAX Quillacollo Municipality FROM table WHERE Vinto Municipality = 18630
What is the Sipe Sipe Municipality minimum if the language is Quechua?
SELECT MIN Sipe Sipe Municipality FROM table WHERE Language = Quechua
If the language is Native and Spanish, what is the Vinto Municipality minimum?
SELECT MIN Vinto Municipality FROM table WHERE Language = Native and Spanish
If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum?
SELECT MIN Vinto Municipality FROM table WHERE Quillacollo Municipality = 93131
Name the language for villa 1167
SELECT Language FROM table WHERE Villa Alcalá Municipality = 1167
Name the most padilla municipality for quechua
SELECT MAX Padilla Municipality FROM table WHERE Language = Quechua
Name the language for sopachuy 10
SELECT Language FROM table WHERE Sopachuy Municipality = 10
Name the number of tomina for villa alcala for 176
SELECT COUNT Tomina Municipality FROM table WHERE Villa Alcalá Municipality = 176
Name the least tomina for el villar being 4
SELECT MIN Tomina Municipality FROM table WHERE El Villar Municipality = 4
Name the language for el villar 1264
SELECT Language FROM table WHERE El Villar Municipality = 1264
Name the total number of games for goals against being 352
SELECT COUNT Games FROM table WHERE Goals against = 352
Name the total number of games for lost being 41
SELECT COUNT Games FROM table WHERE Lost = 41
Name the most goals for 56 points
SELECT MAX Goals for FROM table WHERE Points = 56
Name the number of won for goals for being 274
SELECT COUNT Won FROM table WHERE Goals for = 274
When the quiabaya municipality is 2 what is the combaya municipality?
SELECT Combaya Municipality FROM table WHERE Quiabaya Municipality = 2
What is the guanay municipality when the tacacoma municipality is 4.321?
SELECT Guanay Municipality FROM table WHERE Tacacoma Municipality = 4.321
How many people in the sorata municipality when the quiabaya municipality has 33?
SELECT Sorata Municipality FROM table WHERE Quiabaya Municipality = 33
What is the number for combaya municipality when quiabaya municipality is 33?
SELECT Combaya Municipality FROM table WHERE Quiabaya Municipality = 33
tipuani municipality when tacacoma municipality is 6?
SELECT Tipuani Municipality FROM table WHERE Tacacoma Municipality = 6
What is the number for the guanay municipality when combaya municipality is 0?
SELECT Guanay Municipality FROM table WHERE Combaya Municipality = 0
What is the first year where the assassination attempt was at Martyrs' Mausoleum, Rangoon, Burma?
SELECT MIN Year FROM table WHERE Location = Martyrs' Mausoleum, Rangoon, Burma