Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
30,500 | <question>: How many games were played against the Chicago Bears? <context>: CREATE TABLE table_14966537_1 (record VARCHAR, opponent VARCHAR) | SELECT COUNT(record) FROM table_14966537_1 WHERE opponent = "Chicago Bears" |
30,501 | <question>: What is the result of the game against the Chicago Bears? <context>: CREATE TABLE table_14966537_1 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_14966537_1 WHERE opponent = "Chicago Bears" |
30,502 | <question>: What was the final score of the game on October 4, 1970? <context>: CREATE TABLE table_14966537_1 (result VARCHAR, date VARCHAR) | SELECT result FROM table_14966537_1 WHERE date = "October 4, 1970" |
30,503 | <question>: Who was the team's opponent of October 25, 1970? <context>: CREATE TABLE table_14966537_1 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_14966537_1 WHERE date = "October 25, 1970" |
30,504 | <question>: Did Flamengo play in the Recopa Sudamericana in 1998 <context>: CREATE TABLE table_14962316_9 (recopa_sudamericana_1998 VARCHAR, team VARCHAR) | SELECT recopa_sudamericana_1998 FROM table_14962316_9 WHERE team = "Flamengo" |
30,505 | <question>: What were Cruzeiro results in the Copa Mercosur in 1998 <context>: CREATE TABLE table_14962316_9 (copa_mercosur_1998 VARCHAR, team VARCHAR) | SELECT copa_mercosur_1998 FROM table_14962316_9 WHERE team = "Cruzeiro" |
30,506 | <question>: Where is California Lutheran University located? <context>: CREATE TABLE table_14976504_2 (location VARCHAR, institution VARCHAR) | SELECT COUNT(location) FROM table_14976504_2 WHERE institution = "California Lutheran University" |
30,507 | <question>: What is the new classification for the University of Arizona Western in the Collegiate Lacrosse League? <context>: CREATE TABLE table_14976504_2 (new_classification VARCHAR, institution VARCHAR) | SELECT new_classification FROM table_14976504_2 WHERE institution = "University of Arizona" |
30,508 | <question>: What is California State University, Hayward's new conference for Western Collegiate Lacrosse? <context>: CREATE TABLE table_14976504_2 (new_conference VARCHAR, institution VARCHAR) | SELECT new_conference FROM table_14976504_2 WHERE institution = "California State University, Hayward" |
30,509 | <question>: Which new conference is the Toreros Western Collegiate Lacrosse team playing in? <context>: CREATE TABLE table_14976504_2 (new_conference VARCHAR, team_nickname VARCHAR) | SELECT new_conference FROM table_14976504_2 WHERE team_nickname = "Toreros" |
30,510 | <question>: In Ascot (UK), what was the result? <context>: CREATE TABLE table_14981555_3 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_14981555_3 WHERE venue = "Ascot (UK)" |
30,511 | <question>: How many different jockeys ran on 17 Feb 2007? <context>: CREATE TABLE table_14981555_3 (jockey VARCHAR, date VARCHAR) | SELECT COUNT(jockey) FROM table_14981555_3 WHERE date = "17 Feb 2007" |
30,512 | <question>: How many venues were used on 10 Mar 2007? <context>: CREATE TABLE table_14981555_3 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_14981555_3 WHERE date = "10 Mar 2007" |
30,513 | <question>: How many jockeys are listed running at the Sir Rupert Clarke Stakes? <context>: CREATE TABLE table_14981555_3 (jockey VARCHAR, race VARCHAR) | SELECT COUNT(jockey) FROM table_14981555_3 WHERE race = "Sir Rupert Clarke Stakes" |
30,514 | <question>: How many venues had a race called the Australia Stakes? <context>: CREATE TABLE table_14981555_3 (venue VARCHAR, race VARCHAR) | SELECT COUNT(venue) FROM table_14981555_3 WHERE race = "Australia Stakes" |
30,515 | <question>: Where was the 1400 m held? <context>: CREATE TABLE table_14981555_1 (venue VARCHAR, distance VARCHAR) | SELECT venue FROM table_14981555_1 WHERE distance = "1400 m" |
30,516 | <question>: What is the group name when 3yo hcp restricted maiden was raced? <context>: CREATE TABLE table_14981555_1 (group VARCHAR, race VARCHAR) | SELECT group FROM table_14981555_1 WHERE race = "3yo Hcp Restricted Maiden" |
30,517 | <question>: When did the 55 kg participant race? <context>: CREATE TABLE table_14981555_1 (date VARCHAR, weight__kg_ VARCHAR) | SELECT date FROM table_14981555_1 WHERE weight__kg_ = "55" |
30,518 | <question>: Name the number of weeks for 50073 attendance <context>: CREATE TABLE table_14984050_1 (week VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_14984050_1 WHERE attendance = 50073 |
30,519 | <question>: Name the result for milwaukee county stadium <context>: CREATE TABLE table_14984050_1 (result VARCHAR, game_site VARCHAR) | SELECT result FROM table_14984050_1 WHERE game_site = "Milwaukee County Stadium" |
30,520 | <question>: What was the record when the game was played at Cleveland Municipal Stadium? <context>: CREATE TABLE table_14984078_1 (record VARCHAR, game_site VARCHAR) | SELECT record FROM table_14984078_1 WHERE game_site = "Cleveland Municipal Stadium" |
30,521 | <question>: What was the game date in week 13? <context>: CREATE TABLE table_14984078_1 (date VARCHAR, week VARCHAR) | SELECT date FROM table_14984078_1 WHERE week = 13 |
30,522 | <question>: Where did the team play the Detroit Lions? <context>: CREATE TABLE table_14984078_1 (game_site VARCHAR, opponent VARCHAR) | SELECT game_site FROM table_14984078_1 WHERE opponent = "Detroit Lions" |
30,523 | <question>: What week of the season did the date December 2, 1962 fall on? <context>: CREATE TABLE table_14984078_1 (week VARCHAR, date VARCHAR) | SELECT week FROM table_14984078_1 WHERE date = "December 2, 1962" |
30,524 | <question>: what is the result for October 14, 1956? <context>: CREATE TABLE table_14984039_1 (result VARCHAR, date VARCHAR) | SELECT result FROM table_14984039_1 WHERE date = "October 14, 1956" |
30,525 | <question>: Name the game site for week 6 <context>: CREATE TABLE table_14984103_1 (game_site VARCHAR, week VARCHAR) | SELECT game_site FROM table_14984103_1 WHERE week = 6 |
30,526 | <question>: Name the number of weeks for san francisco 49ers <context>: CREATE TABLE table_14984103_1 (week VARCHAR, opponent VARCHAR) | SELECT COUNT(week) FROM table_14984103_1 WHERE opponent = "San Francisco 49ers" |
30,527 | <question>: Name the most attendance for game site for los angeles memorial coliseum <context>: CREATE TABLE table_14984103_1 (attendance INTEGER, game_site VARCHAR) | SELECT MAX(attendance) FROM table_14984103_1 WHERE game_site = "Los Angeles Memorial Coliseum" |
30,528 | <question>: what's the result with record being 0–1 <context>: CREATE TABLE table_14984126_1 (result VARCHAR, record VARCHAR) | SELECT result FROM table_14984126_1 WHERE record = "0–1" |
30,529 | <question>: what's the game site with result being l 24–34 <context>: CREATE TABLE table_14984126_1 (game_site VARCHAR, result VARCHAR) | SELECT game_site FROM table_14984126_1 WHERE result = "L 24–34" |
30,530 | <question>: how many result with date being october 25, 1964 <context>: CREATE TABLE table_14984126_1 (result VARCHAR, date VARCHAR) | SELECT COUNT(result) FROM table_14984126_1 WHERE date = "October 25, 1964" |
30,531 | <question>: how many opponent with date being october 25, 1964 <context>: CREATE TABLE table_14984126_1 (opponent VARCHAR, date VARCHAR) | SELECT COUNT(opponent) FROM table_14984126_1 WHERE date = "October 25, 1964" |
30,532 | <question>: Name the population 2010 census for population 2000 census of 920599 <context>: 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 |
30,533 | <question>: Name the total number of population 2000 census for mesquita <context>: 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" |
30,534 | <question>: Name the population 2000 census for 77 area <context>: CREATE TABLE table_14986292_1 (population_2000_census VARCHAR, area__km²_ VARCHAR) | SELECT population_2000_census FROM table_14986292_1 WHERE area__km²_ = "77" |
30,535 | <question>: Name the number of area where population density 2010 for 514 <context>: 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 |
30,536 | <question>: Name the number of population density 2010 for duque de caxias <context>: 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" |
30,537 | <question>: Name the administrative division for 95391 <context>: CREATE TABLE table_14986292_1 (administrative_division VARCHAR, population__2010_census_ VARCHAR) | SELECT administrative_division FROM table_14986292_1 WHERE population__2010_census_ = 95391 |
30,538 | <question>: How many losses did 12 de Octubre have ? <context>: CREATE TABLE table_14997324_5 (losses INTEGER, team VARCHAR) | SELECT MIN(losses) FROM table_14997324_5 WHERE team = "12 de Octubre" |
30,539 | <question>: Name the santee sisseton for morning <context>: CREATE TABLE table_1499791_2 (santee_sisseton VARCHAR, english_gloss VARCHAR) | SELECT santee_sisseton FROM table_1499791_2 WHERE english_gloss = "morning" |
30,540 | <question>: Name the southern lakota for morning <context>: CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, english_gloss VARCHAR) | SELECT southern_lakota FROM table_1499791_2 WHERE english_gloss = "morning" |
30,541 | <question>: Name the southern lakota for wakȟáŋyeža <context>: CREATE TABLE table_1499791_2 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR) | SELECT southern_lakota FROM table_1499791_2 WHERE yankton_yanktonai = "wakȟáŋyeža" |
30,542 | <question>: Name the english gloss for naháŋȟčiŋ <context>: CREATE TABLE table_1499791_2 (english_gloss VARCHAR, southern_lakota VARCHAR) | SELECT english_gloss FROM table_1499791_2 WHERE southern_lakota = "naháŋȟčiŋ" |
30,543 | <question>: Name the santee sisseton for híŋhaŋna <context>: 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" |
30,544 | <question>: Name the yankton yanktonai for wičháša <context>: CREATE TABLE table_1499791_2 (yankton_yanktonai VARCHAR, southern_lakota VARCHAR) | SELECT yankton_yanktonai FROM table_1499791_2 WHERE southern_lakota = "wičháša" |
30,545 | <question>: What was the last round the team drafted? <context>: CREATE TABLE table_14999879_2 (round INTEGER) | SELECT MAX(round) FROM table_14999879_2 |
30,546 | <question>: What college did steve justice attend? <context>: CREATE TABLE table_14999879_2 (college VARCHAR, player VARCHAR) | SELECT college FROM table_14999879_2 WHERE player = "Steve Justice" |
30,547 | <question>: How may women doubles winner were there when Philippe Aulner was mens singles winner? <context>: CREATE TABLE table_15001957_1 (womens_doubles VARCHAR, mens_singles VARCHAR) | SELECT COUNT(womens_doubles) FROM table_15001957_1 WHERE mens_singles = "Philippe Aulner" |
30,548 | <question>: How many mixed doubles were won in 1996? <context>: CREATE TABLE table_15001957_1 (mixed_doubles VARCHAR, year VARCHAR) | SELECT COUNT(mixed_doubles) FROM table_15001957_1 WHERE year = 1996 |
30,549 | <question>: who is the the womens doubles with mens doubles being reinhold pum karl buchart and mixed doubles being hermann fröhlich lore voit <context>: 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" |
30,550 | <question>: who is the the womens doubles with mens doubles being leopold bauer alfred kohlhauser <context>: 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" |
30,551 | <question>: who is the the mixed doubles with mens singles being peter moritz <context>: CREATE TABLE table_15002265_1 (mixed_doubles VARCHAR, mens_singles VARCHAR) | SELECT mixed_doubles FROM table_15002265_1 WHERE mens_singles = "Peter Moritz" |
30,552 | <question>: who is the the mens doubles with mens singles being jürgen koch and womens singles being sabine ploner <context>: 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" |
30,553 | <question>: who is the the womens singles with mixed doubles being bernd frohnwieser hilde themel and year being smaller than 1959.0 <context>: 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 |
30,554 | <question>: How many mixed doubles were there in the year that Olga Koseli won the women's singles? <context>: CREATE TABLE table_15002177_1 (mixed_doubles VARCHAR, womens_singles VARCHAR) | SELECT COUNT(mixed_doubles) FROM table_15002177_1 WHERE womens_singles = "Olga Koseli" |
30,555 | <question>: What is the # for the episode with viewing figures of 7.02 million ? <context>: CREATE TABLE table_15026994_5 (_number INTEGER, viewing_figure VARCHAR) | SELECT MAX(_number) FROM table_15026994_5 WHERE viewing_figure = "7.02 million" |
30,556 | <question>: What is the lowest rank for puerto rico? <context>: CREATE TABLE table_150340_3 (rank INTEGER, country VARCHAR) | SELECT MIN(rank) FROM table_150340_3 WHERE country = "Puerto Rico" |
30,557 | <question>: How many different directors are associated with the writer Gaby Chiappe? <context>: CREATE TABLE table_15026994_2 (director VARCHAR, writer VARCHAR) | SELECT COUNT(director) FROM table_15026994_2 WHERE writer = "Gaby Chiappe" |
30,558 | <question>: What writers are associated with a viewing figure of 7.01 million? <context>: CREATE TABLE table_15026994_2 (writer VARCHAR, viewing_figure VARCHAR) | SELECT writer FROM table_15026994_2 WHERE viewing_figure = "7.01 million" |
30,559 | <question>: What are all episodes with a viewing figure of 6.72 million? <context>: CREATE TABLE table_15026994_2 (episode VARCHAR, viewing_figure VARCHAR) | SELECT episode FROM table_15026994_2 WHERE viewing_figure = "6.72 million" |
30,560 | <question>: What original air dates are associated with a viewing figure of 7.27 million? <context>: 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" |
30,561 | <question>: Who is the director of the episode at entry number 13? <context>: CREATE TABLE table_15026994_3 (director VARCHAR, _number VARCHAR) | SELECT director FROM table_15026994_3 WHERE _number = 13 |
30,562 | <question>: Who wrote the episode that David Tucker directed? <context>: CREATE TABLE table_15026994_3 (writer VARCHAR, director VARCHAR) | SELECT COUNT(writer) FROM table_15026994_3 WHERE director = "David Tucker" |
30,563 | <question>: Which episode has been viewed 6.34 million times? <context>: CREATE TABLE table_15026994_3 (episode VARCHAR, viewing_figure VARCHAR) | SELECT episode FROM table_15026994_3 WHERE viewing_figure = "6.34 million" |
30,564 | <question>: What is the original air date of the episode directed by Paul Marcus? <context>: CREATE TABLE table_15026994_3 (original_air_date VARCHAR, director VARCHAR) | SELECT original_air_date FROM table_15026994_3 WHERE director = "Paul Marcus" |
30,565 | <question>: How many licenses have version 1.2.2.0? <context>: CREATE TABLE table_15038373_1 (license VARCHAR, version VARCHAR) | SELECT COUNT(license) FROM table_15038373_1 WHERE version = "1.2.2.0" |
30,566 | <question>: What is the version with sbagen software? <context>: CREATE TABLE table_15038373_1 (version VARCHAR, software VARCHAR) | SELECT version FROM table_15038373_1 WHERE software = "SBaGen" |
30,567 | <question>: How many licenses have mind workstation software? <context>: CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR) | SELECT COUNT(license) FROM table_15038373_1 WHERE software = "Mind WorkStation" |
30,568 | <question>: What is the software with version 1.2.2.0? <context>: CREATE TABLE table_15038373_1 (software VARCHAR, version VARCHAR) | SELECT software FROM table_15038373_1 WHERE version = "1.2.2.0" |
30,569 | <question>: What is hte license for beeone smod/hms software? <context>: CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR) | SELECT license FROM table_15038373_1 WHERE software = "BeeOne SMOD/HMS" |
30,570 | <question>: What are all the operating systems for sbagen? <context>: CREATE TABLE table_15038373_1 (operating_systems VARCHAR, software VARCHAR) | SELECT operating_systems FROM table_15038373_1 WHERE software = "SBaGen" |
30,571 | <question>: What is the English word for the French word cheval? <context>: CREATE TABLE table_15040_8 (english VARCHAR, french VARCHAR) | SELECT english FROM table_15040_8 WHERE french = "cheval" |
30,572 | <question>: What is the Spanish word for the French word filtrer? <context>: CREATE TABLE table_15040_8 (spanish VARCHAR, french VARCHAR) | SELECT spanish FROM table_15040_8 WHERE french = "filtrer" |
30,573 | <question>: What is the French word where the German word is filtern? <context>: CREATE TABLE table_15040_8 (french VARCHAR, german VARCHAR) | SELECT french FROM table_15040_8 WHERE german = "filtern" |
30,574 | <question>: What is the french word for the Russian word filtrovat (фильтровать)? <context>: CREATE TABLE table_15040_8 (french VARCHAR, russian VARCHAR) | SELECT french FROM table_15040_8 WHERE russian = "filtrovat (фильтровать)" |
30,575 | <question>: What is the French word for the Italian word nazione? <context>: CREATE TABLE table_15040_8 (french VARCHAR, italian VARCHAR) | SELECT french FROM table_15040_8 WHERE italian = "nazione" |
30,576 | <question>: What is the English word for the Russian words loshad, kobyla (лошадь, кобыла)? <context>: CREATE TABLE table_15040_8 (english VARCHAR, russian VARCHAR) | SELECT english FROM table_15040_8 WHERE russian = "loshad, kobyla (лошадь, кобыла)" |
30,577 | <question>: Which state had 3821 students in the fall of 06? <context>: CREATE TABLE table_15055594_6 (states VARCHAR, fall_06 VARCHAR) | SELECT states FROM table_15055594_6 WHERE fall_06 = 3821 |
30,578 | <question>: How man students were from Maryland in Fall 05? <context>: CREATE TABLE table_15055594_6 (fall_05 VARCHAR, states VARCHAR) | SELECT fall_05 FROM table_15055594_6 WHERE states = "Maryland" |
30,579 | <question>: What is the number of students in Fall 09 from the state that had 3940 in Fall 07? <context>: CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_07 VARCHAR) | SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_07 = 3940 |
30,580 | <question>: What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06? <context>: CREATE TABLE table_15055594_6 (fall_09 INTEGER, fall_06 VARCHAR) | SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_06 = 3821 |
30,581 | <question>: What is the lowest number of students from a state during the Fall 06 semester? <context>: CREATE TABLE table_15055594_6 (fall_06 INTEGER) | SELECT MIN(fall_06) FROM table_15055594_6 |
30,582 | <question>: Name the 132.1% for where north carolina is colorado <context>: CREATE TABLE table_15051_4 (north_carolina VARCHAR) | SELECT 1321 AS _percentage FROM table_15051_4 WHERE north_carolina = "Colorado" |
30,583 | <question>: What is the total of all Shot PCT occurrences when the value of Blank Ends is 8? <context>: CREATE TABLE table_1505809_2 (shot_pct VARCHAR, blank_ends VARCHAR) | SELECT COUNT(shot_pct) FROM table_1505809_2 WHERE blank_ends = 8 |
30,584 | <question>: Where is the Locale when L is 2. <context>: CREATE TABLE table_1505809_2 (locale VARCHAR, l VARCHAR) | SELECT locale FROM table_1505809_2 WHERE l = 2 |
30,585 | <question>: What is the lowest value of Blank Ends when Stolen Ends is 7. <context>: CREATE TABLE table_1505809_2 (blank_ends INTEGER, stolen_ends VARCHAR) | SELECT MIN(blank_ends) FROM table_1505809_2 WHERE stolen_ends = 7 |
30,586 | <question>: What is the value of Ends Lost when Blank Ends is 9. <context>: CREATE TABLE table_1505809_2 (Ends VARCHAR, blank_ends VARCHAR) | SELECT Ends AS lost FROM table_1505809_2 WHERE blank_ends = 9 |
30,587 | <question>: How many combination classifications have the winner as Erik Zabel and a points classification as Alessandro Petacchi <context>: 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" |
30,588 | <question>: If winner is alejandro Valverde and the points Classification is by Erik Zabel, who is the mountain classification? <context>: 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" |
30,589 | <question>: How many teams have a combination classification of Alejandro Valverde and a Points classification of Alessandro Petacchi? <context>: 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" |
30,590 | <question>: How many times were the winnings $3,816,362? <context>: CREATE TABLE table_1507423_4 (avg_finish VARCHAR, winnings VARCHAR) | SELECT COUNT(avg_finish) FROM table_1507423_4 WHERE winnings = "$3,816,362" |
30,591 | <question>: How many wins were there when the position was 26th? <context>: CREATE TABLE table_1507423_4 (wins VARCHAR, position VARCHAR) | SELECT COUNT(wins) FROM table_1507423_4 WHERE position = "26th" |
30,592 | <question>: What was the average finish when the average start was 18.4? <context>: CREATE TABLE table_1507423_4 (avg_finish VARCHAR, avg_start VARCHAR) | SELECT avg_finish FROM table_1507423_4 WHERE avg_start = "18.4" |
30,593 | <question>: How many teams had a 76th position finish? <context>: CREATE TABLE table_1507423_4 (team_s_ VARCHAR, position VARCHAR) | SELECT COUNT(team_s_) FROM table_1507423_4 WHERE position = "76th" |
30,594 | <question>: What is the maximumum number of wins? <context>: CREATE TABLE table_1507423_4 (wins INTEGER) | SELECT MIN(wins) FROM table_1507423_4 |
30,595 | <question>: What teams won in 2007? <context>: CREATE TABLE table_1507423_4 (team_s_ VARCHAR, year VARCHAR) | SELECT team_s_ FROM table_1507423_4 WHERE year = 2007 |
30,596 | <question>: How many entries arr there for the top 10 for the 78th position? <context>: CREATE TABLE table_1507423_5 (top_10 VARCHAR, position VARCHAR) | SELECT COUNT(top_10) FROM table_1507423_5 WHERE position = "78th" |
30,597 | <question>: Where does team #55/#83 robby gordon motorsports rank in the top 10? <context>: 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" |
30,598 | <question>: How many entries are shown for winnings for team #07 robby gordon motorsports? <context>: CREATE TABLE table_1507423_5 (winnings VARCHAR, team_s_ VARCHAR) | SELECT COUNT(winnings) FROM table_1507423_5 WHERE team_s_ = "#07 Robby Gordon Motorsports" |
30,599 | <question>: What are all values for 'to par' for the winning score of 67-67-69-69=272? <context>: 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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.