combined_text stringlengths 106 1.05k |
|---|
###question:who is the driver with the engine era 1.5 l6 s and the chassis is era b?###answer:SELECT driver FROM table_name_17 WHERE engine = "era 1.5 l6 s" AND chassis = "era b"###context:CREATE TABLE table_name_17 (driver VARCHAR, engine VARCHAR, chassis VARCHAR) |
###question:who is the constructor when the tyre is d, the engine is talbot 23cv 4.5 l6, the chassis is talbot-lago t26c and the entrant is ecurie belge?###answer:SELECT constructor FROM table_name_75 WHERE tyre = "d" AND engine = "talbot 23cv 4.5 l6" AND chassis = "talbot-lago t26c" AND entrant = "ecurie belge"###cont... |
###question:What is KK -1 if KK -3 is 1,100?###answer:SELECT kk___1 FROM table_name_79 WHERE kk___3 = "1,100"###context:CREATE TABLE table_name_79 (kk___1 VARCHAR, kk___3 VARCHAR) |
###question:What is KK -5 if KK - 3 is 310?###answer:SELECT kk___5 FROM table_name_38 WHERE kk___3 = "310"###context:CREATE TABLE table_name_38 (kk___5 VARCHAR, kk___3 VARCHAR) |
###question:What is KK - 5 if KK - 1 is 1,067?###answer:SELECT kk___5 FROM table_name_42 WHERE kk___1 = "1,067"###context:CREATE TABLE table_name_42 (kk___5 VARCHAR, kk___1 VARCHAR) |
###question:Who is the Winner with a Time of 1:12.00 and Melvin A. Holland as the Jockey?###answer:SELECT winner FROM table_name_74 WHERE time = "1:12.00" AND jockey = "melvin a. holland"###context:CREATE TABLE table_name_74 (winner VARCHAR, time VARCHAR, jockey VARCHAR) |
###question:Which Year has a Purse of $83,925?###answer:SELECT year FROM table_name_71 WHERE purse = "$83,925"###context:CREATE TABLE table_name_71 (year VARCHAR, purse VARCHAR) |
###question:What is the Purse listed for the Year of 1998?###answer:SELECT purse FROM table_name_10 WHERE year = "1998"###context:CREATE TABLE table_name_10 (purse VARCHAR, year VARCHAR) |
###question:What's the Winner in the Year of 2000?###answer:SELECT winner FROM table_name_9 WHERE year = "2000"###context:CREATE TABLE table_name_9 (winner VARCHAR, year VARCHAR) |
###question:What's the WInner with a TIme of 1:10.60, and Owner of Leslie Combs II?###answer:SELECT winner FROM table_name_43 WHERE time = "1:10.60" AND owner = "leslie combs ii"###context:CREATE TABLE table_name_43 (winner VARCHAR, time VARCHAR, owner VARCHAR) |
###question:Who is the Trainer with the Year of 2013?###answer:SELECT trainer FROM table_name_33 WHERE year = "2013"###context:CREATE TABLE table_name_33 (trainer VARCHAR, year VARCHAR) |
###question:How many points did the away team of st kilda score?###answer:SELECT away_team AS score FROM table_name_84 WHERE away_team = "st kilda"###context:CREATE TABLE table_name_84 (away_team VARCHAR) |
###question:Tell me the date with result of l 13β9###answer:SELECT date FROM table_name_94 WHERE result = "l 13β9"###context:CREATE TABLE table_name_94 (date VARCHAR, result VARCHAR) |
###question:Tell me the total number of week for w 35β7###answer:SELECT COUNT(week) FROM table_name_67 WHERE result = "w 35β7"###context:CREATE TABLE table_name_67 (week VARCHAR, result VARCHAR) |
###question:Tell me the average week for result of l 34β24###answer:SELECT AVG(week) FROM table_name_70 WHERE result = "l 34β24"###context:CREATE TABLE table_name_70 (week INTEGER, result VARCHAR) |
###question:Who was the President of Czechoslovakia when an ambassador's tenure began in 1950?###answer:SELECT czechoslovak_president FROM table_name_99 WHERE tenure_begin = "1950"###context:CREATE TABLE table_name_99 (czechoslovak_president VARCHAR, tenure_begin VARCHAR) |
###question:What is the total share for an episode with an air date of November 19, 2007?###answer:SELECT SUM(share) FROM table_name_2 WHERE air_date = "november 19, 2007"###context:CREATE TABLE table_name_2 (share INTEGER, air_date VARCHAR) |
###question:Which manufacturer has a Time/Retired of +15.665?###answer:SELECT manufacturer FROM table_name_35 WHERE time_retired = "+15.665"###context:CREATE TABLE table_name_35 (manufacturer VARCHAR, time_retired VARCHAR) |
###question:What were the laps of aprilia with a grid of 10?###answer:SELECT laps FROM table_name_72 WHERE manufacturer = "aprilia" AND grid = 10###context:CREATE TABLE table_name_72 (laps VARCHAR, manufacturer VARCHAR, grid VARCHAR) |
###question:What was the size of the crowd at the game played at Junction Oval?###answer:SELECT AVG(crowd) FROM table_name_66 WHERE venue = "junction oval"###context:CREATE TABLE table_name_66 (crowd INTEGER, venue VARCHAR) |
###question:When was the game when North Melbourne was the home team?###answer:SELECT date FROM table_name_35 WHERE home_team = "north melbourne"###context:CREATE TABLE table_name_35 (date VARCHAR, home_team VARCHAR) |
###question:Which School/Club Team does Andrew Jones play for?###answer:SELECT school_club_team FROM table_name_64 WHERE player = "andrew jones"###context:CREATE TABLE table_name_64 (school_club_team VARCHAR, player VARCHAR) |
###question:Which School/Club Team did not make it to round 2?###answer:SELECT school_club_team FROM table_name_5 WHERE round < 2###context:CREATE TABLE table_name_5 (school_club_team VARCHAR, round INTEGER) |
###question:Which player is the 24 pick?###answer:SELECT player FROM table_name_16 WHERE pick = "24"###context:CREATE TABLE table_name_16 (player VARCHAR, pick VARCHAR) |
###question:What is the average round of the number 16 pick?###answer:SELECT AVG(round) FROM table_name_72 WHERE pick = "16"###context:CREATE TABLE table_name_72 (round INTEGER, pick VARCHAR) |
###question:How many games were lost where the win percentage is smaller than 16.7 and the played games is 3?###answer:SELECT COUNT(lost) FROM table_name_83 WHERE win__percentage < 16.7 AND played = 3###context:CREATE TABLE table_name_83 (lost VARCHAR, win__percentage VARCHAR, played VARCHAR) |
###question:Where is pine valley?###answer:SELECT location FROM table_name_23 WHERE name = "pine valley"###context:CREATE TABLE table_name_23 (location VARCHAR, name VARCHAR) |
###question:What is augusta's low rank?###answer:SELECT MIN(rank) FROM table_name_58 WHERE location = "augusta"###context:CREATE TABLE table_name_58 (rank INTEGER, location VARCHAR) |
###question:Which Model has the GCM (kg) Technical Capacity of 42000?###answer:SELECT model FROM table_name_52 WHERE gcm__kg__technical_capacity = "42000"###context:CREATE TABLE table_name_52 (model VARCHAR, gcm__kg__technical_capacity VARCHAR) |
###question:Which Model has a GCM (kg) Technical Capacity of 35000, a GVM (kg) Technical Capacity of 16000, and Cummins Interact 6.0-euro III (turbo intercooler) for the Engine?###answer:SELECT model FROM table_name_94 WHERE gcm__kg__technical_capacity = "35000" AND gvm__kg__technical_capacity = "16000" AND engine_make... |
###question:Which character won before 2006?###answer:SELECT character FROM table_name_44 WHERE result = "won" AND year < 2006###context:CREATE TABLE table_name_44 (character VARCHAR, result VARCHAR, year VARCHAR) |
###question:In 2004 who was favourite maa?###answer:SELECT character FROM table_name_6 WHERE category = "favourite maa" AND year = 2004###context:CREATE TABLE table_name_6 (character VARCHAR, category VARCHAR, year VARCHAR) |
###question:What were the results after 2004?###answer:SELECT result FROM table_name_33 WHERE year > 2004###context:CREATE TABLE table_name_33 (result VARCHAR, year INTEGER) |
###question:In 2007 what category won?###answer:SELECT category FROM table_name_62 WHERE result = "won" AND year < 2007###context:CREATE TABLE table_name_62 (category VARCHAR, result VARCHAR, year VARCHAR) |
###question:What's the D 48 β when the D 40 β is D 37?###answer:SELECT d_48_β FROM table_name_97 WHERE d_40_β = "d 37"###context:CREATE TABLE table_name_97 (d_48_β VARCHAR, d_40_β VARCHAR) |
###question:What's the D 42 β when D 46 β is majorityβ?###answer:SELECT d_42_β FROM table_name_14 WHERE d_46_β = "majorityβ"###context:CREATE TABLE table_name_14 (d_42_β VARCHAR, d_46_β VARCHAR) |
###question:What's the D 40 β when D 43 β is d 14?###answer:SELECT d_40_β FROM table_name_23 WHERE d_43_β = "d 14"###context:CREATE TABLE table_name_23 (d_40_β VARCHAR, d_43_β VARCHAR) |
###question:What's the D 42 β when D 44 β is majorityβ?###answer:SELECT d_42_β FROM table_name_59 WHERE d_44_β = "majorityβ"###context:CREATE TABLE table_name_59 (d_42_β VARCHAR, d_44_β VARCHAR) |
###question:What's the D 44 β when D 46 β is d 26?###answer:SELECT d_44_β FROM table_name_27 WHERE d_46_β = "d 26"###context:CREATE TABLE table_name_27 (d_44_β VARCHAR, d_46_β VARCHAR) |
###question:What's the D 42 β when D 43 β is r 5?###answer:SELECT d_42_β FROM table_name_13 WHERE d_43_β = "r 5"###context:CREATE TABLE table_name_13 (d_42_β VARCHAR, d_43_β VARCHAR) |
###question:How many benue houses have been founded?###answer:SELECT COUNT(founded) FROM table_name_67 WHERE house_name = "benue"###context:CREATE TABLE table_name_67 (founded VARCHAR, house_name VARCHAR) |
###question:When is the earliest year founded for houses named after the river benue?###answer:SELECT MIN(founded) FROM table_name_56 WHERE named_after = "river benue"###context:CREATE TABLE table_name_56 (founded INTEGER, named_after VARCHAR) |
###question:What composition was founded in 1976?###answer:SELECT composition FROM table_name_37 WHERE founded = 1976###context:CREATE TABLE table_name_37 (composition VARCHAR, founded VARCHAR) |
###question:What colours have a House Name of ogun?###answer:SELECT colours FROM table_name_93 WHERE house_name = "ogun"###context:CREATE TABLE table_name_93 (colours VARCHAR, house_name VARCHAR) |
###question:What's the average attendance on january 6, 2008?###answer:SELECT AVG(attendance) FROM table_name_34 WHERE date = "january 6, 2008"###context:CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR) |
###question:What was the score when the spurs were the visitors?###answer:SELECT score FROM table_name_43 WHERE visitor = "spurs"###context:CREATE TABLE table_name_43 (score VARCHAR, visitor VARCHAR) |
###question:What is the total GNIS Feature ID with a County of idaho?###answer:SELECT SUM(gnis_feature_id) FROM table_name_64 WHERE county = "idaho"###context:CREATE TABLE table_name_64 (gnis_feature_id INTEGER, county VARCHAR) |
###question:What is the lowest GNIS Feature ID from County of sheridan?###answer:SELECT MIN(gnis_feature_id) FROM table_name_39 WHERE county = "sheridan"###context:CREATE TABLE table_name_39 (gnis_feature_id INTEGER, county VARCHAR) |
###question:Which state has a Name of diamond lake, and a GNIS Feature ID of 1579127?###answer:SELECT state FROM table_name_91 WHERE name = "diamond lake" AND gnis_feature_id = 1579127###context:CREATE TABLE table_name_91 (state VARCHAR, name VARCHAR, gnis_feature_id VARCHAR) |
###question:Who directed the episode written cyrus nowrasteh?###answer:SELECT directed_by FROM table_name_85 WHERE written_by = "cyrus nowrasteh"###context:CREATE TABLE table_name_85 (directed_by VARCHAR, written_by VARCHAR) |
###question:What is the Rank (Pakistan) of the mountain that has a World Rank smaller than 11 and a Height smaller than 8126?###answer:SELECT COUNT(rank__pakistan_) FROM table_name_72 WHERE world_rank < 11 AND height__m_ < 8126###context:CREATE TABLE table_name_72 (rank__pakistan_ VARCHAR, world_rank VARCHAR, height__m... |
###question:Which 2006 tournament had a 4R performance in 2001?###answer:SELECT 2006 FROM table_name_96 WHERE 2001 = "4r"###context:CREATE TABLE table_name_96 (Id VARCHAR) |
###question:Which tournament had a performance of 1R in 2004 and 2R in 1998?###answer:SELECT tournament FROM table_name_79 WHERE 2004 = "1r" AND 1998 = "2r"###context:CREATE TABLE table_name_79 (tournament VARCHAR) |
###question:Which 1998 tournament had a performance of 3R in 2007?###answer:SELECT 1998 FROM table_name_14 WHERE 2007 = "3r"###context:CREATE TABLE table_name_14 (Id VARCHAR) |
###question:What's the name of the 2005 tournament that has a 1R in both 2006 and 2002?###answer:SELECT 2005 FROM table_name_14 WHERE 2006 = "1r" AND 2002 = "1r"###context:CREATE TABLE table_name_14 (Id VARCHAR) |
###question:For End of Fiscal Years past 1980 that also have as % of GDP Low-High of 83.4-84.4, and a Debt Held By Public ($Billions) smaller than 7,552 what would be the average Gross Debt in $Billions undeflated Treas. in said years?###answer:SELECT AVG(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_1 ... |
###question:For End of Fiscal Year(s) with a Debt Held By Public ($Billions) larger than 236.8, and as % of GDP Low-High of 33.4 what is the sum of the number of Gross Debt in $Billions undeflated Treas.?###answer:SELECT COUNT(gross_debt_in_) AS $billions_undeflated_treas FROM table_name_11 WHERE debt_held_by_public__$... |
###question:What player was selected in Round 6?###answer:SELECT player FROM table_name_96 WHERE round = 6###context:CREATE TABLE table_name_96 (player VARCHAR, round VARCHAR) |
###question:What is the nationality of the player who played for the Peterborough Petes (OHL)?###answer:SELECT nationality FROM table_name_6 WHERE college_junior_club_team__league_ = "peterborough petes (ohl)"###context:CREATE TABLE table_name_6 (nationality VARCHAR, college_junior_club_team__league_ VARCHAR) |
###question:Which round was Mike Peca (C) of Canada selected in?###answer:SELECT SUM(round) FROM table_name_84 WHERE nationality = "canada" AND player = "mike peca (c)"###context:CREATE TABLE table_name_84 (round INTEGER, nationality VARCHAR, player VARCHAR) |
###question:What is the smallest grid for Ayrton Senna?###answer:SELECT MIN(grid) FROM table_name_21 WHERE driver = "ayrton senna"###context:CREATE TABLE table_name_21 (grid INTEGER, driver VARCHAR) |
###question:What is the Time/Retired for laps higher than 52 on a grid larger than 21?###answer:SELECT time_retired FROM table_name_47 WHERE laps > 52 AND grid > 21###context:CREATE TABLE table_name_47 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR) |
###question:What is the sum of laps for grid 20?###answer:SELECT SUM(laps) FROM table_name_53 WHERE grid = 20###context:CREATE TABLE table_name_53 (laps INTEGER, grid VARCHAR) |
###question:What is the most laps for Ayrton Senna?###answer:SELECT MAX(laps) FROM table_name_6 WHERE driver = "ayrton senna"###context:CREATE TABLE table_name_6 (laps INTEGER, driver VARCHAR) |
###question:what was the score of the parallel bars with a floor exercise score more than 9.137, vault more than 9.5 and horizontal bar of 9.225?###answer:SELECT SUM(parallel_bars) FROM table_name_87 WHERE floor_exercise > 9.137 AND horizontal_bar = 9.225 AND vault > 9.5###context:CREATE TABLE table_name_87 (parallel_b... |
###question:what was the floor exercise score with a pommel horse score of 9.65 and horizontal bar score more than 9.475?###answer:SELECT MAX(floor_exercise) FROM table_name_81 WHERE pommel_horse = 9.65 AND horizontal_bar > 9.475###context:CREATE TABLE table_name_81 (floor_exercise INTEGER, pommel_horse VARCHAR, horiz... |
###question:Which tournament had A in 2008, and a 1r in 2010?###answer:SELECT tournament FROM table_name_4 WHERE 2008 = "a" AND 2010 = "1r"###context:CREATE TABLE table_name_4 (tournament VARCHAR) |
###question:What was the position for 2008, where 2012 was q1, and 2010 was 1r?###answer:SELECT 2008 FROM table_name_12 WHERE 2012 = "q1" AND 2010 = "1r"###context:CREATE TABLE table_name_12 (Id VARCHAR) |
###question:Which venue has a Goal of 3?###answer:SELECT venue FROM table_name_81 WHERE goal = 3###context:CREATE TABLE table_name_81 (venue VARCHAR, goal VARCHAR) |
###question:Which venue was used on 10 september 2010?###answer:SELECT venue FROM table_name_28 WHERE date = "10 september 2010"###context:CREATE TABLE table_name_28 (venue VARCHAR, date VARCHAR) |
###question:How many carries for the player with under 6 yards and an average of over 5?###answer:SELECT COUNT(car) FROM table_name_48 WHERE yards < 6 AND avg > 5###context:CREATE TABLE table_name_48 (car VARCHAR, yards VARCHAR, avg VARCHAR) |
###question:What was the longest carry for kevin clemens with under 31 yards total?###answer:SELECT MAX(long) FROM table_name_72 WHERE player = "kevin clemens" AND yards < 31###context:CREATE TABLE table_name_72 (long INTEGER, player VARCHAR, yards VARCHAR) |
###question:What was the attendance at Brunswick Street Oval?###answer:SELECT COUNT(crowd) FROM table_name_42 WHERE venue = "brunswick street oval"###context:CREATE TABLE table_name_42 (crowd VARCHAR, venue VARCHAR) |
###question:What's listed as the First Day Cover Cancellation with a Date of Issue of 13 June 2005?###answer:SELECT first_day_cover_cancellation FROM table_name_4 WHERE date_of_issue = "13 june 2005"###context:CREATE TABLE table_name_4 (first_day_cover_cancellation VARCHAR, date_of_issue VARCHAR) |
###question:What's the First Day Cover Cancellation with Denomination of $0.50 and Date of Issue as 13 June 2005?###answer:SELECT first_day_cover_cancellation FROM table_name_68 WHERE denomination = "$0.50" AND date_of_issue = "13 june 2005"###context:CREATE TABLE table_name_68 (first_day_cover_cancellation VARCHAR, de... |
###question:What's the Denomination listed for the Date of Issue 12 April 2005?###answer:SELECT denomination FROM table_name_88 WHERE date_of_issue = "12 april 2005"###context:CREATE TABLE table_name_88 (denomination VARCHAR, date_of_issue VARCHAR) |
###question:Which Paper Type has a Denomination of $0.50 and Date of Issue 4 February 2005?###answer:SELECT paper_type FROM table_name_30 WHERE denomination = "$0.50" AND date_of_issue = "4 february 2005"###context:CREATE TABLE table_name_30 (paper_type VARCHAR, denomination VARCHAR, date_of_issue VARCHAR) |
###question:What's the Date of Issue for Design of Katalin Kovats?###answer:SELECT date_of_issue FROM table_name_46 WHERE design = "katalin kovats"###context:CREATE TABLE table_name_46 (date_of_issue VARCHAR, design VARCHAR) |
###question:What was the lowest recorded record for a player with an average larger than 13?###answer:SELECT MIN(rec) FROM table_name_57 WHERE avg > 13###context:CREATE TABLE table_name_57 (rec INTEGER, avg INTEGER) |
###question:How many yards were averaged by the player that had a higher than 13 average with less than 18 long?###answer:SELECT AVG(yards) FROM table_name_94 WHERE long < 18 AND avg > 13###context:CREATE TABLE table_name_94 (yards INTEGER, long VARCHAR, avg VARCHAR) |
###question:For an airline of Wizz Air and fewer than 83 destinations, what is the highest passenger fleet?###answer:SELECT MAX(passenger_fleet) FROM table_name_77 WHERE airline_holding = "wizz air" AND current_destinations < 83###context:CREATE TABLE table_name_77 (passenger_fleet INTEGER, airline_holding VARCHAR, cur... |
###question:Which alliance has a rank of 40?###answer:SELECT alliance__association FROM table_name_85 WHERE rank = 40###context:CREATE TABLE table_name_85 (alliance__association VARCHAR, rank VARCHAR) |
###question:For airlines named Aeroflot Group, what is the alliance?###answer:SELECT alliance__association FROM table_name_11 WHERE airline_holding = "aeroflot group"###context:CREATE TABLE table_name_11 (alliance__association VARCHAR, airline_holding VARCHAR) |
###question:In which year was a linebacker pick 17?###answer:SELECT year FROM table_name_4 WHERE position = "linebacker" AND pick = "17"###context:CREATE TABLE table_name_4 (year VARCHAR, position VARCHAR, pick VARCHAR) |
###question:What is the name of the cornerback from 1997?###answer:SELECT player_name FROM table_name_42 WHERE position = "cornerback" AND year = 1997###context:CREATE TABLE table_name_42 (player_name VARCHAR, position VARCHAR, year VARCHAR) |
###question:What is the name of the player from after 1989 from Washington State?###answer:SELECT player_name FROM table_name_48 WHERE year > 1989 AND college = "washington state"###context:CREATE TABLE table_name_48 (player_name VARCHAR, year VARCHAR, college VARCHAR) |
###question:Which race has a Margin of 8?###answer:SELECT race FROM table_name_5 WHERE margin = "8"###context:CREATE TABLE table_name_5 (race VARCHAR, margin VARCHAR) |
###question:How many Runners have a Placing that isn't 1?###answer:SELECT COUNT(runners) FROM table_name_55 WHERE placing > 1###context:CREATE TABLE table_name_55 (runners VARCHAR, placing INTEGER) |
###question:What is the lowest number of Runners that has a Placing that isn't 1?###answer:SELECT MIN(runners) FROM table_name_12 WHERE placing < 1###context:CREATE TABLE table_name_12 (runners INTEGER, placing INTEGER) |
###question:What is the lowest Prize amount for the Irish Derby Race?###answer:SELECT MIN(prize__) AS Β£k_ FROM table_name_87 WHERE race = "irish derby"###context:CREATE TABLE table_name_87 (prize__ INTEGER, race VARCHAR) |
###question:What was the mintage having an issue price of $1,099.99, artist being Pamela Stagg?###answer:SELECT AVG(mintage) FROM table_name_62 WHERE issue_price = "$1,099.99" AND artist = "pamela stagg"###context:CREATE TABLE table_name_62 (mintage INTEGER, issue_price VARCHAR, artist VARCHAR) |
###question:What was the year that had an issue price of $1,295.95?###answer:SELECT AVG(year) FROM table_name_31 WHERE issue_price = "$1,295.95"###context:CREATE TABLE table_name_31 (year INTEGER, issue_price VARCHAR) |
###question:What was the average mintage for that of artist Celia Godkin, before the year 2010?###answer:SELECT AVG(mintage) FROM table_name_75 WHERE artist = "celia godkin" AND year < 2010###context:CREATE TABLE table_name_75 (mintage INTEGER, artist VARCHAR, year VARCHAR) |
###question:What was the away team score at Windy Hill?###answer:SELECT away_team AS score FROM table_name_15 WHERE venue = "windy hill"###context:CREATE TABLE table_name_15 (away_team VARCHAR, venue VARCHAR) |
###question:Who was the home team at Lake Oval?###answer:SELECT home_team FROM table_name_66 WHERE venue = "lake oval"###context:CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR) |
###question:On what date was the venue VFL Park?###answer:SELECT date FROM table_name_5 WHERE venue = "vfl park"###context:CREATE TABLE table_name_5 (date VARCHAR, venue VARCHAR) |
###question:Which team was the home team at Glenferrie Oval?###answer:SELECT home_team FROM table_name_82 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_82 (home_team VARCHAR, venue VARCHAR) |
###question:What was the date when Steffi Graf was the opponent in the final and the score was 2β6, 0β6?###answer:SELECT date FROM table_name_49 WHERE opponent_in_the_final = "steffi graf" AND score_in_the_final = "2β6, 0β6"###context:CREATE TABLE table_name_49 (date VARCHAR, opponent_in_the_final VARCHAR, score_in_the... |
###question:What was the surface where the outcome was winner on 12 march 1989?###answer:SELECT surface FROM table_name_19 WHERE outcome = "winner" AND date = "12 march 1989"###context:CREATE TABLE table_name_19 (surface VARCHAR, outcome VARCHAR, date VARCHAR) |
###question:What was the outcome of the Tournament of lugano , switzerland wta virginia slims, against bonnie gadusek?###answer:SELECT outcome FROM table_name_68 WHERE tournament = "lugano , switzerland wta virginia slims" AND opponent_in_the_final = "bonnie gadusek"###context:CREATE TABLE table_name_68 (outcome VARCHA... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.