question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What are all the Riders whose best-conditioned horse is Basia? | CREATE TABLE table_27833186_1 (rider_names VARCHAR, best_conditioned_horse VARCHAR) | SELECT rider_names FROM table_27833186_1 WHERE best_conditioned_horse = "Basia" | ### Context: CREATE TABLE table_27833186_1 (rider_names VARCHAR, best_conditioned_horse VARCHAR) ### Question: What are all the Riders whose best-conditioned horse is Basia? ### Answer: SELECT rider_names FROM table_27833186_1 WHERE best_conditioned_horse = "Basia" |
What was the distance (in miles) of the championship were the winning horse was Koona? | CREATE TABLE table_27833186_1 (distance__miles_ VARCHAR, horse_name VARCHAR) | SELECT distance__miles_ FROM table_27833186_1 WHERE horse_name = "Koona" | ### Context: CREATE TABLE table_27833186_1 (distance__miles_ VARCHAR, horse_name VARCHAR) ### Question: What was the distance (in miles) of the championship were the winning horse was Koona? ### Answer: SELECT distance__miles_ FROM table_27833186_1 WHERE horse_name = "Koona" |
Who were the winning riders of the championship in Euer Valley, CA and whose horse was Magic Sirocco? | CREATE TABLE table_27833186_1 (rider_names VARCHAR, location VARCHAR, horse_name VARCHAR) | SELECT rider_names FROM table_27833186_1 WHERE location = "Euer Valley, CA" AND horse_name = "Magic Sirocco" | ### Context: CREATE TABLE table_27833186_1 (rider_names VARCHAR, location VARCHAR, horse_name VARCHAR) ### Question: Who were the winning riders of the championship in Euer Valley, CA and whose horse was Magic Sirocco? ### Answer: SELECT rider_names FROM table_27833186_1 WHERE location = "Euer Valley, CA" AND horse_name = "Magic Sirocco" |
How many different riders are there that won riding Omr Tsunami? | CREATE TABLE table_27833186_1 (rider_names VARCHAR, horse_name VARCHAR) | SELECT COUNT(rider_names) FROM table_27833186_1 WHERE horse_name = "OMR Tsunami" | ### Context: CREATE TABLE table_27833186_1 (rider_names VARCHAR, horse_name VARCHAR) ### Question: How many different riders are there that won riding Omr Tsunami? ### Answer: SELECT COUNT(rider_names) FROM table_27833186_1 WHERE horse_name = "OMR Tsunami" |
What was the total distance (in miles) of the championship where the best conditioned horse was Freedom? | CREATE TABLE table_27833186_1 (distance__miles_ VARCHAR, best_conditioned_horse VARCHAR) | SELECT distance__miles_ FROM table_27833186_1 WHERE best_conditioned_horse = "Freedom" | ### Context: CREATE TABLE table_27833186_1 (distance__miles_ VARCHAR, best_conditioned_horse VARCHAR) ### Question: What was the total distance (in miles) of the championship where the best conditioned horse was Freedom? ### Answer: SELECT distance__miles_ FROM table_27833186_1 WHERE best_conditioned_horse = "Freedom" |
How many series numbers are there when there were 15.8 u.s. viewers (millions)? | CREATE TABLE table_27833469_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(series__number) FROM table_27833469_1 WHERE us_viewers__millions_ = "15.8" | ### Context: CREATE TABLE table_27833469_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR) ### Question: How many series numbers are there when there were 15.8 u.s. viewers (millions)? ### Answer: SELECT COUNT(series__number) FROM table_27833469_1 WHERE us_viewers__millions_ = "15.8" |
What is the title of the episode number 11 of the season? | CREATE TABLE table_27833469_1 (title VARCHAR, season__number VARCHAR) | SELECT title FROM table_27833469_1 WHERE season__number = "11" | ### Context: CREATE TABLE table_27833469_1 (title VARCHAR, season__number VARCHAR) ### Question: What is the title of the episode number 11 of the season? ### Answer: SELECT title FROM table_27833469_1 WHERE season__number = "11" |
What is the series number for the episode number 10 of the season? | CREATE TABLE table_27833469_1 (series__number VARCHAR, season__number VARCHAR) | SELECT series__number FROM table_27833469_1 WHERE season__number = "10" | ### Context: CREATE TABLE table_27833469_1 (series__number VARCHAR, season__number VARCHAR) ### Question: What is the series number for the episode number 10 of the season? ### Answer: SELECT series__number FROM table_27833469_1 WHERE season__number = "10" |
What are the the approximate translations when the Morphological Category is 1st. plur. perfect? | CREATE TABLE table_2784232_1 (approximate_translation VARCHAR, morphological_category VARCHAR) | SELECT approximate_translation FROM table_2784232_1 WHERE morphological_category = "1st. plur. perfect" | ### Context: CREATE TABLE table_2784232_1 (approximate_translation VARCHAR, morphological_category VARCHAR) ### Question: What are the the approximate translations when the Morphological Category is 1st. plur. perfect? ### Answer: SELECT approximate_translation FROM table_2784232_1 WHERE morphological_category = "1st. plur. perfect" |
What are the approximate translations when the morphological category is masc. sing. active participle? | CREATE TABLE table_2784232_1 (approximate_translation VARCHAR, morphological_category VARCHAR) | SELECT approximate_translation FROM table_2784232_1 WHERE morphological_category = "masc. sing. active participle" | ### Context: CREATE TABLE table_2784232_1 (approximate_translation VARCHAR, morphological_category VARCHAR) ### Question: What are the approximate translations when the morphological category is masc. sing. active participle? ### Answer: SELECT approximate_translation FROM table_2784232_1 WHERE morphological_category = "masc. sing. active participle" |
How many hebrew forms are there for the arabic form yuktibu يكتب? | CREATE TABLE table_2784232_1 (hebrew_form VARCHAR, arabic_form VARCHAR) | SELECT COUNT(hebrew_form) FROM table_2784232_1 WHERE arabic_form = "yuktibu يكتب" | ### Context: CREATE TABLE table_2784232_1 (hebrew_form VARCHAR, arabic_form VARCHAR) ### Question: How many hebrew forms are there for the arabic form yuktibu يكتب? ### Answer: SELECT COUNT(hebrew_form) FROM table_2784232_1 WHERE arabic_form = "yuktibu يكتب" |
How many Arabic forms are there for the 1st. plur. perfect category? | CREATE TABLE table_2784232_1 (arabic_form VARCHAR, morphological_category VARCHAR) | SELECT COUNT(arabic_form) FROM table_2784232_1 WHERE morphological_category = "1st. plur. perfect" | ### Context: CREATE TABLE table_2784232_1 (arabic_form VARCHAR, morphological_category VARCHAR) ### Question: How many Arabic forms are there for the 1st. plur. perfect category? ### Answer: SELECT COUNT(arabic_form) FROM table_2784232_1 WHERE morphological_category = "1st. plur. perfect" |
How many were the viewers (in millions) of the series no. 45? | CREATE TABLE table_27847088_1 (viewers__millions_ VARCHAR, series_no VARCHAR) | SELECT viewers__millions_ FROM table_27847088_1 WHERE series_no = 45 | ### Context: CREATE TABLE table_27847088_1 (viewers__millions_ VARCHAR, series_no VARCHAR) ### Question: How many were the viewers (in millions) of the series no. 45? ### Answer: SELECT viewers__millions_ FROM table_27847088_1 WHERE series_no = 45 |
How many games did UCLA's baseball team win with a score 7-6 during May of 2010? | CREATE TABLE table_27862483_4 (opponent VARCHAR, score VARCHAR) | SELECT COUNT(opponent) FROM table_27862483_4 WHERE score = "7-6" | ### Context: CREATE TABLE table_27862483_4 (opponent VARCHAR, score VARCHAR) ### Question: How many games did UCLA's baseball team win with a score 7-6 during May of 2010? ### Answer: SELECT COUNT(opponent) FROM table_27862483_4 WHERE score = "7-6" |
How many wins are listed when the first title is 2004? | CREATE TABLE table_27864661_6 (total_wins VARCHAR, first_title VARCHAR) | SELECT total_wins FROM table_27864661_6 WHERE first_title = 2004 | ### Context: CREATE TABLE table_27864661_6 (total_wins VARCHAR, first_title VARCHAR) ### Question: How many wins are listed when the first title is 2004? ### Answer: SELECT total_wins FROM table_27864661_6 WHERE first_title = 2004 |
Which network was located in Illinois? | CREATE TABLE table_27871460_2 (network VARCHAR, state_or_territory VARCHAR) | SELECT network FROM table_27871460_2 WHERE state_or_territory = "Illinois" | ### Context: CREATE TABLE table_27871460_2 (network VARCHAR, state_or_territory VARCHAR) ### Question: Which network was located in Illinois? ### Answer: SELECT network FROM table_27871460_2 WHERE state_or_territory = "Illinois" |
What is the highest channel number? | CREATE TABLE table_27871460_2 (channel_number INTEGER) | SELECT MAX(channel_number) FROM table_27871460_2 | ### Context: CREATE TABLE table_27871460_2 (channel_number INTEGER) ### Question: What is the highest channel number? ### Answer: SELECT MAX(channel_number) FROM table_27871460_2 |
Which state or territory had a channel number of exactly 7? | CREATE TABLE table_27871460_2 (state_or_territory VARCHAR, channel_number VARCHAR) | SELECT state_or_territory FROM table_27871460_2 WHERE channel_number = 7 | ### Context: CREATE TABLE table_27871460_2 (state_or_territory VARCHAR, channel_number VARCHAR) ### Question: Which state or territory had a channel number of exactly 7? ### Answer: SELECT state_or_territory FROM table_27871460_2 WHERE channel_number = 7 |
Name the date for omni coliseum 10,330 | CREATE TABLE table_27882867_4 (date VARCHAR, location_attendance VARCHAR) | SELECT date FROM table_27882867_4 WHERE location_attendance = "Omni Coliseum 10,330" | ### Context: CREATE TABLE table_27882867_4 (date VARCHAR, location_attendance VARCHAR) ### Question: Name the date for omni coliseum 10,330 ### Answer: SELECT date FROM table_27882867_4 WHERE location_attendance = "Omni Coliseum 10,330" |
Name the location attendance for 3 game | CREATE TABLE table_27882867_4 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_27882867_4 WHERE game = 3 | ### Context: CREATE TABLE table_27882867_4 (location_attendance VARCHAR, game VARCHAR) ### Question: Name the location attendance for 3 game ### Answer: SELECT location_attendance FROM table_27882867_4 WHERE game = 3 |
Name the location attendance for l 93-105 | CREATE TABLE table_27882867_4 (location_attendance VARCHAR, score VARCHAR) | SELECT location_attendance FROM table_27882867_4 WHERE score = "L 93-105" | ### Context: CREATE TABLE table_27882867_4 (location_attendance VARCHAR, score VARCHAR) ### Question: Name the location attendance for l 93-105 ### Answer: SELECT location_attendance FROM table_27882867_4 WHERE score = "L 93-105" |
Name the record for oakland-alameda county coliseum arena 15,025 | CREATE TABLE table_27882867_4 (record VARCHAR, location_attendance VARCHAR) | SELECT record FROM table_27882867_4 WHERE location_attendance = "Oakland-Alameda County Coliseum Arena 15,025" | ### Context: CREATE TABLE table_27882867_4 (record VARCHAR, location_attendance VARCHAR) ### Question: Name the record for oakland-alameda county coliseum arena 15,025 ### Answer: SELECT record FROM table_27882867_4 WHERE location_attendance = "Oakland-Alameda County Coliseum Arena 15,025" |
Name the total number of games for w 112-94 | CREATE TABLE table_27882867_4 (game VARCHAR, score VARCHAR) | SELECT COUNT(game) FROM table_27882867_4 WHERE score = "W 112-94" | ### Context: CREATE TABLE table_27882867_4 (game VARCHAR, score VARCHAR) ### Question: Name the total number of games for w 112-94 ### Answer: SELECT COUNT(game) FROM table_27882867_4 WHERE score = "W 112-94" |
what is the club in the sixth round proper | CREATE TABLE table_27876486_2 (clubs VARCHAR, round VARCHAR) | SELECT clubs FROM table_27876486_2 WHERE round = "Sixth round proper" | ### Context: CREATE TABLE table_27876486_2 (clubs VARCHAR, round VARCHAR) ### Question: what is the club in the sixth round proper ### Answer: SELECT clubs FROM table_27876486_2 WHERE round = "Sixth round proper" |
For edition is 2011 europe/africa group iiib and surface where score is 6–4, 6–1 please specify all the surface | CREATE TABLE table_27877656_7 (surface VARCHAR, score VARCHAR, edition VARCHAR) | SELECT surface FROM table_27877656_7 WHERE score = "6–4, 6–1" AND edition = "2011 Europe/Africa Group IIIB" | ### Context: CREATE TABLE table_27877656_7 (surface VARCHAR, score VARCHAR, edition VARCHAR) ### Question: For edition is 2011 europe/africa group iiib and surface where score is 6–4, 6–1 please specify all the surface ### Answer: SELECT surface FROM table_27877656_7 WHERE score = "6–4, 6–1" AND edition = "2011 Europe/Africa Group IIIB" |
For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team. | CREATE TABLE table_27877656_7 (opponent_team VARCHAR, opponent VARCHAR, edition VARCHAR, outcome VARCHAR) | SELECT opponent_team FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND outcome = "Winner" AND opponent = "Sandra Kristjánsdóttir" | ### Context: CREATE TABLE table_27877656_7 (opponent_team VARCHAR, opponent VARCHAR, edition VARCHAR, outcome VARCHAR) ### Question: For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team. ### Answer: SELECT opponent_team FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND outcome = "Winner" AND opponent = "Sandra Kristjánsdóttir" |
For score 7–6 (7–3) , 6–4 please mention total number of outcome | CREATE TABLE table_27877656_7 (outcome VARCHAR, score VARCHAR) | SELECT COUNT(outcome) FROM table_27877656_7 WHERE score = "7–6 (7–3) , 6–4" | ### Context: CREATE TABLE table_27877656_7 (outcome VARCHAR, score VARCHAR) ### Question: For score 7–6 (7–3) , 6–4 please mention total number of outcome ### Answer: SELECT COUNT(outcome) FROM table_27877656_7 WHERE score = "7–6 (7–3) , 6–4" |
For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent | CREATE TABLE table_27877656_7 (opponent VARCHAR, edition VARCHAR, opponent_team VARCHAR) | SELECT opponent FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND opponent_team = "Armenia" | ### Context: CREATE TABLE table_27877656_7 (opponent VARCHAR, edition VARCHAR, opponent_team VARCHAR) ### Question: For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent ### Answer: SELECT opponent FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND opponent_team = "Armenia" |
For score 6–2, 6–3 and outcome is loser mention all the edition. | CREATE TABLE table_27877656_7 (edition VARCHAR, outcome VARCHAR, score VARCHAR) | SELECT edition FROM table_27877656_7 WHERE outcome = "Loser" AND score = "6–2, 6–3" | ### Context: CREATE TABLE table_27877656_7 (edition VARCHAR, outcome VARCHAR, score VARCHAR) ### Question: For score 6–2, 6–3 and outcome is loser mention all the edition. ### Answer: SELECT edition FROM table_27877656_7 WHERE outcome = "Loser" AND score = "6–2, 6–3" |
who was the winner of uci rating cn? | CREATE TABLE table_27887723_1 (winner VARCHAR, uci_rating VARCHAR) | SELECT winner FROM table_27887723_1 WHERE uci_rating = "CN" | ### Context: CREATE TABLE table_27887723_1 (winner VARCHAR, uci_rating VARCHAR) ### Question: who was the winner of uci rating cn? ### Answer: SELECT winner FROM table_27887723_1 WHERE uci_rating = "CN" |
what race name had a uci rating of cn? | CREATE TABLE table_27887723_1 (race_name VARCHAR, uci_rating VARCHAR) | SELECT race_name FROM table_27887723_1 WHERE uci_rating = "CN" | ### Context: CREATE TABLE table_27887723_1 (race_name VARCHAR, uci_rating VARCHAR) ### Question: what race name had a uci rating of cn? ### Answer: SELECT race_name FROM table_27887723_1 WHERE uci_rating = "CN" |
what location has team trek-livestrong? | CREATE TABLE table_27887723_1 (location VARCHAR, team VARCHAR) | SELECT location FROM table_27887723_1 WHERE team = "Trek-Livestrong" | ### Context: CREATE TABLE table_27887723_1 (location VARCHAR, team VARCHAR) ### Question: what location has team trek-livestrong? ### Answer: SELECT location FROM table_27887723_1 WHERE team = "Trek-Livestrong" |
who was the winner for souderton, pa? | CREATE TABLE table_27887723_1 (winner VARCHAR, location VARCHAR) | SELECT winner FROM table_27887723_1 WHERE location = "Souderton, PA" | ### Context: CREATE TABLE table_27887723_1 (winner VARCHAR, location VARCHAR) ### Question: who was the winner for souderton, pa? ### Answer: SELECT winner FROM table_27887723_1 WHERE location = "Souderton, PA" |
What is the name of episode 120 in the series that Mike Rohl directed? | CREATE TABLE table_27892955_1 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR) | SELECT title FROM table_27892955_1 WHERE directed_by = "Mike Rohl" AND no_in_series = 120 | ### Context: CREATE TABLE table_27892955_1 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR) ### Question: What is the name of episode 120 in the series that Mike Rohl directed? ### Answer: SELECT title FROM table_27892955_1 WHERE directed_by = "Mike Rohl" AND no_in_series = 120 |
Who wrote episode that had 1.97 million u.s. viewers? | CREATE TABLE table_27892955_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT written_by FROM table_27892955_1 WHERE us_viewers__million_ = "1.97" | ### Context: CREATE TABLE table_27892955_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who wrote episode that had 1.97 million u.s. viewers? ### Answer: SELECT written_by FROM table_27892955_1 WHERE us_viewers__million_ = "1.97" |
What is the name of the episode that had 2.02 million u.s. viewers? | CREATE TABLE table_27892955_1 (title VARCHAR, us_viewers__million_ VARCHAR) | SELECT title FROM table_27892955_1 WHERE us_viewers__million_ = "2.02" | ### Context: CREATE TABLE table_27892955_1 (title VARCHAR, us_viewers__million_ VARCHAR) ### Question: What is the name of the episode that had 2.02 million u.s. viewers? ### Answer: SELECT title FROM table_27892955_1 WHERE us_viewers__million_ = "2.02" |
How many games did they play on january 11? | CREATE TABLE table_27882867_6 (location_attendance VARCHAR, date VARCHAR) | SELECT COUNT(location_attendance) FROM table_27882867_6 WHERE date = "January 11" | ### Context: CREATE TABLE table_27882867_6 (location_attendance VARCHAR, date VARCHAR) ### Question: How many games did they play on january 11? ### Answer: SELECT COUNT(location_attendance) FROM table_27882867_6 WHERE date = "January 11" |
What is every team with a record of 9-7? | CREATE TABLE table_27902171_5 (team VARCHAR, record VARCHAR) | SELECT team FROM table_27902171_5 WHERE record = "9-7" | ### Context: CREATE TABLE table_27902171_5 (team VARCHAR, record VARCHAR) ### Question: What is every team with a record of 9-7? ### Answer: SELECT team FROM table_27902171_5 WHERE record = "9-7" |
How many people are high assists when location attendance is Seattle Center Coliseum 14,180? | CREATE TABLE table_27902171_5 (high_assists VARCHAR, location_attendance VARCHAR) | SELECT COUNT(high_assists) FROM table_27902171_5 WHERE location_attendance = "Seattle Center Coliseum 14,180" | ### Context: CREATE TABLE table_27902171_5 (high_assists VARCHAR, location_attendance VARCHAR) ### Question: How many people are high assists when location attendance is Seattle Center Coliseum 14,180? ### Answer: SELECT COUNT(high_assists) FROM table_27902171_5 WHERE location_attendance = "Seattle Center Coliseum 14,180" |
What is every date with game 23? | CREATE TABLE table_27902171_5 (date VARCHAR, game VARCHAR) | SELECT date FROM table_27902171_5 WHERE game = 23 | ### Context: CREATE TABLE table_27902171_5 (date VARCHAR, game VARCHAR) ### Question: What is every date with game 23? ### Answer: SELECT date FROM table_27902171_5 WHERE game = 23 |
What is every team with location attendance of Seattle Center Coliseum 14,180? | CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance VARCHAR) | SELECT team FROM table_27902171_5 WHERE location_attendance = "Seattle Center Coliseum 14,180" | ### Context: CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance VARCHAR) ### Question: What is every team with location attendance of Seattle Center Coliseum 14,180? ### Answer: SELECT team FROM table_27902171_5 WHERE location_attendance = "Seattle Center Coliseum 14,180" |
What is every team with location attendance of Arco Arena 17,014? | CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance VARCHAR) | SELECT team FROM table_27902171_5 WHERE location_attendance = "ARCO Arena 17,014" | ### Context: CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance VARCHAR) ### Question: What is every team with location attendance of Arco Arena 17,014? ### Answer: SELECT team FROM table_27902171_5 WHERE location_attendance = "ARCO Arena 17,014" |
what was the opposition where the field is waldstadion during time 6 | CREATE TABLE table_27893892_2 (opponent VARCHAR, game_site VARCHAR, week VARCHAR) | SELECT opponent FROM table_27893892_2 WHERE game_site = "Waldstadion" AND week = 6 | ### Context: CREATE TABLE table_27893892_2 (opponent VARCHAR, game_site VARCHAR, week VARCHAR) ### Question: what was the opposition where the field is waldstadion during time 6 ### Answer: SELECT opponent FROM table_27893892_2 WHERE game_site = "Waldstadion" AND week = 6 |
what is the location for saturday, april 21 | CREATE TABLE table_27893892_2 (game_site VARCHAR, date VARCHAR) | SELECT game_site FROM table_27893892_2 WHERE date = "Saturday, April 21" | ### Context: CREATE TABLE table_27893892_2 (game_site VARCHAR, date VARCHAR) ### Question: what is the location for saturday, april 21 ### Answer: SELECT game_site FROM table_27893892_2 WHERE date = "Saturday, April 21" |
what was the participation for saturday, may 12 | CREATE TABLE table_27893892_2 (attendance INTEGER, date VARCHAR) | SELECT MAX(attendance) FROM table_27893892_2 WHERE date = "Saturday, May 12" | ### Context: CREATE TABLE table_27893892_2 (attendance INTEGER, date VARCHAR) ### Question: what was the participation for saturday, may 12 ### Answer: SELECT MAX(attendance) FROM table_27893892_2 WHERE date = "Saturday, May 12" |
what was the achievement for the rival at scottish claymores | CREATE TABLE table_27893892_2 (team_record VARCHAR, opponent VARCHAR) | SELECT team_record FROM table_27893892_2 WHERE opponent = "at Scottish Claymores" | ### Context: CREATE TABLE table_27893892_2 (team_record VARCHAR, opponent VARCHAR) ### Question: what was the achievement for the rival at scottish claymores ### Answer: SELECT team_record FROM table_27893892_2 WHERE opponent = "at Scottish Claymores" |
How many legs were lost when the high checkout was 101? | CREATE TABLE table_27906667_2 (legs_lost VARCHAR, high_checkout VARCHAR) | SELECT COUNT(legs_lost) FROM table_27906667_2 WHERE high_checkout = 101 | ### Context: CREATE TABLE table_27906667_2 (legs_lost VARCHAR, high_checkout VARCHAR) ### Question: How many legs were lost when the high checkout was 101? ### Answer: SELECT COUNT(legs_lost) FROM table_27906667_2 WHERE high_checkout = 101 |
How many legs were own by alan tabern? | CREATE TABLE table_27906667_2 (legs_won INTEGER, player VARCHAR) | SELECT MAX(legs_won) FROM table_27906667_2 WHERE player = "Alan Tabern" | ### Context: CREATE TABLE table_27906667_2 (legs_won INTEGER, player VARCHAR) ### Question: How many legs were own by alan tabern? ### Answer: SELECT MAX(legs_won) FROM table_27906667_2 WHERE player = "Alan Tabern" |
name the team for 36-29 record | CREATE TABLE table_27902171_8 (team VARCHAR, record VARCHAR) | SELECT team FROM table_27902171_8 WHERE record = "36-29" | ### Context: CREATE TABLE table_27902171_8 (team VARCHAR, record VARCHAR) ### Question: name the team for 36-29 record ### Answer: SELECT team FROM table_27902171_8 WHERE record = "36-29" |
Name the total number of high asists for 34-27 | CREATE TABLE table_27902171_8 (high_assists VARCHAR, record VARCHAR) | SELECT COUNT(high_assists) FROM table_27902171_8 WHERE record = "34-27" | ### Context: CREATE TABLE table_27902171_8 (high_assists VARCHAR, record VARCHAR) ### Question: Name the total number of high asists for 34-27 ### Answer: SELECT COUNT(high_assists) FROM table_27902171_8 WHERE record = "34-27" |
Name the date for score of w 112-91 | CREATE TABLE table_27902171_8 (date VARCHAR, score VARCHAR) | SELECT date FROM table_27902171_8 WHERE score = "W 112-91" | ### Context: CREATE TABLE table_27902171_8 (date VARCHAR, score VARCHAR) ### Question: Name the date for score of w 112-91 ### Answer: SELECT date FROM table_27902171_8 WHERE score = "W 112-91" |
Name the number of location attendance for 36-29 record | CREATE TABLE table_27902171_8 (location_attendance VARCHAR, record VARCHAR) | SELECT COUNT(location_attendance) FROM table_27902171_8 WHERE record = "36-29" | ### Context: CREATE TABLE table_27902171_8 (location_attendance VARCHAR, record VARCHAR) ### Question: Name the number of location attendance for 36-29 record ### Answer: SELECT COUNT(location_attendance) FROM table_27902171_8 WHERE record = "36-29" |
Who wrote the episode having a US viewership of 3.74 million? | CREATE TABLE table_27905664_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT written_by FROM table_27905664_1 WHERE us_viewers__million_ = "3.74" | ### Context: CREATE TABLE table_27905664_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who wrote the episode having a US viewership of 3.74 million? ### Answer: SELECT written_by FROM table_27905664_1 WHERE us_viewers__million_ = "3.74" |
Who directed production code 3x6116? | CREATE TABLE table_27905664_1 (directed_by VARCHAR, production_code VARCHAR) | SELECT directed_by FROM table_27905664_1 WHERE production_code = "3X6116" | ### Context: CREATE TABLE table_27905664_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: Who directed production code 3x6116? ### Answer: SELECT directed_by FROM table_27905664_1 WHERE production_code = "3X6116" |
How many episode numbers had US viewership of 4.26 million? | CREATE TABLE table_27905664_1 (COUNT VARCHAR, us_viewers__million_ VARCHAR) | SELECT COUNT AS № FROM table_27905664_1 WHERE us_viewers__million_ = "4.26" | ### Context: CREATE TABLE table_27905664_1 (COUNT VARCHAR, us_viewers__million_ VARCHAR) ### Question: How many episode numbers had US viewership of 4.26 million? ### Answer: SELECT COUNT AS № FROM table_27905664_1 WHERE us_viewers__million_ = "4.26" |
What episode number had US viewership of 4.87 million? | CREATE TABLE table_27905664_1 (№ VARCHAR, us_viewers__million_ VARCHAR) | SELECT № FROM table_27905664_1 WHERE us_viewers__million_ = "4.87" | ### Context: CREATE TABLE table_27905664_1 (№ VARCHAR, us_viewers__million_ VARCHAR) ### Question: What episode number had US viewership of 4.87 million? ### Answer: SELECT № FROM table_27905664_1 WHERE us_viewers__million_ = "4.87" |
How many episodes were directed by Ken Fink? | CREATE TABLE table_27905664_1 (_number VARCHAR, directed_by VARCHAR) | SELECT COUNT(_number) FROM table_27905664_1 WHERE directed_by = "Ken Fink" | ### Context: CREATE TABLE table_27905664_1 (_number VARCHAR, directed_by VARCHAR) ### Question: How many episodes were directed by Ken Fink? ### Answer: SELECT COUNT(_number) FROM table_27905664_1 WHERE directed_by = "Ken Fink" |
What date did the episode with 8.28 million u.s. viewers originally air? | CREATE TABLE table_27910411_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) | SELECT original_air_date FROM table_27910411_1 WHERE us_viewers__millions_ = "8.28" | ### Context: CREATE TABLE table_27910411_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What date did the episode with 8.28 million u.s. viewers originally air? ### Answer: SELECT original_air_date FROM table_27910411_1 WHERE us_viewers__millions_ = "8.28" |
How many items are listed for U.S. viewers for episode number 5 in the series? | CREATE TABLE table_27910411_1 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR) | SELECT COUNT(us_viewers__millions_) FROM table_27910411_1 WHERE no_in_series = 5 | ### Context: CREATE TABLE table_27910411_1 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR) ### Question: How many items are listed for U.S. viewers for episode number 5 in the series? ### Answer: SELECT COUNT(us_viewers__millions_) FROM table_27910411_1 WHERE no_in_series = 5 |
What date did episode 10 in the series originally air? | CREATE TABLE table_27910411_1 (original_air_date VARCHAR, no_in_series VARCHAR) | SELECT original_air_date FROM table_27910411_1 WHERE no_in_series = 10 | ### Context: CREATE TABLE table_27910411_1 (original_air_date VARCHAR, no_in_series VARCHAR) ### Question: What date did episode 10 in the series originally air? ### Answer: SELECT original_air_date FROM table_27910411_1 WHERE no_in_series = 10 |
What is the season number of the show written by both Kari Lizer and Jeff Astrof? | CREATE TABLE table_27911342_1 (season__number VARCHAR, written_by VARCHAR) | SELECT COUNT(season__number) FROM table_27911342_1 WHERE written_by = "Kari Lizer" | ### Context: CREATE TABLE table_27911342_1 (season__number VARCHAR, written_by VARCHAR) ### Question: What is the season number of the show written by both Kari Lizer and Jeff Astrof? ### Answer: SELECT COUNT(season__number) FROM table_27911342_1 WHERE written_by = "Kari Lizer" |
What is the title of the Series 40 Season 5 show? | CREATE TABLE table_27911342_1 (title VARCHAR, season__number VARCHAR) | SELECT title FROM table_27911342_1 WHERE season__number = 5 | ### Context: CREATE TABLE table_27911342_1 (title VARCHAR, season__number VARCHAR) ### Question: What is the title of the Series 40 Season 5 show? ### Answer: SELECT title FROM table_27911342_1 WHERE season__number = 5 |
Name the callsign for davao mindanao region | CREATE TABLE table_27914076_1 (callsign VARCHAR, coverage VARCHAR) | SELECT callsign FROM table_27914076_1 WHERE coverage = "Davao Mindanao Region" | ### Context: CREATE TABLE table_27914076_1 (callsign VARCHAR, coverage VARCHAR) ### Question: Name the callsign for davao mindanao region ### Answer: SELECT callsign FROM table_27914076_1 WHERE coverage = "Davao Mindanao Region" |
Name the power for dymd-fm | CREATE TABLE table_27914076_1 (power_kw VARCHAR, callsign VARCHAR) | SELECT power_kw FROM table_27914076_1 WHERE callsign = "DYMD-FM" | ### Context: CREATE TABLE table_27914076_1 (power_kw VARCHAR, callsign VARCHAR) ### Question: Name the power for dymd-fm ### Answer: SELECT power_kw FROM table_27914076_1 WHERE callsign = "DYMD-FM" |
Name the frequency for 103.7 energy fm dipolog* | CREATE TABLE table_27914076_1 (frequency VARCHAR, branding VARCHAR) | SELECT frequency FROM table_27914076_1 WHERE branding = "103.7 Energy FM Dipolog*" | ### Context: CREATE TABLE table_27914076_1 (frequency VARCHAR, branding VARCHAR) ### Question: Name the frequency for 103.7 energy fm dipolog* ### Answer: SELECT frequency FROM table_27914076_1 WHERE branding = "103.7 Energy FM Dipolog*" |
Name the number of coverage for 106.7 energy fm | CREATE TABLE table_27914076_1 (coverage VARCHAR, branding VARCHAR) | SELECT COUNT(coverage) FROM table_27914076_1 WHERE branding = "106.7 Energy FM" | ### Context: CREATE TABLE table_27914076_1 (coverage VARCHAR, branding VARCHAR) ### Question: Name the number of coverage for 106.7 energy fm ### Answer: SELECT COUNT(coverage) FROM table_27914076_1 WHERE branding = "106.7 Energy FM" |
what is the number of the episode in the season that had 7.19 millions of north american viewers? | CREATE TABLE table_27914606_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR) | SELECT season__number FROM table_27914606_1 WHERE us_viewers__millions_ = "7.19" | ### Context: CREATE TABLE table_27914606_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR) ### Question: what is the number of the episode in the season that had 7.19 millions of north american viewers? ### Answer: SELECT season__number FROM table_27914606_1 WHERE us_viewers__millions_ = "7.19" |
what is the name of the episode whose writers were jeff astrof & matt goldman? | CREATE TABLE table_27914606_1 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_27914606_1 WHERE written_by = "Jeff Astrof & Matt Goldman" | ### Context: CREATE TABLE table_27914606_1 (title VARCHAR, written_by VARCHAR) ### Question: what is the name of the episode whose writers were jeff astrof & matt goldman? ### Answer: SELECT title FROM table_27914606_1 WHERE written_by = "Jeff Astrof & Matt Goldman" |
who were the writers of the episode that had 5.56 millions of north american viewers? | CREATE TABLE table_27914606_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) | SELECT written_by FROM table_27914606_1 WHERE us_viewers__millions_ = "5.56" | ### Context: CREATE TABLE table_27914606_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: who were the writers of the episode that had 5.56 millions of north american viewers? ### Answer: SELECT written_by FROM table_27914606_1 WHERE us_viewers__millions_ = "5.56" |
What is the average for the player with 313 runs? | CREATE TABLE table_27922491_11 (average VARCHAR, runs VARCHAR) | SELECT average FROM table_27922491_11 WHERE runs = 313 | ### Context: CREATE TABLE table_27922491_11 (average VARCHAR, runs VARCHAR) ### Question: What is the average for the player with 313 runs? ### Answer: SELECT average FROM table_27922491_11 WHERE runs = 313 |
How few runs does the 97.00 average have? | CREATE TABLE table_27922491_11 (runs INTEGER, average VARCHAR) | SELECT MIN(runs) FROM table_27922491_11 WHERE average = "97.00" | ### Context: CREATE TABLE table_27922491_11 (runs INTEGER, average VARCHAR) ### Question: How few runs does the 97.00 average have? ### Answer: SELECT MIN(runs) FROM table_27922491_11 WHERE average = "97.00" |
What is the minimum number of 50s scored? | CREATE TABLE table_27922491_24 (Id VARCHAR) | SELECT MIN(50 AS s) FROM table_27922491_24 | ### Context: CREATE TABLE table_27922491_24 (Id VARCHAR) ### Question: What is the minimum number of 50s scored? ### Answer: SELECT MIN(50 AS s) FROM table_27922491_24 |
How many 4wi were recorded by the player with an economy of 4.17? | CREATE TABLE table_27922491_20 (economy VARCHAR) | SELECT 4 AS wi FROM table_27922491_20 WHERE economy = "4.17" | ### Context: CREATE TABLE table_27922491_20 (economy VARCHAR) ### Question: How many 4wi were recorded by the player with an economy of 4.17? ### Answer: SELECT 4 AS wi FROM table_27922491_20 WHERE economy = "4.17" |
What is the fewest number of wickets recorded? | CREATE TABLE table_27922491_20 (wickets INTEGER) | SELECT MIN(wickets) FROM table_27922491_20 | ### Context: CREATE TABLE table_27922491_20 (wickets INTEGER) ### Question: What is the fewest number of wickets recorded? ### Answer: SELECT MIN(wickets) FROM table_27922491_20 |
What was the BBI for the bowler whose average is 24.50? | CREATE TABLE table_27922491_20 (bbi VARCHAR, average VARCHAR) | SELECT bbi FROM table_27922491_20 WHERE average = "24.50" | ### Context: CREATE TABLE table_27922491_20 (bbi VARCHAR, average VARCHAR) ### Question: What was the BBI for the bowler whose average is 24.50? ### Answer: SELECT bbi FROM table_27922491_20 WHERE average = "24.50" |
What is the least amount of wickets? | CREATE TABLE table_27922491_8 (wickets INTEGER) | SELECT MIN(wickets) FROM table_27922491_8 | ### Context: CREATE TABLE table_27922491_8 (wickets INTEGER) ### Question: What is the least amount of wickets? ### Answer: SELECT MIN(wickets) FROM table_27922491_8 |
What is the least amount of matches? | CREATE TABLE table_27922491_8 (matches INTEGER) | SELECT MIN(matches) FROM table_27922491_8 | ### Context: CREATE TABLE table_27922491_8 (matches INTEGER) ### Question: What is the least amount of matches? ### Answer: SELECT MIN(matches) FROM table_27922491_8 |
How many players had 12 wickets? | CREATE TABLE table_27922491_8 (player VARCHAR, wickets VARCHAR) | SELECT COUNT(player) FROM table_27922491_8 WHERE wickets = 12 | ### Context: CREATE TABLE table_27922491_8 (player VARCHAR, wickets VARCHAR) ### Question: How many players had 12 wickets? ### Answer: SELECT COUNT(player) FROM table_27922491_8 WHERE wickets = 12 |
How many innings for the player with an average of 30.03? | CREATE TABLE table_27922491_8 (innings INTEGER, average VARCHAR) | SELECT MIN(innings) FROM table_27922491_8 WHERE average = "30.03" | ### Context: CREATE TABLE table_27922491_8 (innings INTEGER, average VARCHAR) ### Question: How many innings for the player with an average of 30.03? ### Answer: SELECT MIN(innings) FROM table_27922491_8 WHERE average = "30.03" |
What is the average for the player with BBM 5/85? | CREATE TABLE table_27922491_8 (average VARCHAR, bbm VARCHAR) | SELECT average FROM table_27922491_8 WHERE bbm = "5/85" | ### Context: CREATE TABLE table_27922491_8 (average VARCHAR, bbm VARCHAR) ### Question: What is the average for the player with BBM 5/85? ### Answer: SELECT average FROM table_27922491_8 WHERE bbm = "5/85" |
What is the lowest episode number that had 4.03 million viewers? | CREATE TABLE table_27927185_1 (episode__number INTEGER, viewers__millions_ VARCHAR) | SELECT MIN(episode__number) FROM table_27927185_1 WHERE viewers__millions_ = "4.03" | ### Context: CREATE TABLE table_27927185_1 (episode__number INTEGER, viewers__millions_ VARCHAR) ### Question: What is the lowest episode number that had 4.03 million viewers? ### Answer: SELECT MIN(episode__number) FROM table_27927185_1 WHERE viewers__millions_ = "4.03" |
How many million viewers watched episodes prior to episode 2.0? | CREATE TABLE table_27927185_1 (viewers__millions_ VARCHAR, episode__number INTEGER) | SELECT viewers__millions_ FROM table_27927185_1 WHERE episode__number < 2.0 | ### Context: CREATE TABLE table_27927185_1 (viewers__millions_ VARCHAR, episode__number INTEGER) ### Question: How many million viewers watched episodes prior to episode 2.0? ### Answer: SELECT viewers__millions_ FROM table_27927185_1 WHERE episode__number < 2.0 |
What was the original air-date that had 4.77 million viewers? | CREATE TABLE table_27927185_1 (originalairdate VARCHAR, viewers__millions_ VARCHAR) | SELECT originalairdate FROM table_27927185_1 WHERE viewers__millions_ = "4.77" | ### Context: CREATE TABLE table_27927185_1 (originalairdate VARCHAR, viewers__millions_ VARCHAR) ### Question: What was the original air-date that had 4.77 million viewers? ### Answer: SELECT originalairdate FROM table_27927185_1 WHERE viewers__millions_ = "4.77" |
Who directed the episode with 6.37 million viewers? | CREATE TABLE table_27927185_1 (directed_by VARCHAR, viewers__millions_ VARCHAR) | SELECT directed_by FROM table_27927185_1 WHERE viewers__millions_ = "6.37" | ### Context: CREATE TABLE table_27927185_1 (directed_by VARCHAR, viewers__millions_ VARCHAR) ### Question: Who directed the episode with 6.37 million viewers? ### Answer: SELECT directed_by FROM table_27927185_1 WHERE viewers__millions_ = "6.37" |
What is the release date of catalogue number DW023? | CREATE TABLE table_27932399_1 (release_date INTEGER, catalogue_number VARCHAR) | SELECT MAX(release_date) FROM table_27932399_1 WHERE catalogue_number = "DW023" | ### Context: CREATE TABLE table_27932399_1 (release_date INTEGER, catalogue_number VARCHAR) ### Question: What is the release date of catalogue number DW023? ### Answer: SELECT MAX(release_date) FROM table_27932399_1 WHERE catalogue_number = "DW023" |
What is the release date of "New Worlds for Old"? | CREATE TABLE table_27932399_1 (release_date VARCHAR, release_title VARCHAR) | SELECT release_date FROM table_27932399_1 WHERE release_title = "New Worlds For Old" | ### Context: CREATE TABLE table_27932399_1 (release_date VARCHAR, release_title VARCHAR) ### Question: What is the release date of "New Worlds for Old"? ### Answer: SELECT release_date FROM table_27932399_1 WHERE release_title = "New Worlds For Old" |
What is the catalogue number for "Waves in the Air"? | CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_title VARCHAR) | SELECT catalogue_number FROM table_27932399_1 WHERE release_title = "Waves In The Air" | ### Context: CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_title VARCHAR) ### Question: What is the catalogue number for "Waves in the Air"? ### Answer: SELECT catalogue_number FROM table_27932399_1 WHERE release_title = "Waves In The Air" |
What is the catalogue number for release dates of exactly 2005 and released by The Clear Spots? | CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_date VARCHAR, artist VARCHAR) | SELECT catalogue_number FROM table_27932399_1 WHERE release_date = 2005 AND artist = "The Clear Spots" | ### Context: CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_date VARCHAR, artist VARCHAR) ### Question: What is the catalogue number for release dates of exactly 2005 and released by The Clear Spots? ### Answer: SELECT catalogue_number FROM table_27932399_1 WHERE release_date = 2005 AND artist = "The Clear Spots" |
Which artist had a release title of HH? | CREATE TABLE table_27932399_1 (artist VARCHAR, release_title VARCHAR) | SELECT artist FROM table_27932399_1 WHERE release_title = "HH" | ### Context: CREATE TABLE table_27932399_1 (artist VARCHAR, release_title VARCHAR) ### Question: Which artist had a release title of HH? ### Answer: SELECT artist FROM table_27932399_1 WHERE release_title = "HH" |
What was the name of the album released by Heavy Winged? | CREATE TABLE table_27932399_1 (release_title VARCHAR, artist VARCHAR) | SELECT release_title FROM table_27932399_1 WHERE artist = "Heavy Winged" | ### Context: CREATE TABLE table_27932399_1 (release_title VARCHAR, artist VARCHAR) ### Question: What was the name of the album released by Heavy Winged? ### Answer: SELECT release_title FROM table_27932399_1 WHERE artist = "Heavy Winged" |
Who was the dual television commentator in 1990? | CREATE TABLE table_2794180_11 (Dual VARCHAR, year_s_ VARCHAR) | SELECT Dual AS television_commentator FROM table_2794180_11 WHERE year_s_ = 1990 | ### Context: CREATE TABLE table_2794180_11 (Dual VARCHAR, year_s_ VARCHAR) ### Question: Who was the dual television commentator in 1990? ### Answer: SELECT Dual AS television_commentator FROM table_2794180_11 WHERE year_s_ = 1990 |
Who made the comments for radio broadcast when Jan Gabrielsson made them for television broadcast? | CREATE TABLE table_2794180_11 (radio_commentator VARCHAR, television_commentator VARCHAR) | SELECT radio_commentator FROM table_2794180_11 WHERE television_commentator = "Jan Gabrielsson" | ### Context: CREATE TABLE table_2794180_11 (radio_commentator VARCHAR, television_commentator VARCHAR) ### Question: Who made the comments for radio broadcast when Jan Gabrielsson made them for television broadcast? ### Answer: SELECT radio_commentator FROM table_2794180_11 WHERE television_commentator = "Jan Gabrielsson" |
Name the total number of moto2 winners for laguna seca | CREATE TABLE table_27948565_1 (moto2_winner VARCHAR, circuit VARCHAR) | SELECT COUNT(moto2_winner) FROM table_27948565_1 WHERE circuit = "Laguna Seca" | ### Context: CREATE TABLE table_27948565_1 (moto2_winner VARCHAR, circuit VARCHAR) ### Question: Name the total number of moto2 winners for laguna seca ### Answer: SELECT COUNT(moto2_winner) FROM table_27948565_1 WHERE circuit = "Laguna Seca" |
Name the circuit for hertz british grand prix | CREATE TABLE table_27948565_1 (circuit VARCHAR, grand_prix VARCHAR) | SELECT circuit FROM table_27948565_1 WHERE grand_prix = "Hertz British grand_prix" | ### Context: CREATE TABLE table_27948565_1 (circuit VARCHAR, grand_prix VARCHAR) ### Question: Name the circuit for hertz british grand prix ### Answer: SELECT circuit FROM table_27948565_1 WHERE grand_prix = "Hertz British grand_prix" |
Name the number of rounds for brno | CREATE TABLE table_27948565_1 (round VARCHAR, circuit VARCHAR) | SELECT COUNT(round) FROM table_27948565_1 WHERE circuit = "Brno" | ### Context: CREATE TABLE table_27948565_1 (round VARCHAR, circuit VARCHAR) ### Question: Name the number of rounds for brno ### Answer: SELECT COUNT(round) FROM table_27948565_1 WHERE circuit = "Brno" |
Name the motogp winner for 6 may | CREATE TABLE table_27948565_1 (motogp_winner VARCHAR, date VARCHAR) | SELECT motogp_winner FROM table_27948565_1 WHERE date = "6 May" | ### Context: CREATE TABLE table_27948565_1 (motogp_winner VARCHAR, date VARCHAR) ### Question: Name the motogp winner for 6 may ### Answer: SELECT motogp_winner FROM table_27948565_1 WHERE date = "6 May" |
Name the b winning car for #88 team mitsubishi 88 mitsubishi starion | CREATE TABLE table_27965906_2 (b_winning_car VARCHAR, a_winning_car VARCHAR) | SELECT b_winning_car FROM table_27965906_2 WHERE a_winning_car = "#88 Team Mitsubishi 88 Mitsubishi Starion" | ### Context: CREATE TABLE table_27965906_2 (b_winning_car VARCHAR, a_winning_car VARCHAR) ### Question: Name the b winning car for #88 team mitsubishi 88 mitsubishi starion ### Answer: SELECT b_winning_car FROM table_27965906_2 WHERE a_winning_car = "#88 Team Mitsubishi 88 Mitsubishi Starion" |
Name the gt winning car for #88 team mitsubishi 88 mitsubishi starion | CREATE TABLE table_27965906_2 (gt_winning_car VARCHAR, a_winning_car VARCHAR) | SELECT gt_winning_car FROM table_27965906_2 WHERE a_winning_car = "#88 Team Mitsubishi 88 Mitsubishi Starion" | ### Context: CREATE TABLE table_27965906_2 (gt_winning_car VARCHAR, a_winning_car VARCHAR) ### Question: Name the gt winning car for #88 team mitsubishi 88 mitsubishi starion ### Answer: SELECT gt_winning_car FROM table_27965906_2 WHERE a_winning_car = "#88 Team Mitsubishi 88 Mitsubishi Starion" |
Name the ss winning car for road atlanta and #35 quantum engineering #35 honda crx-si | CREATE TABLE table_27965906_2 (ss_winning_car VARCHAR, circuit VARCHAR, b_winning_car VARCHAR) | SELECT ss_winning_car FROM table_27965906_2 WHERE circuit = "Road Atlanta" AND b_winning_car = "#35 Quantum Engineering #35 Honda CRX-Si" | ### Context: CREATE TABLE table_27965906_2 (ss_winning_car VARCHAR, circuit VARCHAR, b_winning_car VARCHAR) ### Question: Name the ss winning car for road atlanta and #35 quantum engineering #35 honda crx-si ### Answer: SELECT ss_winning_car FROM table_27965906_2 WHERE circuit = "Road Atlanta" AND b_winning_car = "#35 Quantum Engineering #35 Honda CRX-Si" |
Name the total number of rnd for kim baker, bobby archer, tommy archer | CREATE TABLE table_27965906_2 (rnd VARCHAR, ss_winning_car VARCHAR) | SELECT COUNT(rnd) FROM table_27965906_2 WHERE ss_winning_car = "Kim Baker, Bobby Archer, Tommy Archer" | ### Context: CREATE TABLE table_27965906_2 (rnd VARCHAR, ss_winning_car VARCHAR) ### Question: Name the total number of rnd for kim baker, bobby archer, tommy archer ### Answer: SELECT COUNT(rnd) FROM table_27965906_2 WHERE ss_winning_car = "Kim Baker, Bobby Archer, Tommy Archer" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.