answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT school_year FROM table_14603212_5 WHERE class_aAA = Argyle
CREATE TABLE table_14603212_5 (school_year VARCHAR, class_aAA VARCHAR, Argyle VARCHAR)
What are the school years where class "AAA" is argyle?
SELECT class_aAA FROM table_14603212_5 WHERE school_year = "2005-06"
CREATE TABLE table_14603212_5 (class_aAA VARCHAR, school_year VARCHAR)
What are all the AAA classes in the school years of 2005-06?
SELECT class_aAAA FROM table_14603212_5 WHERE school_year = "2004-05"
CREATE TABLE table_14603212_5 (class_aAAA VARCHAR, school_year VARCHAR)
What are all the AAAA classes in the schools years 2004-05?
SELECT school_year FROM table_14603212_5 WHERE class_aAAA = Gregory - Portland
CREATE TABLE table_14603212_5 (school_year VARCHAR, class_aAAA VARCHAR, Gregory VARCHAR, Portland VARCHAR)
What are all the school years where class AAAA is in Gregory-Portland?
SELECT class_aAA FROM table_14603212_5 WHERE school_year = "2004-05"
CREATE TABLE table_14603212_5 (class_aAA VARCHAR, school_year VARCHAR)
What are all the AAA classes in the school years of 2004-05?
SELECT class FROM table_14624447_24 WHERE position = "SLB"
CREATE TABLE table_14624447_24 (class VARCHAR, position VARCHAR)
What are all classes for the position SLB?
SELECT weight FROM table_14624447_24 WHERE number = 27
CREATE TABLE table_14624447_24 (weight VARCHAR, number VARCHAR)
What are all weights for the number 27?
SELECT name FROM table_14624447_24 WHERE position = "FS"
CREATE TABLE table_14624447_24 (name VARCHAR, position VARCHAR)
What are all names for the position FS?
SELECT call_sign FROM table_14623167_1 WHERE physical = 17
CREATE TABLE table_14623167_1 (call_sign VARCHAR, physical VARCHAR)
Name the call sign for the 17 physical
SELECT branding FROM table_14623167_1 WHERE owner = "Forum Communications"
CREATE TABLE table_14623167_1 (branding VARCHAR, owner VARCHAR)
Name the branding for forum communications
SELECT COUNT(branding) FROM table_14623167_1 WHERE physical = 31
CREATE TABLE table_14623167_1 (branding VARCHAR, physical VARCHAR)
Name the number of branding for 31 physical
SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = "NBC"
CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR)
Name the number of virtual for NBC
SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = "Fox"
CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR)
Name the virtual for Fox
SELECT COUNT(owner) FROM table_14623167_1 WHERE branding = "Prairie Public"
CREATE TABLE table_14623167_1 (owner VARCHAR, branding VARCHAR)
Name the owners for prairie public
SELECT COUNT(class_aAA) FROM table_14630796_1 WHERE school_year = "2006-07"
CREATE TABLE table_14630796_1 (class_aAA VARCHAR, school_year VARCHAR)
Name the total number of class aaa for 2006-07
SELECT class_aAAA FROM table_14630796_1 WHERE class_a = "Menard"
CREATE TABLE table_14630796_1 (class_aAAA VARCHAR, class_a VARCHAR)
Name the class aaaa for menard
SELECT class_a FROM table_14630796_1 WHERE class_aAAA = Carthage
CREATE TABLE table_14630796_1 (class_a VARCHAR, class_aAAA VARCHAR, Carthage VARCHAR)
Name the class a for carthage
SELECT original_title FROM table_14631909_1 WHERE english_title = "Europe for Dummies"
CREATE TABLE table_14631909_1 (original_title VARCHAR, english_title VARCHAR)
What is the original title of europe for dummies?
SELECT english_title FROM table_14631909_1 WHERE author = "Mariusz Szczygieł"
CREATE TABLE table_14631909_1 (english_title VARCHAR, author VARCHAR)
What is the English version of Mariusz Szczygieł book?
SELECT pole_position FROM table_14638077_2 WHERE date = "August 10"
CREATE TABLE table_14638077_2 (pole_position VARCHAR, date VARCHAR)
who is the the pole position with date being august 10
SELECT COUNT(winning_team) FROM table_14638077_2 WHERE circuit = "Road America"
CREATE TABLE table_14638077_2 (winning_team VARCHAR, circuit VARCHAR)
how many winning team with circuit being road america
SELECT winning_driver FROM table_14638077_2 WHERE pole_position = "Paul Tracy" AND race_name = "Miller Genuine Draft 200"
CREATE TABLE table_14638077_2 (winning_driver VARCHAR, pole_position VARCHAR, race_name VARCHAR)
who is the the winning driver with pole position being paul tracy and race name being miller genuine draft 200
SELECT pole_position FROM table_14638077_2 WHERE rnd = 16
CREATE TABLE table_14638077_2 (pole_position VARCHAR, rnd VARCHAR)
who is the the pole position with rnd being 16
SELECT race_name FROM table_14638077_2 WHERE date = "September 7"
CREATE TABLE table_14638077_2 (race_name VARCHAR, date VARCHAR)
what's the race name with date being september 7
SELECT circuit FROM table_14638077_2 WHERE rnd = 5
CREATE TABLE table_14638077_2 (circuit VARCHAR, rnd VARCHAR)
what's the circuit with rnd being 5
SELECT COUNT(_number_appearances) FROM table_1463332_2 WHERE most_recent_final = "1999, beat Genk 3-1"
CREATE TABLE table_1463332_2 (_number_appearances VARCHAR, most_recent_final VARCHAR)
What is the number of appearances where the most recent final result is 1999, beat Genk 3-1?
SELECT MAX(_number_runner_up) FROM table_1463332_2 WHERE years__won_in_bold_ = "1984, 2010"
CREATE TABLE table_1463332_2 (_number_runner_up INTEGER, years__won_in_bold_ VARCHAR)
What is the number of runner-up results for the years (won in bold) 1984, 2010?
SELECT most_recent_final FROM table_1463332_2 WHERE years__won_in_bold_ = "1979"
CREATE TABLE table_1463332_2 (most_recent_final VARCHAR, years__won_in_bold_ VARCHAR)
What is the most recent final result for the years (won in bold) 1979?
SELECT title FROM table_14637853_3 WHERE original_air_date = "September23,1995"
CREATE TABLE table_14637853_3 (title VARCHAR, original_air_date VARCHAR)
what's the title with original air date being september23,1995
SELECT written_by FROM table_14637853_3 WHERE original_air_date = "September23,1995"
CREATE TABLE table_14637853_3 (written_by VARCHAR, original_air_date VARCHAR)
who wrote with original air date being september23,1995
SELECT directed_by FROM table_14637853_3 WHERE original_air_date = "November18,1995"
CREATE TABLE table_14637853_3 (directed_by VARCHAR, original_air_date VARCHAR)
who directed with original air date being november18,1995
SELECT social_democratic FROM table_1463383_1 WHERE left_bloc = "5.5%"
CREATE TABLE table_1463383_1 (social_democratic VARCHAR, left_bloc VARCHAR)
What percentages of social democratic correspond to a 5.5% left bloc?
SELECT date_released FROM table_1463383_1 WHERE green_communist = "8.9%"
CREATE TABLE table_1463383_1 (date_released VARCHAR, green_communist VARCHAR)
When was there 8.9% Green-Communist?
SELECT COUNT(socialist) FROM table_1463383_1 WHERE peoples_party = "7.5%"
CREATE TABLE table_1463383_1 (socialist VARCHAR, peoples_party VARCHAR)
How many socialists correspond to a 7.5% People's Party?
SELECT left_bloc FROM table_1463383_1 WHERE social_democratic = "28.7%"
CREATE TABLE table_1463383_1 (left_bloc VARCHAR, social_democratic VARCHAR)
What are all percentages of Left Block when there is a 28.7% Social Democratic?
SELECT social_democratic FROM table_1463383_1 WHERE socialist = "46.1%"
CREATE TABLE table_1463383_1 (social_democratic VARCHAR, socialist VARCHAR)
If Socialist is at 46.1%, what are all percentages for social democratic?
SELECT COUNT(left_bloc) FROM table_1463383_1 WHERE social_democratic = "32.1%"
CREATE TABLE table_1463383_1 (left_bloc VARCHAR, social_democratic VARCHAR)
How many percentages of Left Bloc correspond to a 32.1% Social Democratic?
SELECT nfl_team FROM table_14650162_1 WHERE college = "Minnesota"
CREATE TABLE table_14650162_1 (nfl_team VARCHAR, college VARCHAR)
What is the NFL team of the player whose college is Minnesota?
SELECT college FROM table_14650162_1 WHERE position = "Defensive Back"
CREATE TABLE table_14650162_1 (college VARCHAR, position VARCHAR)
What college did the defensive back attend?
SELECT pick__number FROM table_14650162_1 WHERE college = "Florida State"
CREATE TABLE table_14650162_1 (pick__number VARCHAR, college VARCHAR)
What is the pick number of the player whose college is Florida State?
SELECT COUNT(college) FROM table_14650162_1 WHERE pick__number = 269
CREATE TABLE table_14650162_1 (college VARCHAR, pick__number VARCHAR)
How many colleges did pick number 269 attend?
SELECT COUNT(pick__number) FROM table_14650162_1 WHERE position = "Tight End"
CREATE TABLE table_14650162_1 (pick__number VARCHAR, position VARCHAR)
How many picks played Tight end?
SELECT position FROM table_14650162_1 WHERE college = "Western Kentucky"
CREATE TABLE table_14650162_1 (position VARCHAR, college VARCHAR)
What is the position of the player whose college is Western Kentucky?
SELECT COUNT(position) FROM table_14649522_1 WHERE player = "Robert Brooks"
CREATE TABLE table_14649522_1 (position VARCHAR, player VARCHAR)
What position does Robert Brooks play?
SELECT nfl_team FROM table_14649522_1 WHERE player = "Robert Brooks"
CREATE TABLE table_14649522_1 (nfl_team VARCHAR, player VARCHAR)
Which team does Robert Brooks play with?
SELECT nfl_team FROM table_14649522_1 WHERE college = "South Carolina"
CREATE TABLE table_14649522_1 (nfl_team VARCHAR, college VARCHAR)
Which team picked from South Carolina college?
SELECT college FROM table_14649522_1 WHERE position = "Wide Receiver" AND pick__number < 130.0
CREATE TABLE table_14649522_1 (college VARCHAR, position VARCHAR, pick__number VARCHAR)
Which college was the wide receiver whose pick was less than 130.0 picked from?
SELECT position FROM table_14650373_1 WHERE pick__number = 34
CREATE TABLE table_14650373_1 (position VARCHAR, pick__number VARCHAR)
What position(s) does the player drafted #34 play?
SELECT MAX(pick__number) FROM table_14650373_1
CREATE TABLE table_14650373_1 (pick__number INTEGER)
What is the highest pick number?
SELECT pick__number FROM table_14650373_1 WHERE college = "Arizona State"
CREATE TABLE table_14650373_1 (pick__number VARCHAR, college VARCHAR)
What number picked were players from arizona state picked?
SELECT nfl_team FROM table_14650373_1 WHERE player = "Keith Woodside"
CREATE TABLE table_14650373_1 (nfl_team VARCHAR, player VARCHAR)
What NFL team does player keith woodside play for?
SELECT player FROM table_14655985_1 WHERE college = "Penn State"
CREATE TABLE table_14655985_1 (player VARCHAR, college VARCHAR)
what's the player with college being penn state
SELECT position FROM table_14655985_1 WHERE college = "USC"
CREATE TABLE table_14655985_1 (position VARCHAR, college VARCHAR)
what's the position with college being usc
SELECT COUNT(college) FROM table_14655985_1 WHERE player = "Rich Voltzke"
CREATE TABLE table_14655985_1 (college VARCHAR, player VARCHAR)
how many college with player being rich voltzke
SELECT college FROM table_14655985_1 WHERE position = "Placekicker"
CREATE TABLE table_14655985_1 (college VARCHAR, position VARCHAR)
what's the college with position being placekicker
SELECT player FROM table_14655985_1 WHERE pick__number = 64
CREATE TABLE table_14655985_1 (player VARCHAR, pick__number VARCHAR)
who is the the player where pick # is 64
SELECT date FROM table_14655917_1 WHERE opponent = "Denver Broncos"
CREATE TABLE table_14655917_1 (date VARCHAR, opponent VARCHAR)
What day were the Denver Broncos the opponent?
SELECT date FROM table_14655917_1 WHERE opponent = "Detroit Lions"
CREATE TABLE table_14655917_1 (date VARCHAR, opponent VARCHAR)
What day was the oppenent the detroit lions?
SELECT week FROM table_14656147_2 WHERE record = "0-1"
CREATE TABLE table_14656147_2 (week VARCHAR, record VARCHAR)
List the record of 0-1 from the table?
SELECT record FROM table_14656147_2 WHERE result = "L 3-6"
CREATE TABLE table_14656147_2 (record VARCHAR, result VARCHAR)
Type the record details if any result has L 3-6 in it?
SELECT MIN(attendance) FROM table_14656147_2
CREATE TABLE table_14656147_2 (attendance INTEGER)
Find the least value of attendance?
SELECT attendance FROM table_14656147_2 WHERE opponent = "Tampa Bay Buccaneers"
CREATE TABLE table_14656147_2 (attendance VARCHAR, opponent VARCHAR)
type the attendance for playing with tampa bay buccaneers?
SELECT COUNT(revenue__millions_) FROM table_14700336_1 WHERE revenue_per_capita = "$6,126"
CREATE TABLE table_14700336_1 (revenue__millions_ VARCHAR, revenue_per_capita VARCHAR)
How many numbers were recorded under revenue when revenue per capita was $6,126?
SELECT spending_per_capita FROM table_14700336_1 WHERE revenue_per_capita = "$7,755"
CREATE TABLE table_14700336_1 (spending_per_capita VARCHAR, revenue_per_capita VARCHAR)
What was the spending per capita when the revenue per capita was $7,755?
SELECT presidential_majority_2000_2004 FROM table_14700336_1 WHERE presidential_majority_2012 = "Non-voting"
CREATE TABLE table_14700336_1 (presidential_majority_2000_2004 VARCHAR, presidential_majority_2012 VARCHAR)
What was the recorded result under presidential majority 2000/2004 when the presiditial majority in 2012 was non-voting?
SELECT COUNT(revenue__millions_) FROM table_14700336_1 WHERE spending_per_capita = "$6,736"
CREATE TABLE table_14700336_1 (revenue__millions_ VARCHAR, spending_per_capita VARCHAR)
How many times was revenue in millions recorded when the spending per capita was $6,736?
SELECT MAX(dvd_no) FROM table_1467951_4
CREATE TABLE table_1467951_4 (dvd_no INTEGER)
What is the largest number of DVDs?
SELECT MAX(ep_no) FROM table_1467951_4
CREATE TABLE table_1467951_4 (ep_no INTEGER)
What is the highest number of episodes?
SELECT MAX(release_date) FROM table_1467951_4
CREATE TABLE table_1467951_4 (release_date INTEGER)
What is the most recent release date?
SELECT COUNT(release_date) FROM table_1467951_4 WHERE dvd_name = "Volume 4"
CREATE TABLE table_1467951_4 (release_date VARCHAR, dvd_name VARCHAR)
How many release dates does volume 4 DVD have?
SELECT arrival FROM table_14688744_2 WHERE no = 14
CREATE TABLE table_14688744_2 (arrival VARCHAR, no VARCHAR)
what is the arrival time for no. 14?
SELECT arrival FROM table_14688744_2 WHERE station_code = "AWY"
CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR)
what is the arrival time where the station code is awy?
SELECT COUNT(station) FROM table_14688744_2 WHERE station_code = "AWY"
CREATE TABLE table_14688744_2 (station VARCHAR, station_code VARCHAR)
what amount of stations have station code is awy?
SELECT arrival FROM table_14688744_2 WHERE station_code = "PNVL"
CREATE TABLE table_14688744_2 (arrival VARCHAR, station_code VARCHAR)
what is the arrival time where station code is pnvl?
SELECT COUNT(years) FROM table_14707564_1 WHERE total = 402
CREATE TABLE table_14707564_1 (years VARCHAR, total VARCHAR)
How many years was the total 402?
SELECT young_rider_classification FROM table_14710984_2 WHERE mountains_classification = "Emanuele Sella" AND stage = 9
CREATE TABLE table_14710984_2 (young_rider_classification VARCHAR, mountains_classification VARCHAR, stage VARCHAR)
Who won the young rider classification in Stage 9 where the mountain classification was Emanuele Sella?
SELECT general_classification FROM table_14710984_2 WHERE stage = 3
CREATE TABLE table_14710984_2 (general_classification VARCHAR, stage VARCHAR)
Who is the general classification leader for stage 3?
SELECT COUNT(points_classification) FROM table_14710984_2 WHERE winner = "Matteo Priamo"
CREATE TABLE table_14710984_2 (points_classification VARCHAR, winner VARCHAR)
Who won the points classifications in the stage where Matteo Priamo was the winner?
SELECT young_rider_classification FROM table_14710984_2 WHERE winner = "Marzio Bruseghin"
CREATE TABLE table_14710984_2 (young_rider_classification VARCHAR, winner VARCHAR)
Who was awarded the young ride classification leader when the winner was Marzio Bruseghin?
SELECT title FROM table_14724369_1 WHERE directed_by = "Neil Affleck"
CREATE TABLE table_14724369_1 (title VARCHAR, directed_by VARCHAR)
Which title did Neil Affleck direct?
SELECT MAX(no_in_series) FROM table_14724369_1 WHERE production_code = "1ACX03"
CREATE TABLE table_14724369_1 (no_in_series INTEGER, production_code VARCHAR)
What is the first number in series that had the production code 1ACX03?
SELECT title FROM table_14724369_1 WHERE production_code = "1ACX04"
CREATE TABLE table_14724369_1 (title VARCHAR, production_code VARCHAR)
Which title had the production code 1ACX04?
SELECT original_air_date FROM table_14724369_1 WHERE directed_by = "Michael DiMartino"
CREATE TABLE table_14724369_1 (original_air_date VARCHAR, directed_by VARCHAR)
When did the show directed by Michael Dimartino first air?
SELECT no_in_series FROM table_14724369_1 WHERE directed_by = "Monte Young"
CREATE TABLE table_14724369_1 (no_in_series VARCHAR, directed_by VARCHAR)
Which series numbers were directed by Monte Young?
SELECT COUNT(directed_by) FROM table_14724369_1 WHERE written_by = "Chris Sheridan"
CREATE TABLE table_14724369_1 (directed_by VARCHAR, written_by VARCHAR)
How many people directed the show written by Chris Sheridan?
SELECT regular_season FROM table_14723382_1 WHERE year = 2011
CREATE TABLE table_14723382_1 (regular_season VARCHAR, year VARCHAR)
What regular seasons occurred in 2011?
SELECT MAX(division) FROM table_14723382_1
CREATE TABLE table_14723382_1 (division INTEGER)
What is the largest numbered?
SELECT COUNT(position) FROM table_1473672_2 WHERE player = "Rene Villemure"
CREATE TABLE table_1473672_2 (position VARCHAR, player VARCHAR)
How many positions does rene villemure play?
SELECT MIN(pick__number) FROM table_1473672_2 WHERE college_junior_club_team = "Medicine Hat Tigers (WCHL)"
CREATE TABLE table_1473672_2 (pick__number INTEGER, college_junior_club_team VARCHAR)
What is the pick# for the medicine hat tigers (wchl)?
SELECT nhl_team FROM table_1473672_2 WHERE player = "Stan Weir"
CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR)
What nhl team does stan weir play for?
SELECT nhl_team FROM table_1473672_2 WHERE player = "Dwight Bialowas"
CREATE TABLE table_1473672_2 (nhl_team VARCHAR, player VARCHAR)
What nhl team does dwight bialowas play for?
SELECT MIN(pick__number) FROM table_1473672_2
CREATE TABLE table_1473672_2 (pick__number INTEGER)
Lorne Henning has the lowest pick# of?
SELECT nhl_team FROM table_1473672_2 WHERE college_junior_club_team = "Oshawa Generals (OMJHL)"
CREATE TABLE table_1473672_2 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
Jack Lynch played for the oshawa generals (omjhl) before playing for what nhl team?
SELECT college_junior_club_team FROM table_1473672_3 WHERE player = "Michel Boudreau"
CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, player VARCHAR)
Which colle/junior/club team did Michel Boudreau play for?
SELECT player FROM table_1473672_3 WHERE position = "Right Wing"
CREATE TABLE table_1473672_3 (player VARCHAR, position VARCHAR)
Which players played right wing?
SELECT nationality FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers"
CREATE TABLE table_1473672_3 (nationality VARCHAR, nhl_team VARCHAR)
Which nationality is the player from the Philadelphia Flyers?
SELECT position FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers"
CREATE TABLE table_1473672_3 (position VARCHAR, nhl_team VARCHAR)
Which position did the player hold that played for the Philadelphia Flyers in NHL?
SELECT college_junior_club_team FROM table_1473672_3 WHERE nhl_team = "Buffalo Sabres"
CREATE TABLE table_1473672_3 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
Which college/junior/club team did the player play on that played for the Buffalo Sabres in NHL?
SELECT COUNT(college_junior_club_team) FROM table_1473672_4 WHERE nhl_team = "Philadelphia Flyers"
CREATE TABLE table_1473672_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
Name the number of teams for college/junior club for philadelphia flyers
SELECT position FROM table_1473672_4 WHERE player = "Ron Lalonde"
CREATE TABLE table_1473672_4 (position VARCHAR, player VARCHAR)
Name the position for ron lalonde