context
stringlengths
27
489
question
stringlengths
12
244
answer
stringlengths
18
557
CREATE TABLE table_14342592_5 (player VARCHAR, extra_points VARCHAR)
Which players have made a total of 12 extra points?
SELECT player FROM table_14342592_5 WHERE extra_points = 12
CREATE TABLE table_14342592_5 (position VARCHAR, touchdowns VARCHAR)
Which positions have made 4 touchdowns?
SELECT position FROM table_14342592_5 WHERE touchdowns = 4
CREATE TABLE table_14342592_5 (touchdowns VARCHAR, points VARCHAR)
When the total points are 22 how many total touchdowns have been made?
SELECT touchdowns FROM table_14342592_5 WHERE points = 22
CREATE TABLE table_14342480_7 (points VARCHAR, position VARCHAR)
How many points were scored by someone who's position was right tackle?
SELECT COUNT(points) FROM table_14342480_7 WHERE position = "Right tackle"
CREATE TABLE table_14342480_7 (touchdowns INTEGER)
What is the least amount of touchdowns scored on the chart?
SELECT MIN(touchdowns) FROM table_14342480_7
CREATE TABLE table_14342480_7 (points VARCHAR, player VARCHAR)
How many points were scored by Rolla Bigelow?
SELECT points FROM table_14342480_7 WHERE player = "Rolla Bigelow"
CREATE TABLE table_14342480_7 (touchdowns VARCHAR, extra_points INTEGER)
How many touchdowns were scored by players who scored more than 5.0 extra points?
SELECT COUNT(touchdowns) FROM table_14342480_7 WHERE extra_points > 5.0
CREATE TABLE table_14342480_7 (field_goals INTEGER)
What is the lowest amount of field goals on the chart?
SELECT MIN(field_goals) FROM table_14342480_7
CREATE TABLE table_14342592_4 (points INTEGER, player VARCHAR)
Name the least points for patrick
SELECT MIN(points) FROM table_14342592_4 WHERE player = "Patrick"
CREATE TABLE table_14342592_4 (starter VARCHAR, player VARCHAR)
Name the starter for schulte
SELECT starter FROM table_14342592_4 WHERE player = "Schulte"
CREATE TABLE table_14342592_4 (points VARCHAR, position VARCHAR)
Name the total number of points for the right end
SELECT COUNT(points) FROM table_14342592_4 WHERE position = "Right end"
CREATE TABLE table_14342592_4 (player VARCHAR, position VARCHAR, starter VARCHAR, touchdowns VARCHAR)
Name the number of players when starter is no and touchdowns is 1 for right halfback
SELECT COUNT(player) FROM table_14342592_4 WHERE starter = "No" AND touchdowns = 1 AND position = "Right halfback"
CREATE TABLE table_14346689_1 (series__number INTEGER, directed_by VARCHAR)
What was the series number of the episode directed by Rob Bailey?
SELECT MAX(series__number) FROM table_14346689_1 WHERE directed_by = "Rob Bailey"
CREATE TABLE table_143554_1 (timeslot VARCHAR, season VARCHAR)
Name the timeslot for season 5
SELECT timeslot FROM table_143554_1 WHERE season = 5
CREATE TABLE table_143579_1 (area___ha__ INTEGER, island VARCHAR)
What is the area of Colonsay Island?
SELECT MIN(area___ha__) FROM table_143579_1 WHERE island = "Colonsay"
CREATE TABLE table_14389782_2 (ties VARCHAR, games_started VARCHAR)
How many ties were there for game 36 started?
SELECT COUNT(ties) FROM table_14389782_2 WHERE games_started = 36
CREATE TABLE table_14389782_2 (winning_pct VARCHAR, jersey_no VARCHAR)
What is the winning pct for jersey 15?
SELECT winning_pct FROM table_14389782_2 WHERE jersey_no = "15"
CREATE TABLE table_14389782_2 (quarterback VARCHAR, winning_pct VARCHAR)
Who is the quarter back for a winning pct of .792
SELECT quarterback FROM table_14389782_2 WHERE winning_pct = ".792"
CREATE TABLE table_14389782_2 (losses VARCHAR, jersey_no VARCHAR, games_started VARCHAR)
How many lost games for jersey number 2 and games started is less than 7.0?
SELECT losses FROM table_14389782_2 WHERE jersey_no = "2" AND games_started < 7.0
CREATE TABLE table_14406743_5 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)
Name the total number of date of vacancy for manner of departure being resigned and outgoing manager is geninho
SELECT COUNT(date_of_vacancy) FROM table_14406743_5 WHERE manner_of_departure = "Resigned" AND outgoing_manager = "Geninho"
CREATE TABLE table_14395920_2 (points_classification VARCHAR, young_rider_classification VARCHAR)
Who led the points classification when Roman Kreuziger led the young rider classification?
SELECT points_classification FROM table_14395920_2 WHERE young_rider_classification = "Roman Kreuziger"
CREATE TABLE table_14395920_2 (winner VARCHAR, combativity_award VARCHAR)
Who won the stage when Fumiyuki Beppu won the combativity award?
SELECT winner FROM table_14395920_2 WHERE combativity_award = "Fumiyuki Beppu"
CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR)
Who won stage 18?
SELECT winner FROM table_14395920_2 WHERE stage = 18
CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)
Who won the stage when Mark Cavendish led the points classification, Rinaldo Nocentini led the general classification, and the stage was less than 11.0?
SELECT winner FROM table_14395920_2 WHERE points_classification = "Mark Cavendish" AND general_classification = "Rinaldo Nocentini" AND stage < 11.0
CREATE TABLE table_14407512_24 (nationality VARCHAR)
Name the 1st m for nor
SELECT 1 AS st__m_ FROM table_14407512_24 WHERE nationality = "NOR"
CREATE TABLE table_14407512_24 (name VARCHAR)
Name the 2nd m for gregor schlierenzauer
SELECT 2 AS nd__m_ FROM table_14407512_24 WHERE name = "Gregor Schlierenzauer"
CREATE TABLE table_14407512_24 (overall_nt_points VARCHAR, points VARCHAR)
Name the number of overall nt points for 248.9
SELECT COUNT(overall_nt_points) FROM table_14407512_24 WHERE points = "248.9"
CREATE TABLE table_14460937_1 (afc_cup VARCHAR, play_off VARCHAR)
How many times has the playoff been 1 in the contest for the afc cup?
SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE play_off = 1
CREATE TABLE table_14460937_1 (afc_cup VARCHAR, points__total_500_ VARCHAR)
How many times has the points total for the afc cup competion been 289?
SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE points__total_500_ = 289
CREATE TABLE table_14460937_1 (play_off INTEGER, group_stage VARCHAR)
When the group stage has been 4 what is the largest playoff?
SELECT MAX(play_off) FROM table_14460937_1 WHERE group_stage = 4
CREATE TABLE table_1446600_4 (date_successor_seated VARCHAR, district VARCHAR)
What is the date the successor was seated for the georgia 6th district?
SELECT date_successor_seated FROM table_1446600_4 WHERE district = "Georgia 6th"
CREATE TABLE table_1446600_4 (successor VARCHAR, district VARCHAR)
How many successors are from the georgia 2nd district?
SELECT COUNT(successor) FROM table_1446600_4 WHERE district = "Georgia 2nd"
CREATE TABLE table_14477002_1 (time___et__ VARCHAR, opponent VARCHAR)
Show all the time(et) where the opponent is the Cincinnati Bengals.
SELECT time___et__ FROM table_14477002_1 WHERE opponent = "Cincinnati Bengals"
CREATE TABLE table_14477002_1 (record VARCHAR, location VARCHAR)
List the total number of records from Lambeau Field.
SELECT COUNT(record) FROM table_14477002_1 WHERE location = "Lambeau Field"
CREATE TABLE table_14563349_11 (opponent VARCHAR, location VARCHAR)
Who was the opposing team played at Riverfront Stadium?
SELECT opponent FROM table_14563349_11 WHERE location = "Riverfront Stadium"
CREATE TABLE table_14563349_11 (date VARCHAR, opponent VARCHAR)
How many days were the Kansas City Chiefs the opposing team?
SELECT COUNT(date) FROM table_14563349_11 WHERE opponent = "Kansas City Chiefs"
CREATE TABLE table_14573770_4 (fourth_place INTEGER, nation VARCHAR)
How many teams named argentina?
SELECT MAX(fourth_place) FROM table_14573770_4 WHERE nation = "Argentina"
CREATE TABLE table_14573770_4 (winners INTEGER, nation VARCHAR)
How many times did argentina win?
SELECT MAX(winners) FROM table_14573770_4 WHERE nation = "Argentina"
CREATE TABLE table_14598_5 (s_sikh VARCHAR, buddhist VARCHAR)
What is the number of s sikh where 955 is the number of buddhists?
SELECT s_sikh FROM table_14598_5 WHERE buddhist = "955"
CREATE TABLE table_14598_5 (buddhist VARCHAR, s_jain VARCHAR)
How many buddhists are where s jain have 941?
SELECT buddhist FROM table_14598_5 WHERE s_jain = "941"
CREATE TABLE table_14598_5 (christians VARCHAR, composition VARCHAR)
What is the christian amount where work participation rate is the composition?
SELECT christians FROM table_14598_5 WHERE composition = "Work Participation Rate"
CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR)
How many s hindu are where buddhists are 955?
SELECT s_hindu FROM table_14598_5 WHERE buddhist = "955"
CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR)
What is the data point for s hindu where the buddhist data point is 73.0%?
SELECT COUNT(s_hindu) FROM table_14598_5 WHERE buddhist = "73.0%"
CREATE TABLE table_14598_5 (composition VARCHAR, christians VARCHAR)
How many data points for chrstians are 39.7?
SELECT COUNT(composition) FROM table_14598_5 WHERE christians = "39.7"
CREATE TABLE table_14624447_39 (hometown VARCHAR, name VARCHAR)
Name the hometown for ventrell jenkins
SELECT hometown FROM table_14624447_39 WHERE name = "Ventrell Jenkins"
CREATE TABLE table_14624447_39 (class VARCHAR, position VARCHAR)
Name the class when position is rt
SELECT class FROM table_14624447_39 WHERE position = "RT"
CREATE TABLE table_14655757_1 (player VARCHAR, college VARCHAR)
Which players college is Tennessee?
SELECT player FROM table_14655757_1 WHERE college = "Tennessee"
CREATE TABLE table_14655757_1 (college VARCHAR, player VARCHAR)
What college did Byron Williams attend?
SELECT college FROM table_14655757_1 WHERE player = "Byron Williams"
CREATE TABLE table_14655757_1 (pick__number INTEGER)
What is the lowest pick number?
SELECT MIN(pick__number) FROM table_14655757_1
CREATE TABLE table_14655757_1 (position VARCHAR, player VARCHAR)
What position is Jessie Clark?
SELECT position FROM table_14655757_1 WHERE player = "Jessie Clark"
CREATE TABLE table_14670060_1 (frequency VARCHAR, coverage VARCHAR)
What frequency does Chihuahua Sinaloa Durango cover?
SELECT frequency FROM table_14670060_1 WHERE coverage = "Chihuahua Sinaloa Durango"
CREATE TABLE table_14670060_1 (transmitting_from VARCHAR, call_sign VARCHAR)
How many times does the call sign XEZV appear?
SELECT COUNT(transmitting_from) FROM table_14670060_1 WHERE call_sign = "XEZV"
CREATE TABLE table_14670060_1 (languages VARCHAR, call_sign VARCHAR)
What languages are spoken when call sign XEJAM is used?
SELECT languages FROM table_14670060_1 WHERE call_sign = "XEJAM"
CREATE TABLE table_14708760_3 (shooter VARCHAR, round_3 VARCHAR)
Who shot an 80 in round 3
SELECT shooter FROM table_14708760_3 WHERE round_3 = 80
CREATE TABLE table_14708760_3 (round_1 INTEGER, round_2 VARCHAR)
What is the highest score of round 1 where they also shot 90 in round 2
SELECT MAX(round_1) FROM table_14708760_3 WHERE round_2 = 90
CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)
What position did Dave Johnson play?
SELECT position FROM table_1473672_5 WHERE player = "Dave Johnson"
CREATE TABLE table_1473672_5 (nationality VARCHAR, player VARCHAR)
What is Bernie Germain's nationality?
SELECT nationality FROM table_1473672_5 WHERE player = "Bernie Germain"
CREATE TABLE table_1473672_5 (player VARCHAR, nhl_team VARCHAR)
What player was picked by the Minnesota North Stars?
SELECT player FROM table_1473672_5 WHERE nhl_team = "Minnesota North Stars"
CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)
What position did Marty Gateman play?
SELECT position FROM table_1473672_5 WHERE player = "Marty Gateman"
CREATE TABLE table_1473672_5 (position VARCHAR, nhl_team VARCHAR)
What was the position of the player picked by the Montreal Canadiens?
SELECT position FROM table_1473672_5 WHERE nhl_team = "Montreal Canadiens"
CREATE TABLE table_1473672_7 (position VARCHAR, nhl_team VARCHAR)
the california golden seals that where drafted by nhl teams played what positions
SELECT position FROM table_1473672_7 WHERE nhl_team = "California Golden Seals"
CREATE TABLE table_1473672_7 (nationality VARCHAR, nhl_team VARCHAR)
what country was the player drafted by the toronto maple leafs
SELECT nationality FROM table_1473672_7 WHERE nhl_team = "Toronto Maple Leafs"
CREATE TABLE table_1473672_7 (player VARCHAR, nhl_team VARCHAR)
The los angeles kings drafted what player in the 7th round
SELECT player FROM table_1473672_7 WHERE nhl_team = "Los Angeles Kings"
CREATE TABLE table_1473672_7 (pick__number VARCHAR, player VARCHAR)
How many players had been drafted in front of Yves archambault
SELECT pick__number FROM table_1473672_7 WHERE player = "Yves Archambault"
CREATE TABLE table_1473672_7 (pick__number INTEGER, player VARCHAR)
Serge Beaudoin was drafted when in the 1972 NHL draft
SELECT MIN(pick__number) FROM table_1473672_7 WHERE player = "Serge Beaudoin"
CREATE TABLE table_1473672_6 (nhl_team VARCHAR, player VARCHAR)
What NHL team drafted Rob Palmer?
SELECT nhl_team FROM table_1473672_6 WHERE player = "Rob Palmer"
CREATE TABLE table_1473672_6 (player VARCHAR, nhl_team VARCHAR)
What player was drafted by the Chicago Black Hawks?
SELECT player FROM table_1473672_6 WHERE nhl_team = "Chicago Black Hawks"
CREATE TABLE table_1473672_6 (nationality VARCHAR, player VARCHAR)
What country did Derek Black come from?
SELECT nationality FROM table_1473672_6 WHERE player = "Derek Black"
CREATE TABLE table_1473672_6 (college_junior_club_team VARCHAR, player VARCHAR)
What team did Derek Black Play for prior to being drafted?
SELECT college_junior_club_team FROM table_1473672_6 WHERE player = "Derek Black"
CREATE TABLE table_1474099_6 (goals INTEGER)
At maximum, what are our goals?
SELECT MAX(goals) FROM table_1474099_6
CREATE TABLE table_1474099_6 (season VARCHAR, goals VARCHAR, runners_up VARCHAR)
When the team scored 17 and Slavija placed second, what year was it?
SELECT season FROM table_1474099_6 WHERE goals = 17 AND runners_up = "Slavija"
CREATE TABLE table_14752049_3 (change__2009_to_2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
Name the change 2009 to 2010 where international tourist arrivals is 9.4 million
SELECT change__2009_to_2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = "9.4 million"
CREATE TABLE table_14752049_3 (international_tourist_arrivals__2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
Name the international tourist arrivals for arrivals 2011 for 8.1 million
SELECT international_tourist_arrivals__2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = "8.1 million"
CREATE TABLE table_14752049_1 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR)
How many tourist arrivals occurred in 2011 in the country of Italy?
SELECT international_tourist_arrivals__2011_ FROM table_14752049_1 WHERE country = "Italy"
CREATE TABLE table_14752049_1 (country VARCHAR, rank VARCHAR)
Which country has a rank of 5?
SELECT country FROM table_14752049_1 WHERE rank = 5
CREATE TABLE table_14752049_1 (rank INTEGER, country VARCHAR)
What rank is associated with Germany?
SELECT MAX(rank) FROM table_14752049_1 WHERE country = "Germany"
CREATE TABLE table_14752049_5 (rank VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
Name the number of ranks for international tourist arrivals being 6.2 million
SELECT COUNT(rank) FROM table_14752049_5 WHERE international_tourist_arrivals__2011_ = "6.2 million"
CREATE TABLE table_14752049_5 (rank VARCHAR, country VARCHAR)
Name the number of ranks for south korea
SELECT COUNT(rank) FROM table_14752049_5 WHERE country = "South Korea"
CREATE TABLE table_1475840_1 (stolen_ends INTEGER, locale VARCHAR, Alberta VARCHAR)
What is the minimum stolen ends for the locale Alberta?
SELECT MIN(stolen_ends) FROM table_1475840_1 WHERE locale = Alberta
CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, production_code VARCHAR)
What was the inroductory phase for the episode with production code 4005?
SELECT introductory_phrase FROM table_14835674_1 WHERE production_code = 4005
CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, guest VARCHAR)
What was the inroductory phase for the episode with neil shubin as a guest?
SELECT introductory_phrase FROM table_14835674_1 WHERE guest = "Neil Shubin"
CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, original_airdate VARCHAR)
What was the inroductory phase for the episode that originally aired january 21?
SELECT introductory_phrase FROM table_14835674_1 WHERE original_airdate = "January 21"
CREATE TABLE table_14835826_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
How many series had 18.77 million viewers?
SELECT COUNT(series__number) FROM table_14835826_1 WHERE us_viewers__millions_ = "18.77"
CREATE TABLE table_148386_2 (role VARCHAR, casino_theatre_1888 VARCHAR)
How many roles include George Broderick in the casino 1888 theater?
SELECT role FROM table_148386_2 WHERE casino_theatre_1888 = "George Broderick"
CREATE TABLE table_148386_2 (savoy_theatre_1888 VARCHAR, casino_theatre_1888 VARCHAR)
What is the total of roles that George Olmi plays in Savoy & Casino Theatre 1888?
SELECT COUNT(savoy_theatre_1888) FROM table_148386_2 WHERE casino_theatre_1888 = "George Olmi"
CREATE TABLE table_148386_2 (casino_theatre_1888 VARCHAR, savoy_theatre_1906 VARCHAR)
Who plays Overton Moyle in casino theatre 1888 & savoy theatre 1906?
SELECT casino_theatre_1888 FROM table_148386_2 WHERE savoy_theatre_1906 = "Overton Moyle"
CREATE TABLE table_14876228_1 (losses VARCHAR, team VARCHAR)
Name the losses for general caballero zc
SELECT losses FROM table_14876228_1 WHERE team = "General Caballero ZC"
CREATE TABLE table_14876228_1 (draws INTEGER, wins VARCHAR)
Name the most draws when wins is 3
SELECT MAX(draws) FROM table_14876228_1 WHERE wins = 3
CREATE TABLE table_14876228_1 (played VARCHAR, scored VARCHAR)
Name the number of played for 16
SELECT COUNT(played) FROM table_14876228_1 WHERE scored = 16
CREATE TABLE table_14925084_1 (population_1891 VARCHAR, area_1891__statute_acres_ VARCHAR)
Name the population 1891 for area being 175836
SELECT COUNT(population_1891) FROM table_14925084_1 WHERE area_1891__statute_acres_ = 175836
CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR)
Name the administrative county being area of 422372
SELECT administrative_county FROM table_14925084_1 WHERE area_1961__statute_acres_ = 422372
CREATE TABLE table_14925084_1 (area_1891__statute_acres_ VARCHAR, administrative_county VARCHAR)
Name the area for administrative county being flintshire
SELECT area_1891__statute_acres_ FROM table_14925084_1 WHERE administrative_county = "Flintshire"
CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR)
Name the number of administrative county for area 1961 and 176694
SELECT COUNT(administrative_county) FROM table_14925084_1 WHERE area_1961__statute_acres_ = 176694
CREATE TABLE table_14904046_1 (mixed_doubles VARCHAR, year VARCHAR)
How many couples won the Mixed Doubles in 1997?
SELECT COUNT(mixed_doubles) FROM table_14904046_1 WHERE year = 1997
CREATE TABLE table_14940519_1 (week VARCHAR, game_site VARCHAR, opponent VARCHAR)
Name the number of week for game site being memorial stadium for buffalo bills
SELECT COUNT(week) FROM table_14940519_1 WHERE game_site = "Memorial Stadium" AND opponent = "Buffalo Bills"
CREATE TABLE table_14940519_1 (opponent VARCHAR, date VARCHAR)
Name the opponent for october 2, 1983
SELECT opponent FROM table_14940519_1 WHERE date = "October 2, 1983"
CREATE TABLE table_14940519_1 (week INTEGER, date VARCHAR)
Name the least week for september 25, 1983
SELECT MAX(week) FROM table_14940519_1 WHERE date = "September 25, 1983"
CREATE TABLE table_14940519_1 (week VARCHAR, opponent VARCHAR)
Name the total number of weeks for at cleveland browns
SELECT COUNT(week) FROM table_14940519_1 WHERE opponent = "at Cleveland Browns"
CREATE TABLE table_14940519_1 (record VARCHAR, result VARCHAR)
Name the record for result of l 17–50
SELECT record FROM table_14940519_1 WHERE result = "L 17–50"
CREATE TABLE table_14951643_1 (record VARCHAR, result VARCHAR)
what's the record with result being w 52–19
SELECT record FROM table_14951643_1 WHERE result = "W 52–19"