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