question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How many games were played against the Chicago Bears?
CREATE TABLE table_14966537_1 (record VARCHAR, opponent VARCHAR)
SELECT COUNT(record) FROM table_14966537_1 WHERE opponent = "Chicago Bears"
### Context: CREATE TABLE table_14966537_1 (record VARCHAR, opponent VARCHAR) ### Question: How many games were played against the Chicago Bears? ### Answer: SELECT COUNT(record) FROM table_14966537_1 WHERE opponent = "Chicago Bears"
What is the result of the game against the Chicago Bears?
CREATE TABLE table_14966537_1 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_14966537_1 WHERE opponent = "Chicago Bears"
### Context: CREATE TABLE table_14966537_1 (result VARCHAR, opponent VARCHAR) ### Question: What is the result of the game against the Chicago Bears? ### Answer: SELECT result FROM table_14966537_1 WHERE opponent = "Chicago Bears"
What was the final score of the game on October 4, 1970?
CREATE TABLE table_14966537_1 (result VARCHAR, date VARCHAR)
SELECT result FROM table_14966537_1 WHERE date = "October 4, 1970"
### Context: CREATE TABLE table_14966537_1 (result VARCHAR, date VARCHAR) ### Question: What was the final score of the game on October 4, 1970? ### Answer: SELECT result FROM table_14966537_1 WHERE date = "October 4, 1970"
Who was the team's opponent of October 25, 1970?
CREATE TABLE table_14966537_1 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_14966537_1 WHERE date = "October 25, 1970"
### Context: CREATE TABLE table_14966537_1 (opponent VARCHAR, date VARCHAR) ### Question: Who was the team's opponent of October 25, 1970? ### Answer: SELECT opponent FROM table_14966537_1 WHERE date = "October 25, 1970"
Did Flamengo play in the Recopa Sudamericana in 1998
CREATE TABLE table_14962316_9 (recopa_sudamericana_1998 VARCHAR, team VARCHAR)
SELECT recopa_sudamericana_1998 FROM table_14962316_9 WHERE team = "Flamengo"
### Context: CREATE TABLE table_14962316_9 (recopa_sudamericana_1998 VARCHAR, team VARCHAR) ### Question: Did Flamengo play in the Recopa Sudamericana in 1998 ### Answer: SELECT recopa_sudamericana_1998 FROM table_14962316_9 WHERE team = "Flamengo"
What were Cruzeiro results in the Copa Mercosur in 1998
CREATE TABLE table_14962316_9 (copa_mercosur_1998 VARCHAR, team VARCHAR)
SELECT copa_mercosur_1998 FROM table_14962316_9 WHERE team = "Cruzeiro"
### Context: CREATE TABLE table_14962316_9 (copa_mercosur_1998 VARCHAR, team VARCHAR) ### Question: What were Cruzeiro results in the Copa Mercosur in 1998 ### Answer: SELECT copa_mercosur_1998 FROM table_14962316_9 WHERE team = "Cruzeiro"
Where is California Lutheran University located?
CREATE TABLE table_14976504_2 (location VARCHAR, institution VARCHAR)
SELECT COUNT(location) FROM table_14976504_2 WHERE institution = "California Lutheran University"
### Context: CREATE TABLE table_14976504_2 (location VARCHAR, institution VARCHAR) ### Question: Where is California Lutheran University located? ### Answer: SELECT COUNT(location) FROM table_14976504_2 WHERE institution = "California Lutheran University"
What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League?
CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR)
SELECT new_classification FROM table_14976504_2 WHERE institution = "University of Arizona"
### Context: CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR) ### Question: What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League? ### Answer: SELECT new_classification FROM table_14976504_2 WHERE institution = "University of Arizona"
What is California State University, Hayward's new conference for Western Collegiate Lacrosse?
CREATE TABLE table_14976504_2 (new_conference VARCHAR, institution VARCHAR)
SELECT new_conference FROM table_14976504_2 WHERE institution = "California State University, Hayward"
### Context: CREATE TABLE table_14976504_2 (new_conference VARCHAR, institution VARCHAR) ### Question: What is California State University, Hayward's new conference for Western Collegiate Lacrosse? ### Answer: SELECT new_conference FROM table_14976504_2 WHERE institution = "California State University, Hayward"
Which new conference is the Toreros Western Collegiate Lacrosse team playing in?
CREATE TABLE table_14976504_2 (new_conference VARCHAR, team_nickname VARCHAR)
SELECT new_conference FROM table_14976504_2 WHERE team_nickname = "Toreros"
### Context: CREATE TABLE table_14976504_2 (new_conference VARCHAR, team_nickname VARCHAR) ### Question: Which new conference is the Toreros Western Collegiate Lacrosse team playing in? ### Answer: SELECT new_conference FROM table_14976504_2 WHERE team_nickname = "Toreros"
In Ascot (UK), what was the result?
CREATE TABLE table_14981555_3 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_14981555_3 WHERE venue = "Ascot (UK)"
### Context: CREATE TABLE table_14981555_3 (result VARCHAR, venue VARCHAR) ### Question: In Ascot (UK), what was the result? ### Answer: SELECT result FROM table_14981555_3 WHERE venue = "Ascot (UK)"
How many different jockeys ran on 17 Feb 2007?
CREATE TABLE table_14981555_3 (jockey VARCHAR, date VARCHAR)
SELECT COUNT(jockey) FROM table_14981555_3 WHERE date = "17 Feb 2007"
### Context: CREATE TABLE table_14981555_3 (jockey VARCHAR, date VARCHAR) ### Question: How many different jockeys ran on 17 Feb 2007? ### Answer: SELECT COUNT(jockey) FROM table_14981555_3 WHERE date = "17 Feb 2007"
How many venues were used on 10 Mar 2007?
CREATE TABLE table_14981555_3 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_14981555_3 WHERE date = "10 Mar 2007"
### Context: CREATE TABLE table_14981555_3 (venue VARCHAR, date VARCHAR) ### Question: How many venues were used on 10 Mar 2007? ### Answer: SELECT venue FROM table_14981555_3 WHERE date = "10 Mar 2007"
How many jockeys are listed running at the Sir Rupert Clarke Stakes?
CREATE TABLE table_14981555_3 (jockey VARCHAR, race VARCHAR)
SELECT COUNT(jockey) FROM table_14981555_3 WHERE race = "Sir Rupert Clarke Stakes"
### Context: CREATE TABLE table_14981555_3 (jockey VARCHAR, race VARCHAR) ### Question: How many jockeys are listed running at the Sir Rupert Clarke Stakes? ### Answer: SELECT COUNT(jockey) FROM table_14981555_3 WHERE race = "Sir Rupert Clarke Stakes"
How many venues had a race called the Australia Stakes?
CREATE TABLE table_14981555_3 (venue VARCHAR, race VARCHAR)
SELECT COUNT(venue) FROM table_14981555_3 WHERE race = "Australia Stakes"
### Context: CREATE TABLE table_14981555_3 (venue VARCHAR, race VARCHAR) ### Question: How many venues had a race called the Australia Stakes? ### Answer: SELECT COUNT(venue) FROM table_14981555_3 WHERE race = "Australia Stakes"
Where was the 1400 m held?
CREATE TABLE table_14981555_1 (venue VARCHAR, distance VARCHAR)
SELECT venue FROM table_14981555_1 WHERE distance = "1400 m"
### Context: CREATE TABLE table_14981555_1 (venue VARCHAR, distance VARCHAR) ### Question: Where was the 1400 m held? ### Answer: SELECT venue FROM table_14981555_1 WHERE distance = "1400 m"
What is the group name when 3yo hcp restricted maiden was raced?
CREATE TABLE table_14981555_1 (group VARCHAR, race VARCHAR)
SELECT group FROM table_14981555_1 WHERE race = "3yo Hcp Restricted Maiden"
### Context: CREATE TABLE table_14981555_1 (group VARCHAR, race VARCHAR) ### Question: What is the group name when 3yo hcp restricted maiden was raced? ### Answer: SELECT group FROM table_14981555_1 WHERE race = "3yo Hcp Restricted Maiden"
When did the 55 kg participant race?
CREATE TABLE table_14981555_1 (date VARCHAR, weight__kg_ VARCHAR)
SELECT date FROM table_14981555_1 WHERE weight__kg_ = "55"
### Context: CREATE TABLE table_14981555_1 (date VARCHAR, weight__kg_ VARCHAR) ### Question: When did the 55 kg participant race? ### Answer: SELECT date FROM table_14981555_1 WHERE weight__kg_ = "55"
Name the number of weeks for 50073 attendance
CREATE TABLE table_14984050_1 (week VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_14984050_1 WHERE attendance = 50073
### Context: CREATE TABLE table_14984050_1 (week VARCHAR, attendance VARCHAR) ### Question: Name the number of weeks for 50073 attendance ### Answer: SELECT COUNT(week) FROM table_14984050_1 WHERE attendance = 50073
Name the result for milwaukee county stadium
CREATE TABLE table_14984050_1 (result VARCHAR, game_site VARCHAR)
SELECT result FROM table_14984050_1 WHERE game_site = "Milwaukee County Stadium"
### Context: CREATE TABLE table_14984050_1 (result VARCHAR, game_site VARCHAR) ### Question: Name the result for milwaukee county stadium ### Answer: SELECT result FROM table_14984050_1 WHERE game_site = "Milwaukee County Stadium"
What was the record when the game was played at Cleveland Municipal Stadium?
CREATE TABLE table_14984078_1 (record VARCHAR, game_site VARCHAR)
SELECT record FROM table_14984078_1 WHERE game_site = "Cleveland Municipal Stadium"
### Context: CREATE TABLE table_14984078_1 (record VARCHAR, game_site VARCHAR) ### Question: What was the record when the game was played at Cleveland Municipal Stadium? ### Answer: SELECT record FROM table_14984078_1 WHERE game_site = "Cleveland Municipal Stadium"
What was the game date in week 13?
CREATE TABLE table_14984078_1 (date VARCHAR, week VARCHAR)
SELECT date FROM table_14984078_1 WHERE week = 13
### Context: CREATE TABLE table_14984078_1 (date VARCHAR, week VARCHAR) ### Question: What was the game date in week 13? ### Answer: SELECT date FROM table_14984078_1 WHERE week = 13
Where did the team play the Detroit Lions?
CREATE TABLE table_14984078_1 (game_site VARCHAR, opponent VARCHAR)
SELECT game_site FROM table_14984078_1 WHERE opponent = "Detroit Lions"
### Context: CREATE TABLE table_14984078_1 (game_site VARCHAR, opponent VARCHAR) ### Question: Where did the team play the Detroit Lions? ### Answer: SELECT game_site FROM table_14984078_1 WHERE opponent = "Detroit Lions"
What week of the season did the date December 2, 1962 fall on?
CREATE TABLE table_14984078_1 (week VARCHAR, date VARCHAR)
SELECT week FROM table_14984078_1 WHERE date = "December 2, 1962"
### Context: CREATE TABLE table_14984078_1 (week VARCHAR, date VARCHAR) ### Question: What week of the season did the date December 2, 1962 fall on? ### Answer: SELECT week FROM table_14984078_1 WHERE date = "December 2, 1962"
what is the result for October 14, 1956?
CREATE TABLE table_14984039_1 (result VARCHAR, date VARCHAR)
SELECT result FROM table_14984039_1 WHERE date = "October 14, 1956"
### Context: CREATE TABLE table_14984039_1 (result VARCHAR, date VARCHAR) ### Question: what is the result for October 14, 1956? ### Answer: SELECT result FROM table_14984039_1 WHERE date = "October 14, 1956"
Name the game site for week 6
CREATE TABLE table_14984103_1 (game_site VARCHAR, week VARCHAR)
SELECT game_site FROM table_14984103_1 WHERE week = 6
### Context: CREATE TABLE table_14984103_1 (game_site VARCHAR, week VARCHAR) ### Question: Name the game site for week 6 ### Answer: SELECT game_site FROM table_14984103_1 WHERE week = 6
Name the number of weeks for san francisco 49ers
CREATE TABLE table_14984103_1 (week VARCHAR, opponent VARCHAR)
SELECT COUNT(week) FROM table_14984103_1 WHERE opponent = "San Francisco 49ers"
### Context: CREATE TABLE table_14984103_1 (week VARCHAR, opponent VARCHAR) ### Question: Name the number of weeks for san francisco 49ers ### Answer: SELECT COUNT(week) FROM table_14984103_1 WHERE opponent = "San Francisco 49ers"
Name the most attendance for game site for los angeles memorial coliseum
CREATE TABLE table_14984103_1 (attendance INTEGER, game_site VARCHAR)
SELECT MAX(attendance) FROM table_14984103_1 WHERE game_site = "Los Angeles Memorial Coliseum"
### Context: CREATE TABLE table_14984103_1 (attendance INTEGER, game_site VARCHAR) ### Question: Name the most attendance for game site for los angeles memorial coliseum ### Answer: SELECT MAX(attendance) FROM table_14984103_1 WHERE game_site = "Los Angeles Memorial Coliseum"
what's the result with record being 0–1
CREATE TABLE table_14984126_1 (result VARCHAR, record VARCHAR)
SELECT result FROM table_14984126_1 WHERE record = "0–1"
### Context: CREATE TABLE table_14984126_1 (result VARCHAR, record VARCHAR) ### Question: what's the result with record being 0–1 ### Answer: SELECT result FROM table_14984126_1 WHERE record = "0–1"
what's the game site with result being l 24–34
CREATE TABLE table_14984126_1 (game_site VARCHAR, result VARCHAR)
SELECT game_site FROM table_14984126_1 WHERE result = "L 24–34"
### Context: CREATE TABLE table_14984126_1 (game_site VARCHAR, result VARCHAR) ### Question: what's the game site with result being l 24–34 ### Answer: SELECT game_site FROM table_14984126_1 WHERE result = "L 24–34"
how many result with date being october 25, 1964
CREATE TABLE table_14984126_1 (result VARCHAR, date VARCHAR)
SELECT COUNT(result) FROM table_14984126_1 WHERE date = "October 25, 1964"
### Context: CREATE TABLE table_14984126_1 (result VARCHAR, date VARCHAR) ### Question: how many result with date being october 25, 1964 ### Answer: SELECT COUNT(result) FROM table_14984126_1 WHERE date = "October 25, 1964"
how many opponent with date being october 25, 1964
CREATE TABLE table_14984126_1 (opponent VARCHAR, date VARCHAR)
SELECT COUNT(opponent) FROM table_14984126_1 WHERE date = "October 25, 1964"
### Context: CREATE TABLE table_14984126_1 (opponent VARCHAR, date VARCHAR) ### Question: how many opponent with date being october 25, 1964 ### Answer: SELECT COUNT(opponent) FROM table_14984126_1 WHERE date = "October 25, 1964"
Name the population 2010 census for population 2000 census of 920599
CREATE TABLE table_14986292_1 (population__2010_census_ VARCHAR, population_2000_census VARCHAR)
SELECT population__2010_census_ FROM table_14986292_1 WHERE population_2000_census = 920599
### Context: CREATE TABLE table_14986292_1 (population__2010_census_ VARCHAR, population_2000_census VARCHAR) ### Question: Name the population 2010 census for population 2000 census of 920599 ### Answer: SELECT population__2010_census_ FROM table_14986292_1 WHERE population_2000_census = 920599
Name the total number of population 2000 census for mesquita
CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, administrative_division VARCHAR)
SELECT COUNT(population_2000_census) FROM table_14986292_1 WHERE administrative_division = "Mesquita"
### Context: CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, administrative_division VARCHAR) ### Question: Name the total number of population 2000 census for mesquita ### Answer: SELECT COUNT(population_2000_census) FROM table_14986292_1 WHERE administrative_division = "Mesquita"
Name the population 2000 census for 77 area
CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, area__km²_ VARCHAR)
SELECT population_2000_census FROM table_14986292_1 WHERE area__km²_ = "77"
### Context: CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, area__km²_ VARCHAR) ### Question: Name the population 2000 census for 77 area ### Answer: SELECT population_2000_census FROM table_14986292_1 WHERE area__km²_ = "77"
Name the number of area where population density 2010 for 514
CREATE TABLE table_14986292_1 (area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR)
SELECT COUNT(area__km²_) FROM table_14986292_1 WHERE population_density_2010___km²_ = 514
### Context: CREATE TABLE table_14986292_1 (area__km²_ VARCHAR, population_density_2010___km²_ VARCHAR) ### Question: Name the number of area where population density 2010 for 514 ### Answer: SELECT COUNT(area__km²_) FROM table_14986292_1 WHERE population_density_2010___km²_ = 514
Name the number of population density 2010 for duque de caxias
CREATE TABLE table_14986292_1 (population_density_2010___km²_ VARCHAR, administrative_division VARCHAR)
SELECT COUNT(population_density_2010___km²_) FROM table_14986292_1 WHERE administrative_division = "Duque de Caxias"
### Context: CREATE TABLE table_14986292_1 (population_density_2010___km²_ VARCHAR, administrative_division VARCHAR) ### Question: Name the number of population density 2010 for duque de caxias ### Answer: SELECT COUNT(population_density_2010___km²_) FROM table_14986292_1 WHERE administrative_division = "Duque de Caxia...
Name the administrative division for 95391
CREATE TABLE table_14986292_1 (administrative_division VARCHAR, population__2010_census_ VARCHAR)
SELECT administrative_division FROM table_14986292_1 WHERE population__2010_census_ = 95391
### Context: CREATE TABLE table_14986292_1 (administrative_division VARCHAR, population__2010_census_ VARCHAR) ### Question: Name the administrative division for 95391 ### Answer: SELECT administrative_division FROM table_14986292_1 WHERE population__2010_census_ = 95391
How many losses did 12 de Octubre have ?
CREATE TABLE table_14997324_5 (losses INTEGER, team VARCHAR)
SELECT MIN(losses) FROM table_14997324_5 WHERE team = "12 de Octubre"
### Context: CREATE TABLE table_14997324_5 (losses INTEGER, team VARCHAR) ### Question: How many losses did 12 de Octubre have ? ### Answer: SELECT MIN(losses) FROM table_14997324_5 WHERE team = "12 de Octubre"
Name the santee sisseton for morning
CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, english_gloss VARCHAR)
SELECT santee_sisseton FROM table_1499791_2 WHERE english_gloss = "morning"
### Context: CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, english_gloss VARCHAR) ### Question: Name the santee sisseton for morning ### Answer: SELECT santee_sisseton FROM table_1499791_2 WHERE english_gloss = "morning"
Name the southern lakota for morning
CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, english_gloss VARCHAR)
SELECT southern_lakota FROM table_1499791_2 WHERE english_gloss = "morning"
### Context: CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, english_gloss VARCHAR) ### Question: Name the southern lakota for morning ### Answer: SELECT southern_lakota FROM table_1499791_2 WHERE english_gloss = "morning"
Name the southern lakota for wakȟáŋyeža
CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR)
SELECT southern_lakota FROM table_1499791_2 WHERE yankton_yanktonai = "wakȟáŋyeža"
### Context: CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR) ### Question: Name the southern lakota for wakȟáŋyeža ### Answer: SELECT southern_lakota FROM table_1499791_2 WHERE yankton_yanktonai = "wakȟáŋyeža"
Name the english gloss for naháŋȟčiŋ
CREATE TABLE table_1499791_2 (english_gloss VARCHAR, southern_lakota VARCHAR)
SELECT english_gloss FROM table_1499791_2 WHERE southern_lakota = "naháŋȟčiŋ"
### Context: CREATE TABLE table_1499791_2 (english_gloss VARCHAR, southern_lakota VARCHAR) ### Question: Name the english gloss for naháŋȟčiŋ ### Answer: SELECT english_gloss FROM table_1499791_2 WHERE southern_lakota = "naháŋȟčiŋ"
Name the santee sisseton for híŋhaŋna
CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, yankton_yanktonai VARCHAR)
SELECT COUNT(santee_sisseton) FROM table_1499791_2 WHERE yankton_yanktonai = "híŋhaŋna"
### Context: CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, yankton_yanktonai VARCHAR) ### Question: Name the santee sisseton for híŋhaŋna ### Answer: SELECT COUNT(santee_sisseton) FROM table_1499791_2 WHERE yankton_yanktonai = "híŋhaŋna"
Name the yankton yanktonai for wičháša
CREATE TABLE table_1499791_2 (yankton_yanktonai VARCHAR, southern_lakota VARCHAR)
SELECT yankton_yanktonai FROM table_1499791_2 WHERE southern_lakota = "wičháša"
### Context: CREATE TABLE table_1499791_2 (yankton_yanktonai VARCHAR, southern_lakota VARCHAR) ### Question: Name the yankton yanktonai for wičháša ### Answer: SELECT yankton_yanktonai FROM table_1499791_2 WHERE southern_lakota = "wičháša"
What was the last round the team drafted?
CREATE TABLE table_14999879_2 (round INTEGER)
SELECT MAX(round) FROM table_14999879_2
### Context: CREATE TABLE table_14999879_2 (round INTEGER) ### Question: What was the last round the team drafted? ### Answer: SELECT MAX(round) FROM table_14999879_2
What college did steve justice attend?
CREATE TABLE table_14999879_2 (college VARCHAR, player VARCHAR)
SELECT college FROM table_14999879_2 WHERE player = "Steve Justice"
### Context: CREATE TABLE table_14999879_2 (college VARCHAR, player VARCHAR) ### Question: What college did steve justice attend? ### Answer: SELECT college FROM table_14999879_2 WHERE player = "Steve Justice"
How may women doubles winner were there when Philippe Aulner was mens singles winner?
CREATE TABLE table_15001957_1 (womens_doubles VARCHAR, mens_singles VARCHAR)
SELECT COUNT(womens_doubles) FROM table_15001957_1 WHERE mens_singles = "Philippe Aulner"
### Context: CREATE TABLE table_15001957_1 (womens_doubles VARCHAR, mens_singles VARCHAR) ### Question: How may women doubles winner were there when Philippe Aulner was mens singles winner? ### Answer: SELECT COUNT(womens_doubles) FROM table_15001957_1 WHERE mens_singles = "Philippe Aulner"
How many mixed doubles were won in 1996?
CREATE TABLE table_15001957_1 (mixed_doubles VARCHAR, year VARCHAR)
SELECT COUNT(mixed_doubles) FROM table_15001957_1 WHERE year = 1996
### Context: CREATE TABLE table_15001957_1 (mixed_doubles VARCHAR, year VARCHAR) ### Question: How many mixed doubles were won in 1996? ### Answer: SELECT COUNT(mixed_doubles) FROM table_15001957_1 WHERE year = 1996
who is the the womens doubles with mens doubles being reinhold pum karl buchart and mixed doubles being hermann fröhlich lore voit
CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR, mixed_doubles VARCHAR)
SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = "Reinhold Pum Karl Buchart" AND mixed_doubles = "Hermann Fröhlich Lore Voit"
### Context: CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR, mixed_doubles VARCHAR) ### Question: who is the the womens doubles with mens doubles being reinhold pum karl buchart and mixed doubles being hermann fröhlich lore voit ### Answer: SELECT womens_doubles FROM table_15002265_1 WHERE ...
who is the the womens doubles with mens doubles being leopold bauer alfred kohlhauser
CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)
SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = "Leopold Bauer Alfred Kohlhauser"
### Context: CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR) ### Question: who is the the womens doubles with mens doubles being leopold bauer alfred kohlhauser ### Answer: SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = "Leopold Bauer Alfred Kohlhauser"
who is the the mixed doubles with mens singles being peter moritz
CREATE TABLE table_15002265_1 (mixed_doubles VARCHAR, mens_singles VARCHAR)
SELECT mixed_doubles FROM table_15002265_1 WHERE mens_singles = "Peter Moritz"
### Context: CREATE TABLE table_15002265_1 (mixed_doubles VARCHAR, mens_singles VARCHAR) ### Question: who is the the mixed doubles with mens singles being peter moritz ### Answer: SELECT mixed_doubles FROM table_15002265_1 WHERE mens_singles = "Peter Moritz"
who is the the mens doubles with mens singles being jürgen koch and womens singles being sabine ploner
CREATE TABLE table_15002265_1 (mens_doubles VARCHAR, mens_singles VARCHAR, womens_singles VARCHAR)
SELECT mens_doubles FROM table_15002265_1 WHERE mens_singles = "Jürgen Koch" AND womens_singles = "Sabine Ploner"
### Context: CREATE TABLE table_15002265_1 (mens_doubles VARCHAR, mens_singles VARCHAR, womens_singles VARCHAR) ### Question: who is the the mens doubles with mens singles being jürgen koch and womens singles being sabine ploner ### Answer: SELECT mens_doubles FROM table_15002265_1 WHERE mens_singles = "Jürgen Koch" AN...
who is the the womens singles with mixed doubles being bernd frohnwieser hilde themel and year being smaller than 1959.0
CREATE TABLE table_15002265_1 (womens_singles VARCHAR, mixed_doubles VARCHAR, year VARCHAR)
SELECT womens_singles FROM table_15002265_1 WHERE mixed_doubles = "Bernd Frohnwieser Hilde Themel" AND year < 1959.0
### Context: CREATE TABLE table_15002265_1 (womens_singles VARCHAR, mixed_doubles VARCHAR, year VARCHAR) ### Question: who is the the womens singles with mixed doubles being bernd frohnwieser hilde themel and year being smaller than 1959.0 ### Answer: SELECT womens_singles FROM table_15002265_1 WHERE mixed_doubles = "B...
How many mixed doubles were there in the year that Olga Koseli won the women's singles?
CREATE TABLE table_15002177_1 (mixed_doubles VARCHAR, womens_singles VARCHAR)
SELECT COUNT(mixed_doubles) FROM table_15002177_1 WHERE womens_singles = "Olga Koseli"
### Context: CREATE TABLE table_15002177_1 (mixed_doubles VARCHAR, womens_singles VARCHAR) ### Question: How many mixed doubles were there in the year that Olga Koseli won the women's singles? ### Answer: SELECT COUNT(mixed_doubles) FROM table_15002177_1 WHERE womens_singles = "Olga Koseli"
What is the # for the episode with viewing figures of 7.02 million ?
CREATE TABLE table_15026994_5 (_number INTEGER, viewing_figure VARCHAR)
SELECT MAX(_number) FROM table_15026994_5 WHERE viewing_figure = "7.02 million"
### Context: CREATE TABLE table_15026994_5 (_number INTEGER, viewing_figure VARCHAR) ### Question: What is the # for the episode with viewing figures of 7.02 million ? ### Answer: SELECT MAX(_number) FROM table_15026994_5 WHERE viewing_figure = "7.02 million"
What is the lowest rank for puerto rico?
CREATE TABLE table_150340_3 (rank INTEGER, country VARCHAR)
SELECT MIN(rank) FROM table_150340_3 WHERE country = "Puerto Rico"
### Context: CREATE TABLE table_150340_3 (rank INTEGER, country VARCHAR) ### Question: What is the lowest rank for puerto rico? ### Answer: SELECT MIN(rank) FROM table_150340_3 WHERE country = "Puerto Rico"
How many different directors are associated with the writer Gaby Chiappe?
CREATE TABLE table_15026994_2 (director VARCHAR, writer VARCHAR)
SELECT COUNT(director) FROM table_15026994_2 WHERE writer = "Gaby Chiappe"
### Context: CREATE TABLE table_15026994_2 (director VARCHAR, writer VARCHAR) ### Question: How many different directors are associated with the writer Gaby Chiappe? ### Answer: SELECT COUNT(director) FROM table_15026994_2 WHERE writer = "Gaby Chiappe"
What writers are associated with a viewing figure of 7.01 million?
CREATE TABLE table_15026994_2 (writer VARCHAR, viewing_figure VARCHAR)
SELECT writer FROM table_15026994_2 WHERE viewing_figure = "7.01 million"
### Context: CREATE TABLE table_15026994_2 (writer VARCHAR, viewing_figure VARCHAR) ### Question: What writers are associated with a viewing figure of 7.01 million? ### Answer: SELECT writer FROM table_15026994_2 WHERE viewing_figure = "7.01 million"
What are all episodes with a viewing figure of 6.72 million?
CREATE TABLE table_15026994_2 (episode VARCHAR, viewing_figure VARCHAR)
SELECT episode FROM table_15026994_2 WHERE viewing_figure = "6.72 million"
### Context: CREATE TABLE table_15026994_2 (episode VARCHAR, viewing_figure VARCHAR) ### Question: What are all episodes with a viewing figure of 6.72 million? ### Answer: SELECT episode FROM table_15026994_2 WHERE viewing_figure = "6.72 million"
What original air dates are associated with a viewing figure of 7.27 million?
CREATE TABLE table_15026994_2 (original_air_date VARCHAR, viewing_figure VARCHAR)
SELECT original_air_date FROM table_15026994_2 WHERE viewing_figure = "7.27 million"
### Context: CREATE TABLE table_15026994_2 (original_air_date VARCHAR, viewing_figure VARCHAR) ### Question: What original air dates are associated with a viewing figure of 7.27 million? ### Answer: SELECT original_air_date FROM table_15026994_2 WHERE viewing_figure = "7.27 million"
Who is the director of the episode at entry number 13?
CREATE TABLE table_15026994_3 (director VARCHAR, _number VARCHAR)
SELECT director FROM table_15026994_3 WHERE _number = 13
### Context: CREATE TABLE table_15026994_3 (director VARCHAR, _number VARCHAR) ### Question: Who is the director of the episode at entry number 13? ### Answer: SELECT director FROM table_15026994_3 WHERE _number = 13
Who wrote the episode that David Tucker directed?
CREATE TABLE table_15026994_3 (writer VARCHAR, director VARCHAR)
SELECT COUNT(writer) FROM table_15026994_3 WHERE director = "David Tucker"
### Context: CREATE TABLE table_15026994_3 (writer VARCHAR, director VARCHAR) ### Question: Who wrote the episode that David Tucker directed? ### Answer: SELECT COUNT(writer) FROM table_15026994_3 WHERE director = "David Tucker"
Which episode has been viewed 6.34 million times?
CREATE TABLE table_15026994_3 (episode VARCHAR, viewing_figure VARCHAR)
SELECT episode FROM table_15026994_3 WHERE viewing_figure = "6.34 million"
### Context: CREATE TABLE table_15026994_3 (episode VARCHAR, viewing_figure VARCHAR) ### Question: Which episode has been viewed 6.34 million times? ### Answer: SELECT episode FROM table_15026994_3 WHERE viewing_figure = "6.34 million"
What is the original air date of the episode directed by Paul Marcus?
CREATE TABLE table_15026994_3 (original_air_date VARCHAR, director VARCHAR)
SELECT original_air_date FROM table_15026994_3 WHERE director = "Paul Marcus"
### Context: CREATE TABLE table_15026994_3 (original_air_date VARCHAR, director VARCHAR) ### Question: What is the original air date of the episode directed by Paul Marcus? ### Answer: SELECT original_air_date FROM table_15026994_3 WHERE director = "Paul Marcus"
How many licenses have version 1.2.2.0?
CREATE TABLE table_15038373_1 (license VARCHAR, version VARCHAR)
SELECT COUNT(license) FROM table_15038373_1 WHERE version = "1.2.2.0"
### Context: CREATE TABLE table_15038373_1 (license VARCHAR, version VARCHAR) ### Question: How many licenses have version 1.2.2.0? ### Answer: SELECT COUNT(license) FROM table_15038373_1 WHERE version = "1.2.2.0"
What is the version with sbagen software?
CREATE TABLE table_15038373_1 (version VARCHAR, software VARCHAR)
SELECT version FROM table_15038373_1 WHERE software = "SBaGen"
### Context: CREATE TABLE table_15038373_1 (version VARCHAR, software VARCHAR) ### Question: What is the version with sbagen software? ### Answer: SELECT version FROM table_15038373_1 WHERE software = "SBaGen"
How many licenses have mind workstation software?
CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR)
SELECT COUNT(license) FROM table_15038373_1 WHERE software = "Mind WorkStation"
### Context: CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR) ### Question: How many licenses have mind workstation software? ### Answer: SELECT COUNT(license) FROM table_15038373_1 WHERE software = "Mind WorkStation"
What is the software with version 1.2.2.0?
CREATE TABLE table_15038373_1 (software VARCHAR, version VARCHAR)
SELECT software FROM table_15038373_1 WHERE version = "1.2.2.0"
### Context: CREATE TABLE table_15038373_1 (software VARCHAR, version VARCHAR) ### Question: What is the software with version 1.2.2.0? ### Answer: SELECT software FROM table_15038373_1 WHERE version = "1.2.2.0"
What is hte license for beeone smod/hms software?
CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR)
SELECT license FROM table_15038373_1 WHERE software = "BeeOne SMOD/HMS"
### Context: CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR) ### Question: What is hte license for beeone smod/hms software? ### Answer: SELECT license FROM table_15038373_1 WHERE software = "BeeOne SMOD/HMS"
What are all the operating systems for sbagen?
CREATE TABLE table_15038373_1 (operating_systems VARCHAR, software VARCHAR)
SELECT operating_systems FROM table_15038373_1 WHERE software = "SBaGen"
### Context: CREATE TABLE table_15038373_1 (operating_systems VARCHAR, software VARCHAR) ### Question: What are all the operating systems for sbagen? ### Answer: SELECT operating_systems FROM table_15038373_1 WHERE software = "SBaGen"
What is the English word for the French word cheval?
CREATE TABLE table_15040_8 (english VARCHAR, french VARCHAR)
SELECT english FROM table_15040_8 WHERE french = "cheval"
### Context: CREATE TABLE table_15040_8 (english VARCHAR, french VARCHAR) ### Question: What is the English word for the French word cheval? ### Answer: SELECT english FROM table_15040_8 WHERE french = "cheval"
What is the Spanish word for the French word filtrer?
CREATE TABLE table_15040_8 (spanish VARCHAR, french VARCHAR)
SELECT spanish FROM table_15040_8 WHERE french = "filtrer"
### Context: CREATE TABLE table_15040_8 (spanish VARCHAR, french VARCHAR) ### Question: What is the Spanish word for the French word filtrer? ### Answer: SELECT spanish FROM table_15040_8 WHERE french = "filtrer"
What is the French word where the German word is filtern?
CREATE TABLE table_15040_8 (french VARCHAR, german VARCHAR)
SELECT french FROM table_15040_8 WHERE german = "filtern"
### Context: CREATE TABLE table_15040_8 (french VARCHAR, german VARCHAR) ### Question: What is the French word where the German word is filtern? ### Answer: SELECT french FROM table_15040_8 WHERE german = "filtern"
What is the french word for the Russian word filtrovat (фильтровать)?
CREATE TABLE table_15040_8 (french VARCHAR, russian VARCHAR)
SELECT french FROM table_15040_8 WHERE russian = "filtrovat (фильтровать)"
### Context: CREATE TABLE table_15040_8 (french VARCHAR, russian VARCHAR) ### Question: What is the french word for the Russian word filtrovat (фильтровать)? ### Answer: SELECT french FROM table_15040_8 WHERE russian = "filtrovat (фильтровать)"
What is the French word for the Italian word nazione?
CREATE TABLE table_15040_8 (french VARCHAR, italian VARCHAR)
SELECT french FROM table_15040_8 WHERE italian = "nazione"
### Context: CREATE TABLE table_15040_8 (french VARCHAR, italian VARCHAR) ### Question: What is the French word for the Italian word nazione? ### Answer: SELECT french FROM table_15040_8 WHERE italian = "nazione"
What is the English word for the Russian words loshad, kobyla (лошадь, кобыла)?
CREATE TABLE table_15040_8 (english VARCHAR, russian VARCHAR)
SELECT english FROM table_15040_8 WHERE russian = "loshad, kobyla (лошадь, кобыла)"
### Context: CREATE TABLE table_15040_8 (english VARCHAR, russian VARCHAR) ### Question: What is the English word for the Russian words loshad, kobyla (лошадь, кобыла)? ### Answer: SELECT english FROM table_15040_8 WHERE russian = "loshad, kobyla (лошадь, кобыла)"
Which state had 3821 students in the fall of 06?
CREATE TABLE table_15055594_6 (states VARCHAR, fall_06 VARCHAR)
SELECT states FROM table_15055594_6 WHERE fall_06 = 3821
### Context: CREATE TABLE table_15055594_6 (states VARCHAR, fall_06 VARCHAR) ### Question: Which state had 3821 students in the fall of 06? ### Answer: SELECT states FROM table_15055594_6 WHERE fall_06 = 3821
How man students were from Maryland in Fall 05?
CREATE TABLE table_15055594_6 (fall_05 VARCHAR, states VARCHAR)
SELECT fall_05 FROM table_15055594_6 WHERE states = "Maryland"
### Context: CREATE TABLE table_15055594_6 (fall_05 VARCHAR, states VARCHAR) ### Question: How man students were from Maryland in Fall 05? ### Answer: SELECT fall_05 FROM table_15055594_6 WHERE states = "Maryland"
What is the number of students in Fall 09 from the state that had 3940 in Fall 07?
CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_07 VARCHAR)
SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_07 = 3940
### Context: CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_07 VARCHAR) ### Question: What is the number of students in Fall 09 from the state that had 3940 in Fall 07? ### Answer: SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_07 = 3940
What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06?
CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_06 VARCHAR)
SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_06 = 3821
### Context: CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_06 VARCHAR) ### Question: What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06? ### Answer: SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_06 = 3821
What is the lowest number of students from a state during the Fall 06 semester?
CREATE TABLE table_15055594_6 (fall_06 INTEGER)
SELECT MIN(fall_06) FROM table_15055594_6
### Context: CREATE TABLE table_15055594_6 (fall_06 INTEGER) ### Question: What is the lowest number of students from a state during the Fall 06 semester? ### Answer: SELECT MIN(fall_06) FROM table_15055594_6
Name the 132.1% for where north carolina is colorado
CREATE TABLE table_15051_4 (north_carolina VARCHAR)
SELECT 1321 AS _percentage FROM table_15051_4 WHERE north_carolina = "Colorado"
### Context: CREATE TABLE table_15051_4 (north_carolina VARCHAR) ### Question: Name the 132.1% for where north carolina is colorado ### Answer: SELECT 1321 AS _percentage FROM table_15051_4 WHERE north_carolina = "Colorado"
What is the total of all Shot PCT occurrences when the value of Blank Ends is 8?
CREATE TABLE table_1505809_2 (shot_pct VARCHAR, blank_ends VARCHAR)
SELECT COUNT(shot_pct) FROM table_1505809_2 WHERE blank_ends = 8
### Context: CREATE TABLE table_1505809_2 (shot_pct VARCHAR, blank_ends VARCHAR) ### Question: What is the total of all Shot PCT occurrences when the value of Blank Ends is 8? ### Answer: SELECT COUNT(shot_pct) FROM table_1505809_2 WHERE blank_ends = 8
Where is the Locale when L is 2.
CREATE TABLE table_1505809_2 (locale VARCHAR, l VARCHAR)
SELECT locale FROM table_1505809_2 WHERE l = 2
### Context: CREATE TABLE table_1505809_2 (locale VARCHAR, l VARCHAR) ### Question: Where is the Locale when L is 2. ### Answer: SELECT locale FROM table_1505809_2 WHERE l = 2
What is the lowest value of Blank Ends when Stolen Ends is 7.
CREATE TABLE table_1505809_2 (blank_ends INTEGER, stolen_ends VARCHAR)
SELECT MIN(blank_ends) FROM table_1505809_2 WHERE stolen_ends = 7
### Context: CREATE TABLE table_1505809_2 (blank_ends INTEGER, stolen_ends VARCHAR) ### Question: What is the lowest value of Blank Ends when Stolen Ends is 7. ### Answer: SELECT MIN(blank_ends) FROM table_1505809_2 WHERE stolen_ends = 7
What is the value of Ends Lost when Blank Ends is 9.
CREATE TABLE table_1505809_2 (Ends VARCHAR, blank_ends VARCHAR)
SELECT Ends AS lost FROM table_1505809_2 WHERE blank_ends = 9
### Context: CREATE TABLE table_1505809_2 (Ends VARCHAR, blank_ends VARCHAR) ### Question: What is the value of Ends Lost when Blank Ends is 9. ### Answer: SELECT Ends AS lost FROM table_1505809_2 WHERE blank_ends = 9
How many combination classifications have the winner as Erik Zabel and a points classification as Alessandro Petacchi
CREATE TABLE table_15059783_1 (combination_classification VARCHAR, points_classification VARCHAR, winner VARCHAR)
SELECT COUNT(combination_classification) FROM table_15059783_1 WHERE points_classification = "Alessandro Petacchi" AND winner = "Erik Zabel"
### Context: CREATE TABLE table_15059783_1 (combination_classification VARCHAR, points_classification VARCHAR, winner VARCHAR) ### Question: How many combination classifications have the winner as Erik Zabel and a points classification as Alessandro Petacchi ### Answer: SELECT COUNT(combination_classification) FROM tab...
If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification?
CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR)
SELECT mountains_classification FROM table_15059783_1 WHERE winner = "Alejandro Valverde" AND points_classification = "Erik Zabel"
### Context: CREATE TABLE table_15059783_1 (mountains_classification VARCHAR, winner VARCHAR, points_classification VARCHAR) ### Question: If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification? ### Answer: SELECT mountains_classification FROM table_15059783_1...
How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi?
CREATE TABLE table_15059783_1 (team_classification VARCHAR, combination_classification VARCHAR, points_classification VARCHAR)
SELECT COUNT(team_classification) FROM table_15059783_1 WHERE combination_classification = "Alejandro Valverde" AND points_classification = "Alessandro Petacchi"
### Context: CREATE TABLE table_15059783_1 (team_classification VARCHAR, combination_classification VARCHAR, points_classification VARCHAR) ### Question: How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi? ### Answer: SELECT COUNT(team_classificatio...
How many times were the winnings $3,816,362?
CREATE TABLE table_1507423_4 (avg_finish VARCHAR, winnings VARCHAR)
SELECT COUNT(avg_finish) FROM table_1507423_4 WHERE winnings = "$3,816,362"
### Context: CREATE TABLE table_1507423_4 (avg_finish VARCHAR, winnings VARCHAR) ### Question: How many times were the winnings $3,816,362? ### Answer: SELECT COUNT(avg_finish) FROM table_1507423_4 WHERE winnings = "$3,816,362"
How many wins were there when the position was 26th?
CREATE TABLE table_1507423_4 (wins VARCHAR, position VARCHAR)
SELECT COUNT(wins) FROM table_1507423_4 WHERE position = "26th"
### Context: CREATE TABLE table_1507423_4 (wins VARCHAR, position VARCHAR) ### Question: How many wins were there when the position was 26th? ### Answer: SELECT COUNT(wins) FROM table_1507423_4 WHERE position = "26th"
What was the average finish when the average start was 18.4?
CREATE TABLE table_1507423_4 (avg_finish VARCHAR, avg_start VARCHAR)
SELECT avg_finish FROM table_1507423_4 WHERE avg_start = "18.4"
### Context: CREATE TABLE table_1507423_4 (avg_finish VARCHAR, avg_start VARCHAR) ### Question: What was the average finish when the average start was 18.4? ### Answer: SELECT avg_finish FROM table_1507423_4 WHERE avg_start = "18.4"
How many teams had a 76th position finish?
CREATE TABLE table_1507423_4 (team_s_ VARCHAR, position VARCHAR)
SELECT COUNT(team_s_) FROM table_1507423_4 WHERE position = "76th"
### Context: CREATE TABLE table_1507423_4 (team_s_ VARCHAR, position VARCHAR) ### Question: How many teams had a 76th position finish? ### Answer: SELECT COUNT(team_s_) FROM table_1507423_4 WHERE position = "76th"
What is the maximumum number of wins?
CREATE TABLE table_1507423_4 (wins INTEGER)
SELECT MIN(wins) FROM table_1507423_4
### Context: CREATE TABLE table_1507423_4 (wins INTEGER) ### Question: What is the maximumum number of wins? ### Answer: SELECT MIN(wins) FROM table_1507423_4
What teams won in 2007?
CREATE TABLE table_1507423_4 (team_s_ VARCHAR, year VARCHAR)
SELECT team_s_ FROM table_1507423_4 WHERE year = 2007
### Context: CREATE TABLE table_1507423_4 (team_s_ VARCHAR, year VARCHAR) ### Question: What teams won in 2007? ### Answer: SELECT team_s_ FROM table_1507423_4 WHERE year = 2007
How many entries arr there for the top 10 for the 78th position?
CREATE TABLE table_1507423_5 (top_10 VARCHAR, position VARCHAR)
SELECT COUNT(top_10) FROM table_1507423_5 WHERE position = "78th"
### Context: CREATE TABLE table_1507423_5 (top_10 VARCHAR, position VARCHAR) ### Question: How many entries arr there for the top 10 for the 78th position? ### Answer: SELECT COUNT(top_10) FROM table_1507423_5 WHERE position = "78th"
Where does team #55/#83 robby gordon motorsports rank in the top 10?
CREATE TABLE table_1507423_5 (top_10 INTEGER, team_s_ VARCHAR)
SELECT MAX(top_10) FROM table_1507423_5 WHERE team_s_ = "#55/#83 Robby Gordon Motorsports"
### Context: CREATE TABLE table_1507423_5 (top_10 INTEGER, team_s_ VARCHAR) ### Question: Where does team #55/#83 robby gordon motorsports rank in the top 10? ### Answer: SELECT MAX(top_10) FROM table_1507423_5 WHERE team_s_ = "#55/#83 Robby Gordon Motorsports"
How many entries are shown for winnings for team #07 robby gordon motorsports?
CREATE TABLE table_1507423_5 (winnings VARCHAR, team_s_ VARCHAR)
SELECT COUNT(winnings) FROM table_1507423_5 WHERE team_s_ = "#07 Robby Gordon Motorsports"
### Context: CREATE TABLE table_1507423_5 (winnings VARCHAR, team_s_ VARCHAR) ### Question: How many entries are shown for winnings for team #07 robby gordon motorsports? ### Answer: SELECT COUNT(winnings) FROM table_1507423_5 WHERE team_s_ = "#07 Robby Gordon Motorsports"
What are all values for 'to par' for the winning score of 67-67-69-69=272?
CREATE TABLE table_1507431_1 (to_par VARCHAR, winning_score VARCHAR)
SELECT to_par FROM table_1507431_1 WHERE winning_score = 67 - 67 - 69 - 69 = 272
### Context: CREATE TABLE table_1507431_1 (to_par VARCHAR, winning_score VARCHAR) ### Question: What are all values for 'to par' for the winning score of 67-67-69-69=272? ### Answer: SELECT to_par FROM table_1507431_1 WHERE winning_score = 67 - 67 - 69 - 69 = 272