question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
How many games were played against the Chicago Bears?
CREATE TABLE table_14966537_1 (record VARCHAR, opponent VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(population_density_2010___km²_) FROM table_14986292_1 WHERE administrative_division = \"Duque de Caxias\"" }
Name the administrative division for 95391
CREATE TABLE table_14986292_1 (administrative_division VARCHAR, population__2010_census_ VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MAX(round) FROM table_14999879_2" }
What college did steve justice attend?
CREATE TABLE table_14999879_2 (college VARCHAR, player VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = \"Reinhold Pum Karl Buchart\" AND mixed_doubles = \"Hermann Fröhlich Lore Voit\"" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT mens_doubles FROM table_15002265_1 WHERE mens_singles = \"Jürgen Koch\" AND womens_singles = \"Sabine Ploner\"" }
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)
{ "SQL_Query": "SELECT womens_singles FROM table_15002265_1 WHERE mixed_doubles = \"Bernd Frohnwieser Hilde Themel\" AND year < 1959.0" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(combination_classification) FROM table_15059783_1 WHERE points_classification = \"Alessandro Petacchi\" AND winner = \"Erik Zabel\"" }
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)
{ "SQL_Query": "SELECT mountains_classification FROM table_15059783_1 WHERE winner = \"Alejandro Valverde\" AND points_classification = \"Erik Zabel\"" }
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)
{ "SQL_Query": "SELECT COUNT(team_classification) FROM table_15059783_1 WHERE combination_classification = \"Alejandro Valverde\" AND points_classification = \"Alessandro Petacchi\"" }
How many times were the winnings $3,816,362?
CREATE TABLE table_1507423_4 (avg_finish VARCHAR, winnings VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MIN(wins) FROM table_1507423_4" }
What teams won in 2007?
CREATE TABLE table_1507423_4 (team_s_ VARCHAR, year VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT to_par FROM table_1507431_1 WHERE winning_score = 67 - 67 - 69 - 69 = 272" }