text stringlengths 114 1.06k |
|---|
### 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" ### context: CREATE TABLE table_27833186_1 (rider_names VARCHAR, best_conditioned_horse 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" ### context: CREATE TABLE table_27833186_1 (distance__miles_ 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" ### context: CREATE TABLE table_27833186_1 (rider_names VARCHAR, location 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" ### context: CREATE TABLE table_27833186_1 (rider_names VARCHAR, horse_name 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" ### context: CREATE TABLE table_27833186_1 (distance__miles_ VARCHAR, best_conditioned_horse 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" ### context: CREATE TABLE table_27833469_1 (series__number VARCHAR, us_viewers__millions_ 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" ### context: CREATE TABLE table_27833469_1 (title 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" ### context: CREATE TABLE table_27833469_1 (series__number VARCHAR, season__number 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" ### context: CREATE TABLE table_2784232_1 (approximate_translation VARCHAR, morphological_cat... |
### 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" ### context: CREATE TABLE table_2784232_1 (approximate_translation 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 يكتب" ### context: CREATE TABLE table_2784232_1 (hebrew_form VARCHAR, arabic_form 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" ### context: CREATE TABLE table_2784232_1 (arabic_form VARCHAR, morphological_category 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 ### context: CREATE TABLE table_27847088_1 (viewers__millions_ VARCHAR, series_no 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" ### context: CREATE TABLE table_27862483_4 (opponent VARCHAR, score 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 ### context: CREATE TABLE table_27864661_6 (total_wins VARCHAR, first_title VARCHAR) |
### question: Which network was located in Illinois? ### answer: SELECT network FROM table_27871460_2 WHERE state_or_territory = "Illinois" ### context: CREATE TABLE table_27871460_2 (network VARCHAR, state_or_territory VARCHAR) |
### question: What is the highest channel number? ### answer: SELECT MAX(channel_number) FROM table_27871460_2 ### context: CREATE TABLE table_27871460_2 (channel_number INTEGER) |
### 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 ### context: CREATE TABLE table_27871460_2 (state_or_territory VARCHAR, channel_number VARCHAR) |
### question: Name the date for omni coliseum 10,330 ### answer: 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 location attendance for 3 game ### answer: 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 l 93-105 ### answer: 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 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" ### context: CREATE TABLE table_27882867_4 (record VARCHAR, location_attendance 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" ### context: CREATE TABLE table_27882867_4 (game VARCHAR, score VARCHAR) |
### question: what is the club in the sixth round proper ### answer: SELECT clubs FROM table_27876486_2 WHERE round = "Sixth round proper" ### context: CREATE TABLE table_27876486_2 (clubs VARCHAR, round 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" ### context: CREATE TABLE table_27877656_7 (surface VARCHAR, score 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" ### co... |
### 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" ### context: CREATE TABLE table_27877656_7 (outcome VARCHAR, score 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" ### context: CREATE TABLE table_27877656_7 (opponent VARCHAR, edition 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" ### context: CREATE TABLE table_27877656_7 (edition VARCHAR, outcome VARCHAR, score VARCHAR) |
### question: who was the winner of uci rating cn? ### answer: SELECT winner FROM table_27887723_1 WHERE uci_rating = "CN" ### context: CREATE TABLE table_27887723_1 (winner 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" ### context: CREATE TABLE table_27887723_1 (race_name VARCHAR, uci_rating VARCHAR) |
### question: what location has team trek-livestrong? ### answer: SELECT location FROM table_27887723_1 WHERE team = "Trek-Livestrong" ### context: CREATE TABLE table_27887723_1 (location VARCHAR, team VARCHAR) |
### question: who was the winner for souderton, pa? ### answer: SELECT winner FROM table_27887723_1 WHERE location = "Souderton, PA" ### context: CREATE TABLE table_27887723_1 (winner VARCHAR, location 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 ### context: CREATE TABLE table_27892955_1 (title VARCHAR, directed_by VARCHAR, no_in_series 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" ### context: CREATE TABLE table_27892955_1 (written_by 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" ### context: CREATE TABLE table_27892955_1 (title VARCHAR, us_viewers__million_ VARCHAR) |
### question: How many games did they play on january 11? ### answer: SELECT COUNT(location_attendance) FROM table_27882867_6 WHERE date = "January 11" ### context: CREATE TABLE table_27882867_6 (location_attendance VARCHAR, date VARCHAR) |
### question: What is every team with a record of 9-7? ### answer: SELECT team FROM table_27902171_5 WHERE record = "9-7" ### context: CREATE TABLE table_27902171_5 (team VARCHAR, record 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" ### context: CREATE TABLE table_27902171_5 (high_assists VARCHAR, location_attendance VARCH... |
### question: What is every date with game 23? ### answer: SELECT date FROM table_27902171_5 WHERE game = 23 ### context: CREATE TABLE table_27902171_5 (date VARCHAR, game 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" ### 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" ### context: CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance 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 ### context: CREATE TABLE table_27893892_2 (opponent VARCHAR, game_site VARCHAR, week VARCHAR) |
### question: what is the location for saturday, april 21 ### answer: 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 was the participation for saturday, may 12 ### answer: 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 achievement for the rival at scottish claymores ### answer: SELECT team_record FROM table_27893892_2 WHERE opponent = "at Scottish Claymores" ### context: CREATE TABLE table_27893892_2 (team_record VARCHAR, opponent 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 ### context: CREATE TABLE table_27906667_2 (legs_lost VARCHAR, high_checkout VARCHAR) |
### question: How many legs were own by alan tabern? ### answer: SELECT MAX(legs_won) FROM table_27906667_2 WHERE player = "Alan Tabern" ### context: CREATE TABLE table_27906667_2 (legs_won INTEGER, player VARCHAR) |
### question: name the team for 36-29 record ### answer: SELECT team FROM table_27902171_8 WHERE record = "36-29" ### context: CREATE TABLE table_27902171_8 (team 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" ### context: CREATE TABLE table_27902171_8 (high_assists VARCHAR, record VARCHAR) |
### question: Name the date for score of w 112-91 ### answer: SELECT date FROM table_27902171_8 WHERE score = "W 112-91" ### context: CREATE TABLE table_27902171_8 (date VARCHAR, score 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" ### context: CREATE TABLE table_27902171_8 (location_attendance VARCHAR, record 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" ### context: CREATE TABLE table_27905664_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) |
### question: Who directed production code 3x6116? ### answer: SELECT directed_by FROM table_27905664_1 WHERE production_code = "3X6116" ### context: CREATE TABLE table_27905664_1 (directed_by VARCHAR, production_code 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" ### context: CREATE TABLE table_27905664_1 (COUNT 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" ### context: CREATE TABLE table_27905664_1 (№ VARCHAR, us_viewers__million_ VARCHAR) |
### question: How many episodes were directed by Ken Fink? ### answer: SELECT COUNT(_number) FROM table_27905664_1 WHERE directed_by = "Ken Fink" ### context: CREATE TABLE table_27905664_1 (_number VARCHAR, directed_by 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" ### context: CREATE TABLE table_27910411_1 (original_air_date VARCHAR, us_viewers__millions_ 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 ### context: CREATE TABLE table_27910411_1 (us_viewers__millions_ 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 ### context: CREATE TABLE table_27910411_1 (original_air_date VARCHAR, no_in_series 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" ### context: CREATE TABLE table_27911342_1 (season__number VARCHAR, written_by VARCHAR) |
### question: What is the title of the Series 40 Season 5 show? ### answer: SELECT title FROM table_27911342_1 WHERE season__number = 5 ### context: CREATE TABLE table_27911342_1 (title VARCHAR, season__number VARCHAR) |
### question: Name the callsign for davao mindanao region ### answer: SELECT callsign FROM table_27914076_1 WHERE coverage = "Davao Mindanao Region" ### context: CREATE TABLE table_27914076_1 (callsign VARCHAR, coverage VARCHAR) |
### question: Name the power for dymd-fm ### answer: 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 frequency for 103.7 energy fm dipolog* ### answer: 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 number of coverage for 106.7 energy fm ### answer: SELECT COUNT(coverage) FROM table_27914076_1 WHERE branding = "106.7 Energy FM" ### context: CREATE TABLE table_27914076_1 (coverage VARCHAR, branding 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" ### context: CREATE TABLE table_27914606_1 (season__number VARCHAR, us_viewers__millions_ 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" ### context: CREATE TABLE table_27914606_1 (title VARCHAR, written_by 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" ### context: CREATE TABLE table_27914606_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) |
### question: What is the average for the player with 313 runs? ### answer: SELECT average FROM table_27922491_11 WHERE runs = 313 ### context: CREATE TABLE table_27922491_11 (average VARCHAR, runs VARCHAR) |
### question: How few runs does the 97.00 average have? ### answer: SELECT MIN(runs) FROM table_27922491_11 WHERE average = "97.00" ### context: CREATE TABLE table_27922491_11 (runs INTEGER, average VARCHAR) |
### question: What is the minimum number of 50s scored? ### answer: SELECT MIN(50 AS s) FROM table_27922491_24 ### context: CREATE TABLE table_27922491_24 (Id 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" ### context: CREATE TABLE table_27922491_20 (economy VARCHAR) |
### question: What is the fewest number of wickets recorded? ### answer: SELECT MIN(wickets) FROM table_27922491_20 ### context: CREATE TABLE table_27922491_20 (wickets INTEGER) |
### question: What was the BBI for the bowler whose average is 24.50? ### answer: SELECT bbi FROM table_27922491_20 WHERE average = "24.50" ### context: CREATE TABLE table_27922491_20 (bbi VARCHAR, average VARCHAR) |
### question: What is the least amount of wickets? ### answer: SELECT MIN(wickets) FROM table_27922491_8 ### context: CREATE TABLE table_27922491_8 (wickets INTEGER) |
### question: What is the least amount of matches? ### answer: SELECT MIN(matches) FROM table_27922491_8 ### context: CREATE TABLE table_27922491_8 (matches INTEGER) |
### question: How many players had 12 wickets? ### answer: SELECT COUNT(player) FROM table_27922491_8 WHERE wickets = 12 ### context: CREATE TABLE table_27922491_8 (player VARCHAR, wickets 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" ### context: CREATE TABLE table_27922491_8 (innings INTEGER, average VARCHAR) |
### question: What is the average for the player with BBM 5/85? ### answer: SELECT average FROM table_27922491_8 WHERE bbm = "5/85" ### context: CREATE TABLE table_27922491_8 (average VARCHAR, bbm 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" ### context: CREATE TABLE table_27927185_1 (episode__number INTEGER, viewers__millions_ VARCHAR) |
### 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 ### context: CREATE TABLE table_27927185_1 (viewers__millions_ VARCHAR, episode__number INTEGER) |
### 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" ### context: CREATE TABLE table_27927185_1 (originalairdate 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" ### context: CREATE TABLE table_27927185_1 (directed_by VARCHAR, viewers__millions_ VARCHAR) |
### question: What is the release date of catalogue number DW023? ### answer: 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 "New Worlds for Old"? ### answer: 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 catalogue number for "Waves in the Air"? ### answer: 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 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" ### context: CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_date VARCHAR, art... |
### question: Which artist had a release title of HH? ### answer: SELECT artist FROM table_27932399_1 WHERE release_title = "HH" ### context: CREATE TABLE table_27932399_1 (artist VARCHAR, release_title 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" ### context: CREATE TABLE table_27932399_1 (release_title VARCHAR, artist VARCHAR) |
### question: Who was the dual television commentator in 1990? ### answer: 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 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" ### context: CREATE TABLE table_2794180_11 (radio_commentator VARCHAR, television_commentator VARCH... |
### question: Name the total number of moto2 winners for laguna seca ### answer: 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 circuit for hertz british grand prix ### answer: 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 number of rounds for brno ### answer: SELECT COUNT(round) FROM table_27948565_1 WHERE circuit = "Brno" ### context: CREATE TABLE table_27948565_1 (round VARCHAR, circuit VARCHAR) |
### question: Name the motogp winner for 6 may ### answer: 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 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" ### context: CREATE TABLE table_27965906_2 (b_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" ### context: CREATE TABLE table_27965906_2 (gt_winning_car VARCHAR, a_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" ### context: CREATE TABLE table_27965906_2 (ss_winning_car VARCHAR, ci... |
### 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" ### context: CREATE TABLE table_27965906_2 (rnd VARCHAR, ss_winning_car VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.