combined_text
stringlengths 106
1.05k
|
---|
###question:Tell me the highest time for spain and lane larger than 8###answer:SELECT MAX(time) FROM table_name_35 WHERE country = "spain" AND lane > 8###context:CREATE TABLE table_name_35 (time INTEGER, country VARCHAR, lane VARCHAR) |
###question:Tell me the average heat rank for time less than 24.02 and lane of 1###answer:SELECT AVG(heat_rank) FROM table_name_15 WHERE time < 24.02 AND lane = 1###context:CREATE TABLE table_name_15 (heat_rank INTEGER, time VARCHAR, lane VARCHAR) |
###question:Tell me the total number of time for heat rank of 1###answer:SELECT COUNT(time) FROM table_name_90 WHERE heat_rank = 1###context:CREATE TABLE table_name_90 (time VARCHAR, heat_rank VARCHAR) |
###question:What would the LCD screen size and pixels be for the coolpix 5700?###answer:SELECT lcd_screen_size, _pixels FROM table_name_93 WHERE model = "coolpix 5700"###context:CREATE TABLE table_name_93 (lcd_screen_size VARCHAR, _pixels VARCHAR, model VARCHAR) |
###question:What is the lens zoom and aperture for the coolpix 5400?###answer:SELECT lens__35mm_equiv__zoom, _aperture FROM table_name_79 WHERE model = "coolpix 5400"###context:CREATE TABLE table_name_79 (lens__35mm_equiv__zoom VARCHAR, _aperture VARCHAR, model VARCHAR) |
###question:What is the average number of rounds when fighting against Clay Guida?###answer:SELECT AVG(round) FROM table_name_54 WHERE opponent = "clay guida"###context:CREATE TABLE table_name_54 (round INTEGER, opponent VARCHAR) |
###question:Where was the fight against Gray Maynard?###answer:SELECT location FROM table_name_63 WHERE opponent = "gray maynard"###context:CREATE TABLE table_name_63 (location VARCHAR, opponent VARCHAR) |
###question:What was the result of the 4:27 fight?###answer:SELECT res FROM table_name_51 WHERE time = "4:27"###context:CREATE TABLE table_name_51 (res VARCHAR, time VARCHAR) |
###question:What was the record at WEC 24?###answer:SELECT record FROM table_name_43 WHERE event = "wec 24"###context:CREATE TABLE table_name_43 (record VARCHAR, event VARCHAR) |
###question:What was the result when there were less than 3 rounds against Gil Rael?###answer:SELECT res FROM table_name_16 WHERE round < 3 AND opponent = "gil rael"###context:CREATE TABLE table_name_16 (res VARCHAR, round VARCHAR, opponent VARCHAR) |
###question:What is the amount of assists for richmond kickers and points larger than 24###answer:SELECT SUM(assists) FROM table_name_32 WHERE club = "richmond kickers" AND points > 24###context:CREATE TABLE table_name_32 (assists INTEGER, club VARCHAR, points VARCHAR) |
###question:What is the average amount of assists with a rank higher than 6 and goals 10 and the scorer is Robert Ukrop###answer:SELECT AVG(assists) FROM table_name_10 WHERE rank > 6 AND goals = 10 AND scorer = "robert ukrop"###context:CREATE TABLE table_name_10 (assists INTEGER, scorer VARCHAR, rank VARCHAR, goals VARCHAR) |
###question:Which Tournament has a winner Outcome with a Score of 6–3, 7–5 with Kimberly Po-Messerli as a Partner?###answer:SELECT tournament FROM table_name_85 WHERE outcome = "winner" AND score = "6–3, 7–5" AND partner = "kimberly po-messerli"###context:CREATE TABLE table_name_85 (tournament VARCHAR, partner VARCHAR, outcome VARCHAR, score VARCHAR) |
###question:What is the Outcome of the Los Angeles Tournament when the Partner is Julie Halard?###answer:SELECT outcome FROM table_name_8 WHERE tournament = "los angeles" AND partner = "julie halard"###context:CREATE TABLE table_name_8 (outcome VARCHAR, tournament VARCHAR, partner VARCHAR) |
###question:On what Date is Alexandra Fusai a Partner with a Score of 4–6, 6–3, 6–1?###answer:SELECT date FROM table_name_46 WHERE partner = "alexandra fusai" AND score = "4–6, 6–3, 6–1"###context:CREATE TABLE table_name_46 (date VARCHAR, partner VARCHAR, score VARCHAR) |
###question:Tell me the home of 2-3###answer:SELECT home FROM table_name_5 WHERE aggregate = "2-3"###context:CREATE TABLE table_name_5 (home VARCHAR, aggregate VARCHAR) |
###question:How much money did the country with 282 stores make in sales?###answer:SELECT sales__x1000_ FROM table_name_49 WHERE no_of_stores = 282###context:CREATE TABLE table_name_49 (sales__x1000_ VARCHAR, no_of_stores VARCHAR) |
###question:What is the smallest sales area (m²) that has €4,094/m² and more than 2 stores?###answer:SELECT MIN(sales_area__m²_) FROM table_name_20 WHERE sales_per_area = "€4,094/m²" AND no_of_stores > 2###context:CREATE TABLE table_name_20 (sales_area__m²_ INTEGER, sales_per_area VARCHAR, no_of_stores VARCHAR) |
###question:Tell me the average spectators for 2006-06-21 and time more than 21###answer:SELECT AVG(spectators) FROM table_name_56 WHERE date = "2006-06-21" AND time_cet_ > 21###context:CREATE TABLE table_name_56 (spectators INTEGER, date VARCHAR, time_cet_ VARCHAR) |
###question:Tell me the sum of closed for city of pittsburgh and capacity larger than 59,000###answer:SELECT SUM(closed) FROM table_name_73 WHERE city = "pittsburgh" AND capacity > 59 OFFSET 000###context:CREATE TABLE table_name_73 (closed INTEGER, city VARCHAR, capacity VARCHAR) |
###question:Tell me the lowest closed for capacity of 62,439###answer:SELECT MIN(closed) FROM table_name_34 WHERE capacity = 62 OFFSET 439###context:CREATE TABLE table_name_34 (closed INTEGER, capacity VARCHAR) |
###question:Tell me the college/junior club team for pick of 16###answer:SELECT college_junior_club_team FROM table_name_5 WHERE pick = "16"###context:CREATE TABLE table_name_5 (college_junior_club_team VARCHAR, pick VARCHAR) |
###question:Tell me the nationality for pick of 18###answer:SELECT nationality FROM table_name_24 WHERE pick = "18"###context:CREATE TABLE table_name_24 (nationality VARCHAR, pick VARCHAR) |
###question:I want the player for NHL team for mighty ducks of anaheim###answer:SELECT player FROM table_name_89 WHERE nhl_team = "mighty ducks of anaheim"###context:CREATE TABLE table_name_89 (player VARCHAR, nhl_team VARCHAR) |
###question:I want the NHL team for wade belak###answer:SELECT nhl_team FROM table_name_87 WHERE player = "wade belak"###context:CREATE TABLE table_name_87 (nhl_team VARCHAR, player VARCHAR) |
###question:Tell me the tournament for outcome of winner and score of 4-6 6-3 10-5###answer:SELECT tournament FROM table_name_90 WHERE outcome = "winner" AND score = "4-6 6-3 10-5"###context:CREATE TABLE table_name_90 (tournament VARCHAR, outcome VARCHAR, score VARCHAR) |
###question:Tell me the partner for opponents of anamika bhargava sylvia krywacz###answer:SELECT partner FROM table_name_15 WHERE opponents_in_the_final = "anamika bhargava sylvia krywacz"###context:CREATE TABLE table_name_15 (partner VARCHAR, opponents_in_the_final VARCHAR) |
###question:Tell me the partner for outcome of winner and score of 7-6 (7) 5-7 10-7###answer:SELECT partner FROM table_name_10 WHERE outcome = "winner" AND score = "7-6 (7) 5-7 10-7"###context:CREATE TABLE table_name_10 (partner VARCHAR, outcome VARCHAR, score VARCHAR) |
###question:Tell me the opponents for score of 6-1 2-6 7-10###answer:SELECT opponents_in_the_final FROM table_name_90 WHERE score = "6-1 2-6 7-10"###context:CREATE TABLE table_name_90 (opponents_in_the_final VARCHAR, score VARCHAR) |
###question:Tell me the score of misa eguchi eri hozumi###answer:SELECT score FROM table_name_62 WHERE opponents = "misa eguchi eri hozumi"###context:CREATE TABLE table_name_62 (score VARCHAR, opponents VARCHAR) |
###question:Tell me the date for dinah pfizenmaier anna zaja and winner###answer:SELECT date FROM table_name_46 WHERE outcome = "winner" AND opponents = "dinah pfizenmaier anna zaja"###context:CREATE TABLE table_name_46 (date VARCHAR, outcome VARCHAR, opponents VARCHAR) |
###question:Tell me the opponents for mashona washington november 21, 2009###answer:SELECT opponents FROM table_name_43 WHERE partner = "mashona washington" AND date = "november 21, 2009"###context:CREATE TABLE table_name_43 (opponents VARCHAR, partner VARCHAR, date VARCHAR) |
###question:What is the smallest total for a rank below 4, 0 silver medals, and 2 gold medals?###answer:SELECT MIN(total) FROM table_name_85 WHERE rank < 4 AND silver > 0 AND gold < 2###context:CREATE TABLE table_name_85 (total INTEGER, gold VARCHAR, rank VARCHAR, silver VARCHAR) |
###question:How many gold medals on average were earned by Italy when they held the rank of 4?###answer:SELECT AVG(gold) FROM table_name_5 WHERE nation = "italy" AND rank > 4###context:CREATE TABLE table_name_5 (gold INTEGER, nation VARCHAR, rank VARCHAR) |
###question:Who is the player from Canada with a 199 pick?###answer:SELECT player FROM table_name_75 WHERE nationality = "canada" AND pick = "199"###context:CREATE TABLE table_name_75 (player VARCHAR, nationality VARCHAR, pick VARCHAR) |
###question:Which college or team has a pick of 196?###answer:SELECT college_junior_club_team FROM table_name_59 WHERE pick = "196"###context:CREATE TABLE table_name_59 (college_junior_club_team VARCHAR, pick VARCHAR) |
###question:What is the pick number for Ray Giroux?###answer:SELECT pick FROM table_name_52 WHERE player = "ray giroux"###context:CREATE TABLE table_name_52 (pick VARCHAR, player VARCHAR) |
###question:Tell me the lowest pick number for columbus crew###answer:SELECT MIN(pick__number) FROM table_name_15 WHERE mls_team = "columbus crew"###context:CREATE TABLE table_name_15 (pick__number INTEGER, mls_team VARCHAR) |
###question:Tell me the total number of pick for university of portland###answer:SELECT COUNT(pick__number) FROM table_name_5 WHERE affiliation = "university of portland"###context:CREATE TABLE table_name_5 (pick__number VARCHAR, affiliation VARCHAR) |
###question:Tell me the lowest pick number for new england revolution###answer:SELECT MIN(pick__number) FROM table_name_84 WHERE mls_team = "new england revolution"###context:CREATE TABLE table_name_84 (pick__number INTEGER, mls_team VARCHAR) |
###question:Tell me the affiliation for diego walsh###answer:SELECT affiliation FROM table_name_87 WHERE player = "diego walsh"###context:CREATE TABLE table_name_87 (affiliation VARCHAR, player VARCHAR) |
###question:Tell me the total number of pick for university of virginia###answer:SELECT COUNT(pick__number) FROM table_name_78 WHERE affiliation = "university of virginia"###context:CREATE TABLE table_name_78 (pick__number VARCHAR, affiliation VARCHAR) |
###question:Tell me the D3 compatible for availability of yes for wode jukebox###answer:SELECT d3_compatible FROM table_name_76 WHERE availability = "yes" AND name = "wode jukebox"###context:CREATE TABLE table_name_76 (d3_compatible VARCHAR, availability VARCHAR, name VARCHAR) |
###question:Tell me the pts for glasgow rocks###answer:SELECT pts FROM table_name_96 WHERE div = "glasgow rocks"###context:CREATE TABLE table_name_96 (pts VARCHAR, div VARCHAR) |
###question:Tell me the season for quarter-final position of 4th###answer:SELECT season FROM table_name_97 WHERE play_offs = "quarter-final" AND pos = "4th"###context:CREATE TABLE table_name_97 (season VARCHAR, play_offs VARCHAR, pos VARCHAR) |
###question:Tell me the average Laps for grid of 6###answer:SELECT AVG(laps) FROM table_name_51 WHERE grid = 6###context:CREATE TABLE table_name_51 (laps INTEGER, grid VARCHAR) |
###question:Tell me the carburetor for engine of 250-1v i-6###answer:SELECT carburetor FROM table_name_69 WHERE engine = "250-1v i-6"###context:CREATE TABLE table_name_69 (carburetor VARCHAR, engine VARCHAR) |
###question:Tell me the bore and stroke for Engine of 351-2v cleveland v8###answer:SELECT bore_ & _stroke FROM table_name_9 WHERE engine = "351-2v cleveland v8"###context:CREATE TABLE table_name_9 (bore_ VARCHAR, _stroke VARCHAR, engine VARCHAR) |
###question:Which country is ranked number 2 and has less than 5 total medals?###answer:SELECT COUNT(silver) FROM table_name_61 WHERE rank = 2 AND total < 5###context:CREATE TABLE table_name_61 (silver VARCHAR, rank VARCHAR, total VARCHAR) |
###question:What is the (MT) time which has kansas city chiefs as an opponent on nov 11?###answer:SELECT time___mt__ FROM table_name_13 WHERE opponent = "kansas city chiefs" AND date = "nov 11"###context:CREATE TABLE table_name_13 (time___mt__ VARCHAR, opponent VARCHAR, date VARCHAR) |
###question:Tell me the opponents for runner-up and surface of grass###answer:SELECT opponents_in_the_final FROM table_name_27 WHERE outcome = "runner-up" AND surface = "grass"###context:CREATE TABLE table_name_27 (opponents_in_the_final VARCHAR, outcome VARCHAR, surface VARCHAR) |
###question:Name the venue for netherlands opponent###answer:SELECT venue FROM table_name_88 WHERE opponent = "netherlands"###context:CREATE TABLE table_name_88 (venue VARCHAR, opponent VARCHAR) |
###question:Name the opponent for 10-04-2007###answer:SELECT opponent FROM table_name_46 WHERE date = "10-04-2007"###context:CREATE TABLE table_name_46 (opponent VARCHAR, date VARCHAR) |
###question:Name the runs balls for wicket of 3rd for australia opponent###answer:SELECT runs__balls_ FROM table_name_9 WHERE wicket = "3rd" AND opponent = "australia"###context:CREATE TABLE table_name_9 (runs__balls_ VARCHAR, wicket VARCHAR, opponent VARCHAR) |
###question:Name the wicket for 19-03-2007###answer:SELECT wicket FROM table_name_59 WHERE date = "19-03-2007"###context:CREATE TABLE table_name_59 (wicket VARCHAR, date VARCHAR) |
###question:Which fleet launched on July 30, 1961?###answer:SELECT fleet FROM table_name_63 WHERE launched = "july 30, 1961"###context:CREATE TABLE table_name_63 (fleet VARCHAR, launched VARCHAR) |
###question:Which shipyard has a fleet that was laid down on April 21, 1962?###answer:SELECT shipyard FROM table_name_72 WHERE laid_down = "april 21, 1962"###context:CREATE TABLE table_name_72 (shipyard VARCHAR, laid_down VARCHAR) |
###question:What is the status of the fleet that was commissioned on July 28, 1963?###answer:SELECT status FROM table_name_9 WHERE commissioned = "july 28, 1963"###context:CREATE TABLE table_name_9 (status VARCHAR, commissioned VARCHAR) |
###question:Tell me the launched for august 31, 1964###answer:SELECT launched FROM table_name_23 WHERE commissioned = "august 31, 1964"###context:CREATE TABLE table_name_23 (launched VARCHAR, commissioned VARCHAR) |
###question:Tell me what was commissioned december 30, 1965###answer:SELECT commissioned FROM table_name_12 WHERE launched = "december 30, 1965"###context:CREATE TABLE table_name_12 (commissioned VARCHAR, launched VARCHAR) |
###question:Which episode with a demo of 0.7/3 was the lowest?###answer:SELECT MIN(episode__number) FROM table_name_29 WHERE demo = "0.7/3"###context:CREATE TABLE table_name_29 (episode__number INTEGER, demo VARCHAR) |
###question:When is the air date that demo-ed at 1.6/5?###answer:SELECT air_date FROM table_name_48 WHERE demo = "1.6/5"###context:CREATE TABLE table_name_48 (air_date VARCHAR, demo VARCHAR) |
###question:For demo 1.6/5, what is the title?###answer:SELECT title FROM table_name_37 WHERE demo = "1.6/5"###context:CREATE TABLE table_name_37 (title VARCHAR, demo VARCHAR) |
###question:What date was gabriela paz-franco the opponent?###answer:SELECT date FROM table_name_2 WHERE opponent = "gabriela paz-franco"###context:CREATE TABLE table_name_2 (date VARCHAR, opponent VARCHAR) |
###question:What surface was the game played on for the September 13, 2009 match?###answer:SELECT surface FROM table_name_43 WHERE date = "september 13, 2009"###context:CREATE TABLE table_name_43 (surface VARCHAR, date VARCHAR) |
###question:On which track did Takashi Kogure hold pole position?###answer:SELECT track FROM table_name_86 WHERE pole_position = "takashi kogure"###context:CREATE TABLE table_name_86 (track VARCHAR, pole_position VARCHAR) |
###question:On round 3 for Arting Team Impul, who held pole position?###answer:SELECT pole_position FROM table_name_33 WHERE team = "arting team impul" AND round = 3###context:CREATE TABLE table_name_33 (pole_position VARCHAR, team VARCHAR, round VARCHAR) |
###question:Who was the winner when Katsuyuki Hiranaka had the fastest lap?###answer:SELECT winner FROM table_name_89 WHERE fastest_lap = "katsuyuki hiranaka"###context:CREATE TABLE table_name_89 (winner VARCHAR, fastest_lap VARCHAR) |
###question:Before round 9, when Takashi Kogure held pole position, who was the team?###answer:SELECT team FROM table_name_85 WHERE round < 9 AND pole_position = "takashi kogure"###context:CREATE TABLE table_name_85 (team VARCHAR, round VARCHAR, pole_position VARCHAR) |
###question:Tell me the MPEG-2 of yes and MPEG-1 of yes###answer:SELECT realvideo FROM table_name_86 WHERE mpeg_2 = "yes" AND mpeg_1 = "yes"###context:CREATE TABLE table_name_86 (realvideo VARCHAR, mpeg_2 VARCHAR, mpeg_1 VARCHAR) |
###question:Tell me the MPEG-1 for real video of no###answer:SELECT mpeg_1 FROM table_name_77 WHERE realvideo = "no"###context:CREATE TABLE table_name_77 (mpeg_1 VARCHAR, realvideo VARCHAR) |
###question:Tell me the affiliation for mls team of metrostars and pick number of 26###answer:SELECT affiliation FROM table_name_28 WHERE mls_team = "metrostars" AND pick__number = 26###context:CREATE TABLE table_name_28 (affiliation VARCHAR, mls_team VARCHAR, pick__number VARCHAR) |
###question:Tell me the total number of picks for position of m of williams college###answer:SELECT COUNT(pick__number) FROM table_name_9 WHERE position = "m" AND affiliation = "williams college"###context:CREATE TABLE table_name_9 (pick__number VARCHAR, position VARCHAR, affiliation VARCHAR) |
###question:who was the runner-up in the 1915 competition for 'Articles with HCards'?###answer:SELECT runner_up FROM table_name_25 WHERE year = 1915###context:CREATE TABLE table_name_25 (runner_up VARCHAR, year VARCHAR) |
###question:Who was the runner-up in 1887 competition for 'Articles with HCards'?###answer:SELECT runner_up FROM table_name_39 WHERE year = 1887###context:CREATE TABLE table_name_39 (runner_up VARCHAR, year VARCHAR) |
###question:What is the home team score when the away team is Collingwood?###answer:SELECT home_team AS score FROM table_name_36 WHERE away_team = "collingwood"###context:CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR) |
###question:what fleet is associated with the number L4?###answer:SELECT fleet FROM table_name_61 WHERE number = "l4"###context:CREATE TABLE table_name_61 (fleet VARCHAR, number VARCHAR) |
###question:what number is associated with the baltic fleet and leninets (ленинец)?###answer:SELECT number FROM table_name_49 WHERE fleet = "baltic" AND name = "leninets (ленинец)"###context:CREATE TABLE table_name_49 (number VARCHAR, fleet VARCHAR, name VARCHAR) |
###question:when was garibaldets (гарибальдиец) launched?###answer:SELECT launched FROM table_name_94 WHERE name = "garibaldets (гарибальдиец)"###context:CREATE TABLE table_name_94 (launched VARCHAR, name VARCHAR) |
###question:when was the number l6, with a fleet of black sea, launched?###answer:SELECT launched FROM table_name_86 WHERE fleet = "black sea" AND number = "l6"###context:CREATE TABLE table_name_86 (launched VARCHAR, fleet VARCHAR, number VARCHAR) |
###question:what number is associated with the name chartist (чартист)?###answer:SELECT number FROM table_name_85 WHERE name = "chartist (чартист)"###context:CREATE TABLE table_name_85 (number VARCHAR, name VARCHAR) |
###question:What date did the VFL play Punt Road Oval?###answer:SELECT date FROM table_name_90 WHERE venue = "punt road oval"###context:CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR) |
###question:Who played home team at the Arden Street Oval game?###answer:SELECT home_team FROM table_name_99 WHERE venue = "arden street oval"###context:CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR) |
###question:How much did the away team score at Victoria park?###answer:SELECT away_team AS score FROM table_name_84 WHERE venue = "victoria park"###context:CREATE TABLE table_name_84 (away_team VARCHAR, venue VARCHAR) |
###question:What date was the ensemble in North East England closed?###answer:SELECT closure_date FROM table_name_70 WHERE region = "north east england"###context:CREATE TABLE table_name_70 (closure_date VARCHAR, region VARCHAR) |
###question:What was the operator of the ensemble from Yorkshire?###answer:SELECT operator FROM table_name_89 WHERE region = "yorkshire"###context:CREATE TABLE table_name_89 (operator VARCHAR, region VARCHAR) |
###question:When was the ensemble closed that went on air in June 2003?###answer:SELECT closure_date FROM table_name_96 WHERE on_air_date = "june 2003"###context:CREATE TABLE table_name_96 (closure_date VARCHAR, on_air_date VARCHAR) |
###question:What was the license award date for the ensemble from South Wales and the Severn Estuary that was on air in July 2001?###answer:SELECT licence_award_date FROM table_name_67 WHERE on_air_date = "july 2001" AND region = "south wales and the severn estuary"###context:CREATE TABLE table_name_67 (licence_award_date VARCHAR, on_air_date VARCHAR, region VARCHAR) |
###question:What is the operator of the ensemble from Yorkshire?###answer:SELECT operator FROM table_name_99 WHERE region = "yorkshire"###context:CREATE TABLE table_name_99 (operator VARCHAR, region VARCHAR) |
###question:Who was the home team when attendance was over 41,846?###answer:SELECT home_team FROM table_name_16 WHERE crowd > 41 OFFSET 846###context:CREATE TABLE table_name_16 (home_team VARCHAR, crowd INTEGER) |
###question:Where did Collingwood play as the home team?###answer:SELECT venue FROM table_name_28 WHERE home_team = "collingwood"###context:CREATE TABLE table_name_28 (venue VARCHAR, home_team VARCHAR) |
###question:What was South Melbourne's score when they played as the home team?###answer:SELECT home_team AS score FROM table_name_9 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_9 (home_team VARCHAR) |
###question:What was the attendance when the VFL played Lake Oval?###answer:SELECT COUNT(crowd) FROM table_name_44 WHERE venue = "lake oval"###context:CREATE TABLE table_name_44 (crowd VARCHAR, venue VARCHAR) |
###question:What is the Winning Team with Rick Mears' and Kraco Twin 125 (R1)?###answer:SELECT winning_team FROM table_name_80 WHERE winning_driver = "rick mears" AND name = "kraco twin 125 (r1)"###context:CREATE TABLE table_name_80 (winning_team VARCHAR, winning_driver VARCHAR, name VARCHAR) |
###question:What is Penske Racing's name?###answer:SELECT name FROM table_name_52 WHERE winning_team = "penske racing"###context:CREATE TABLE table_name_52 (name VARCHAR, winning_team VARCHAR) |
###question:Who is the winning driver of Penske Racing, and what was Rick Mears' pole position?###answer:SELECT winning_driver FROM table_name_30 WHERE winning_team = "penske racing" AND pole_position = "rick mears"###context:CREATE TABLE table_name_30 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR) |
###question:Who was Kraco Twin 125 (R2)'s Winning Driver?###answer:SELECT winning_driver FROM table_name_6 WHERE name = "kraco twin 125 (r2)"###context:CREATE TABLE table_name_6 (winning_driver VARCHAR, name VARCHAR) |
###question:What is the Report of Winning Team Penske Racing, and what was Rick Mears' Pole position?###answer:SELECT report FROM table_name_68 WHERE winning_team = "penske racing" AND pole_position = "rick mears"###context:CREATE TABLE table_name_68 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR) |
###question:What is the Pole Position for Winning Team Penske Racing, and the Name of II Copa Mexico 150?###answer:SELECT pole_position FROM table_name_41 WHERE winning_team = "penske racing" AND name = "ii copa mexico 150"###context:CREATE TABLE table_name_41 (pole_position VARCHAR, winning_team VARCHAR, name VARCHAR) |
###question:Who was the away team at the game held at Brunswick Street Oval?###answer:SELECT away_team FROM table_name_45 WHERE venue = "brunswick street oval"###context:CREATE TABLE table_name_45 (away_team VARCHAR, venue VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.