Unnamed: 0
int64 0
60k
| text
stringlengths 109
1.06k
|
---|---|
58,300 |
<question>: What is the score of the copa libertadores group 3 competition round on 2 February 1994? <context>: CREATE TABLE table_name_11 (score VARCHAR, competition_round VARCHAR, date VARCHAR) <answer>: SELECT score FROM table_name_11 WHERE competition_round = "copa libertadores group 3" AND date = "2 february 1994"
|
58,301 |
<question>: What is the score of the copa libertadores group 4 competition round on 14 March 1972 with universitario as the away team? <context>: CREATE TABLE table_name_78 (score VARCHAR, date VARCHAR, competition_round VARCHAR, away_team VARCHAR) <answer>: SELECT score FROM table_name_78 WHERE competition_round = "copa libertadores group 4" AND away_team = "universitario" AND date = "14 march 1972"
|
58,302 |
<question>: What is the venue of season 1983, which had alianza lima as the home team? <context>: CREATE TABLE table_name_7 (venue VARCHAR, home_team VARCHAR, season VARCHAR) <answer>: SELECT venue FROM table_name_7 WHERE home_team = "alianza lima" AND season = 1983
|
58,303 |
<question>: What is the score of the match on 3 March 1988 at the estadio nacional? <context>: CREATE TABLE table_name_73 (score VARCHAR, venue VARCHAR, date VARCHAR) <answer>: SELECT score FROM table_name_73 WHERE venue = "estadio nacional" AND date = "3 march 1988"
|
58,304 |
<question>: What were the Points on December 13? <context>: CREATE TABLE table_name_63 (points INTEGER, date VARCHAR) <answer>: SELECT MAX(points) FROM table_name_63 WHERE date = "december 13"
|
58,305 |
<question>: What is the year established of North Jersey Phoenix? <context>: CREATE TABLE table_name_74 (established VARCHAR, institution VARCHAR) <answer>: SELECT established FROM table_name_74 WHERE institution = "north jersey phoenix"
|
58,306 |
<question>: What is the nickname of the school established in 2009? <context>: CREATE TABLE table_name_8 (nickname VARCHAR, established VARCHAR) <answer>: SELECT nickname FROM table_name_8 WHERE established = 2009
|
58,307 |
<question>: What is the location of the school established in 2013? <context>: CREATE TABLE table_name_27 (location VARCHAR, established VARCHAR) <answer>: SELECT location FROM table_name_27 WHERE established = 2013
|
58,308 |
<question>: What is the nickname of Columbia University? <context>: CREATE TABLE table_name_62 (nickname VARCHAR, institution VARCHAR) <answer>: SELECT nickname FROM table_name_62 WHERE institution = "columbia university"
|
58,309 |
<question>: The match against Valentijn Overeem had what method? <context>: CREATE TABLE table_name_11 (method VARCHAR, opponent VARCHAR) <answer>: SELECT method FROM table_name_11 WHERE opponent = "valentijn overeem"
|
58,310 |
<question>: Where was the match held when the result was win, and tko as the method? <context>: CREATE TABLE table_name_32 (location VARCHAR, res VARCHAR, method VARCHAR) <answer>: SELECT location FROM table_name_32 WHERE res = "win" AND method = "tko"
|
58,311 |
<question>: What round did the match go to when the event was Bars - Moscow vs St. Petersburg? <context>: CREATE TABLE table_name_92 (round VARCHAR, event VARCHAR) <answer>: SELECT round FROM table_name_92 WHERE event = "bars - moscow vs st. petersburg"
|
58,312 |
<question>: With a method of tko (kick) what is the record of the match? <context>: CREATE TABLE table_name_73 (record VARCHAR, method VARCHAR) <answer>: SELECT record FROM table_name_73 WHERE method = "tko (kick)"
|
58,313 |
<question>: What round did the match go to when tko (cut) was the method? <context>: CREATE TABLE table_name_24 (round VARCHAR, method VARCHAR) <answer>: SELECT round FROM table_name_24 WHERE method = "tko (cut)"
|
58,314 |
<question>: what is the place when the score is 68-72-77-74=291? <context>: CREATE TABLE table_name_81 (place VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_81 WHERE score = 68 - 72 - 77 - 74 = 291
|
58,315 |
<question>: how many times is the country united states and the score 72-71-73-73=289? <context>: CREATE TABLE table_name_93 (to_par VARCHAR, country VARCHAR, score VARCHAR) <answer>: SELECT COUNT(to_par) FROM table_name_93 WHERE country = "united states" AND score = 72 - 71 - 73 - 73 = 289
|
58,316 |
<question>: Who is the player when the to par is more than 11 and the score is 71-71-71-79=292? <context>: CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_32 WHERE to_par > 11 AND score = 71 - 71 - 71 - 79 = 292
|
58,317 |
<question>: what is the country when the player is bill nary? <context>: CREATE TABLE table_name_7 (country VARCHAR, player VARCHAR) <answer>: SELECT country FROM table_name_7 WHERE player = "bill nary"
|
58,318 |
<question>: what is the score when the country is united states and the player is george fazio? <context>: CREATE TABLE table_name_4 (score VARCHAR, country VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_4 WHERE country = "united states" AND player = "george fazio"
|
58,319 |
<question>: WHAT IS THE DEATH WHEN BIRTH DATE IS 2 AUGUST 1424? <context>: CREATE TABLE table_name_96 (death VARCHAR, birth VARCHAR) <answer>: SELECT death FROM table_name_96 WHERE birth = "2 august 1424"
|
58,320 |
<question>: WHAT IS THE Ceased to be Duke of Girona THAT HAS PETER IV? <context>: CREATE TABLE table_name_91 (ceased_to_be_duke_of_girona VARCHAR, heir_of VARCHAR) <answer>: SELECT ceased_to_be_duke_of_girona FROM table_name_91 WHERE heir_of = "peter iv"
|
58,321 |
<question>: WHAT IS THE BIRTH DATE THAT HAS Ceased to be Duke of Girona OF 21 NOVEMBER 1582? <context>: CREATE TABLE table_name_22 (birth VARCHAR, ceased_to_be_duke_of_girona VARCHAR) <answer>: SELECT birth FROM table_name_22 WHERE ceased_to_be_duke_of_girona = "21 november 1582"
|
58,322 |
<question>: WHAT IS THE BIRTH DATE WITH A DEATH OF OCTOBER 1389? <context>: CREATE TABLE table_name_2 (birth VARCHAR, death VARCHAR) <answer>: SELECT birth FROM table_name_2 WHERE death = "october 1389"
|
58,323 |
<question>: What is the total number of Laps, when Ride is Aleix Espargaro? <context>: CREATE TABLE table_name_54 (laps VARCHAR, rider VARCHAR) <answer>: SELECT COUNT(laps) FROM table_name_54 WHERE rider = "aleix espargaro"
|
58,324 |
<question>: What is the County of Howard Street Tunnel? <context>: CREATE TABLE table_name_72 (county VARCHAR, name VARCHAR) <answer>: SELECT county FROM table_name_72 WHERE name = "howard street tunnel"
|
58,325 |
<question>: What is the Location of the Bridge Built in 1869? <context>: CREATE TABLE table_name_58 (location VARCHAR, built VARCHAR) <answer>: SELECT location FROM table_name_58 WHERE built = "1869"
|
58,326 |
<question>: What is the date Listed of the B & O Bridge in Washington? <context>: CREATE TABLE table_name_77 (listed VARCHAR, county VARCHAR, name VARCHAR) <answer>: SELECT listed FROM table_name_77 WHERE county = "washington" AND name = "b & o bridge"
|
58,327 |
<question>: What is the date Listed of the Bridge Built CA.1876? <context>: CREATE TABLE table_name_46 (listed VARCHAR, built VARCHAR) <answer>: SELECT listed FROM table_name_46 WHERE built = "ca.1876"
|
58,328 |
<question>: What is the date Listed of the Bridge Built in 1864? <context>: CREATE TABLE table_name_79 (listed VARCHAR, built VARCHAR) <answer>: SELECT listed FROM table_name_79 WHERE built = "1864"
|
58,329 |
<question>: What is the total number of Draw(s), when Televotes is greater than 1761, when Song is "Ils Sont LΓ ", and when Place is less than 2? <context>: CREATE TABLE table_name_9 (draw VARCHAR, place VARCHAR, televotes VARCHAR, song VARCHAR) <answer>: SELECT COUNT(draw) FROM table_name_9 WHERE televotes > 1761 AND song = "ils sont lΓ " AND place < 2
|
58,330 |
<question>: What is the lowest Place, when Televotes is 15424? <context>: CREATE TABLE table_name_50 (place INTEGER, televotes VARCHAR) <answer>: SELECT MIN(place) FROM table_name_50 WHERE televotes = 15424
|
58,331 |
<question>: What is the average Place, when Song is "Dis Oui"? <context>: CREATE TABLE table_name_14 (place INTEGER, song VARCHAR) <answer>: SELECT AVG(place) FROM table_name_14 WHERE song = "dis oui"
|
58,332 |
<question>: What club received a DF player for free? <context>: CREATE TABLE table_name_52 (to_club VARCHAR, transfer_fee VARCHAR, pos VARCHAR) <answer>: SELECT to_club FROM table_name_52 WHERE transfer_fee = "free" AND pos = "df"
|
58,333 |
<question>: Which player was transferred to Reggina? <context>: CREATE TABLE table_name_99 (player VARCHAR, to_club VARCHAR) <answer>: SELECT player FROM table_name_99 WHERE to_club = "reggina"
|
58,334 |
<question>: What is the exit date of the player transferred to Reggina for free? <context>: CREATE TABLE table_name_19 (exit_date VARCHAR, transfer_fee VARCHAR, to_club VARCHAR) <answer>: SELECT exit_date FROM table_name_19 WHERE transfer_fee = "free" AND to_club = "reggina"
|
58,335 |
<question>: What is the lowest position of pilot mario kiessling from Germany? <context>: CREATE TABLE table_name_23 (position INTEGER, country VARCHAR, pilot VARCHAR) <answer>: SELECT MIN(position) FROM table_name_23 WHERE country = "germany" AND pilot = "mario kiessling"
|
58,336 |
<question>: What is the average position of pilot petr krejcirik, who has less than 11 points? <context>: CREATE TABLE table_name_31 (position INTEGER, points VARCHAR, pilot VARCHAR) <answer>: SELECT AVG(position) FROM table_name_31 WHERE points < 11 AND pilot = "petr krejcirik"
|
58,337 |
<question>: What is the career SR with a 1r in 1985? <context>: CREATE TABLE table_name_43 (career_sr VARCHAR) <answer>: SELECT career_sr FROM table_name_43 WHERE 1985 = "1r"
|
58,338 |
<question>: What tournament has a 3r in 1983? <context>: CREATE TABLE table_name_81 (tournament VARCHAR) <answer>: SELECT tournament FROM table_name_81 WHERE 1983 = "3r"
|
58,339 |
<question>: What is the 1980 value with a 1r in 1984 and a 1r in 1981? <context>: CREATE TABLE table_name_48 (Id VARCHAR) <answer>: SELECT 1980 FROM table_name_48 WHERE 1984 = "1r" AND 1981 = "1r"
|
58,340 |
<question>: What is the finish of Australia? <context>: CREATE TABLE table_name_52 (finish VARCHAR, country VARCHAR) <answer>: SELECT finish FROM table_name_52 WHERE country = "australia"
|
58,341 |
<question>: What is the total with a +4 to par? <context>: CREATE TABLE table_name_63 (total VARCHAR, to_par VARCHAR) <answer>: SELECT total FROM table_name_63 WHERE to_par = "+4"
|
58,342 |
<question>: What country has a +3 to par? <context>: CREATE TABLE table_name_57 (country VARCHAR, to_par VARCHAR) <answer>: SELECT country FROM table_name_57 WHERE to_par = "+3"
|
58,343 |
<question>: What was the first year that the artist of every little thing ranked lower than 10? <context>: CREATE TABLE table_name_56 (year INTEGER, artist VARCHAR, rank VARCHAR) <answer>: SELECT MIN(year) FROM table_name_56 WHERE artist = "every little thing" AND rank < 10
|
58,344 |
<question>: Which Championship was louise suggs the runner-up by 3 strokes? <context>: CREATE TABLE table_name_8 (championship VARCHAR, runner_s__up VARCHAR, margin VARCHAR) <answer>: SELECT championship FROM table_name_8 WHERE runner_s__up = "louise suggs" AND margin = "3 strokes"
|
58,345 |
<question>: When was the most recent year that kathy whitworth was the runner-up? <context>: CREATE TABLE table_name_49 (year INTEGER, runner_s__up VARCHAR) <answer>: SELECT MAX(year) FROM table_name_49 WHERE runner_s__up = "kathy whitworth"
|
58,346 |
<question>: What was the winning score in the u.s. women's open that was won by 5 strokes? <context>: CREATE TABLE table_name_75 (winning_score VARCHAR, championship VARCHAR, margin VARCHAR) <answer>: SELECT winning_score FROM table_name_75 WHERE championship = "u.s. women's open" AND margin = "5 strokes"
|
58,347 |
<question>: What is Record, when High Rebounds is "Marcus Camby (15)", and when High Assists is "Baron Davis (7)"? <context>: CREATE TABLE table_name_86 (record VARCHAR, high_rebounds VARCHAR, high_assists VARCHAR) <answer>: SELECT record FROM table_name_86 WHERE high_rebounds = "marcus camby (15)" AND high_assists = "baron davis (7)"
|
58,348 |
<question>: What is Game, when Team is "Philadelphia" <context>: CREATE TABLE table_name_48 (game VARCHAR, team VARCHAR) <answer>: SELECT game FROM table_name_48 WHERE team = "philadelphia"
|
58,349 |
<question>: What is High Assists, when Team is "@ Milwaukee"? <context>: CREATE TABLE table_name_83 (high_assists VARCHAR, team VARCHAR) <answer>: SELECT high_assists FROM table_name_83 WHERE team = "@ milwaukee"
|
58,350 |
<question>: What was the tie number for the round against visiting opponent Chelsea? <context>: CREATE TABLE table_name_89 (tie_no INTEGER, away_team VARCHAR) <answer>: SELECT SUM(tie_no) FROM table_name_89 WHERE away_team = "chelsea"
|
58,351 |
<question>: What was the tie number for the round against visiting opponent Newcastle United? <context>: CREATE TABLE table_name_53 (tie_no VARCHAR, away_team VARCHAR) <answer>: SELECT tie_no FROM table_name_53 WHERE away_team = "newcastle united"
|
58,352 |
<question>: What date was Millwall the home team? <context>: CREATE TABLE table_name_29 (date VARCHAR, home_team VARCHAR) <answer>: SELECT date FROM table_name_29 WHERE home_team = "millwall"
|
58,353 |
<question>: What date was Leeds United the away team? <context>: CREATE TABLE table_name_36 (date VARCHAR, away_team VARCHAR) <answer>: SELECT date FROM table_name_36 WHERE away_team = "leeds united"
|
58,354 |
<question>: What was the score when Bolton Wanderers were the away team? <context>: CREATE TABLE table_name_38 (score VARCHAR, away_team VARCHAR) <answer>: SELECT score FROM table_name_38 WHERE away_team = "bolton wanderers"
|
58,355 |
<question>: What is the total of events when the tournament was U.S. Open and the Top-25 was less than 1? <context>: CREATE TABLE table_name_47 (events INTEGER, tournament VARCHAR, top_25 VARCHAR) <answer>: SELECT SUM(events) FROM table_name_47 WHERE tournament = "u.s. open" AND top_25 < 1
|
58,356 |
<question>: How many total wins have 3 as the Top-35 and less than 5 cuts made? <context>: CREATE TABLE table_name_40 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR) <answer>: SELECT SUM(wins) FROM table_name_40 WHERE top_25 = 3 AND cuts_made < 5
|
58,357 |
<question>: What is the minimum Top-10 when the Open Championship was the tournament and the wins greater than 0? <context>: CREATE TABLE table_name_32 (top_10 INTEGER, tournament VARCHAR, wins VARCHAR) <answer>: SELECT MIN(top_10) FROM table_name_32 WHERE tournament = "the open championship" AND wins > 0
|
58,358 |
<question>: With wins greater than 0 what is the minimum Top-10? <context>: CREATE TABLE table_name_43 (top_10 INTEGER, wins INTEGER) <answer>: SELECT MIN(top_10) FROM table_name_43 WHERE wins > 0
|
58,359 |
<question>: What is the total Top-25 when the events were less than 0? <context>: CREATE TABLE table_name_23 (top_25 INTEGER, events INTEGER) <answer>: SELECT SUM(top_25) FROM table_name_23 WHERE events < 0
|
58,360 |
<question>: Who is the player from the United States with a score of 71-75=146? <context>: CREATE TABLE table_name_24 (player VARCHAR, country VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_24 WHERE country = "united states" AND score = 71 - 75 = 146
|
58,361 |
<question>: Who is the player with a 77-68=145 score? <context>: CREATE TABLE table_name_56 (player VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_56 WHERE score = 77 - 68 = 145
|
58,362 |
<question>: What is the country with a 76-68=144 score? <context>: CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR) <answer>: SELECT country FROM table_name_21 WHERE score = 76 - 68 = 144
|
58,363 |
<question>: Who is the player in t8 place with a 75-71=146 score? <context>: CREATE TABLE table_name_68 (player VARCHAR, place VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_68 WHERE place = "t8" AND score = 75 - 71 = 146
|
58,364 |
<question>: What is the to par of the player from the United States with a place of t1 and a 76-68=144 score? <context>: CREATE TABLE table_name_50 (to_par VARCHAR, country VARCHAR, place VARCHAR, score VARCHAR) <answer>: SELECT to_par FROM table_name_50 WHERE country = "united states" AND place = "t1" AND score = 76 - 68 = 144
|
58,365 |
<question>: What is the country of player lee trevino, who has a to par of +2? <context>: CREATE TABLE table_name_32 (country VARCHAR, to_par VARCHAR, player VARCHAR) <answer>: SELECT country FROM table_name_32 WHERE to_par = "+2" AND player = "lee trevino"
|
58,366 |
<question>: Who was the pilot at lake dumbleyung? <context>: CREATE TABLE table_name_43 (pilot_s_ VARCHAR, location VARCHAR) <answer>: SELECT pilot_s_ FROM table_name_43 WHERE location = "lake dumbleyung"
|
58,367 |
<question>: How fast was the speed during the record set at Coniston Water that was piloted by Malcolm Campbell? <context>: CREATE TABLE table_name_87 (speed VARCHAR, location VARCHAR, pilot_s_ VARCHAR) <answer>: SELECT speed FROM table_name_87 WHERE location = "coniston water" AND pilot_s_ = "malcolm campbell"
|
58,368 |
<question>: Which Home has an Away of 1β1? <context>: CREATE TABLE table_name_36 (home VARCHAR, away VARCHAR) <answer>: SELECT home FROM table_name_36 WHERE away = "1β1"
|
58,369 |
<question>: Which Away has a Season of 2007β08? <context>: CREATE TABLE table_name_99 (away VARCHAR, season VARCHAR) <answer>: SELECT away FROM table_name_99 WHERE season = "2007β08"
|
58,370 |
<question>: Which Season has an Away of 1β2? <context>: CREATE TABLE table_name_94 (season VARCHAR, away VARCHAR) <answer>: SELECT season FROM table_name_94 WHERE away = "1β2"
|
58,371 |
<question>: Which Away has a Home of 1β0? <context>: CREATE TABLE table_name_41 (away VARCHAR, home VARCHAR) <answer>: SELECT away FROM table_name_41 WHERE home = "1β0"
|
58,372 |
<question>: Which Season has a League of bezirksliga? <context>: CREATE TABLE table_name_77 (season VARCHAR, league VARCHAR) <answer>: SELECT season FROM table_name_77 WHERE league = "bezirksliga"
|
58,373 |
<question>: Which Season has a Home of 0β1? <context>: CREATE TABLE table_name_24 (season VARCHAR, home VARCHAR) <answer>: SELECT season FROM table_name_24 WHERE home = "0β1"
|
58,374 |
<question>: What was the Venue in 2003? <context>: CREATE TABLE table_name_16 (venue VARCHAR, date VARCHAR) <answer>: SELECT venue FROM table_name_16 WHERE date = "2003"
|
58,375 |
<question>: What Competition had a Score of 3β3? <context>: CREATE TABLE table_name_27 (competition VARCHAR, score VARCHAR) <answer>: SELECT competition FROM table_name_27 WHERE score = "3β3"
|
58,376 |
<question>: Name the lowest Round with Opponent of rolando delgado? <context>: CREATE TABLE table_name_18 (round INTEGER, opponent VARCHAR) <answer>: SELECT MIN(round) FROM table_name_18 WHERE opponent = "rolando delgado"
|
58,377 |
<question>: Name the total number of Round in liverpool , england? <context>: CREATE TABLE table_name_73 (round VARCHAR, location VARCHAR) <answer>: SELECT COUNT(round) FROM table_name_73 WHERE location = "liverpool , england"
|
58,378 |
<question>: Which Event is in chandigarh , india? <context>: CREATE TABLE table_name_62 (event VARCHAR, location VARCHAR) <answer>: SELECT event FROM table_name_62 WHERE location = "chandigarh , india"
|
58,379 |
<question>: Who is the player with a year later than 2007 and the college/high school/club of Arizona? <context>: CREATE TABLE table_name_58 (player VARCHAR, year VARCHAR, college_high_school_club VARCHAR) <answer>: SELECT player FROM table_name_58 WHERE year > 2007 AND college_high_school_club = "arizona"
|
58,380 |
<question>: What is the earliest year of c position player gary bergen? <context>: CREATE TABLE table_name_89 (year INTEGER, position VARCHAR, player VARCHAR) <answer>: SELECT MIN(year) FROM table_name_89 WHERE position = "c" AND player = "gary bergen"
|
58,381 |
<question>: What round is sf/sg player sly williams from a year after 1965 from? <context>: CREATE TABLE table_name_66 (round VARCHAR, player VARCHAR, position VARCHAR, year VARCHAR) <answer>: SELECT round FROM table_name_66 WHERE position = "sf/sg" AND year > 1965 AND player = "sly williams"
|
58,382 |
<question>: What is the round of the pf position player from 1996 and the college/high school/club mississippi state? <context>: CREATE TABLE table_name_37 (round VARCHAR, college_high_school_club VARCHAR, position VARCHAR, year VARCHAR) <answer>: SELECT round FROM table_name_37 WHERE position = "pf" AND year = 1996 AND college_high_school_club = "mississippi state"
|
58,383 |
<question>: Which Score has a Visitor of montreal canadiens, and Points of 5? <context>: CREATE TABLE table_name_93 (score VARCHAR, visitor VARCHAR, points VARCHAR) <answer>: SELECT score FROM table_name_93 WHERE visitor = "montreal canadiens" AND points = 5
|
58,384 |
<question>: Which Date has a Home of montreal canadiens, and Points larger than 9, and a Decision of price? <context>: CREATE TABLE table_name_99 (date VARCHAR, decision VARCHAR, home VARCHAR, points VARCHAR) <answer>: SELECT date FROM table_name_99 WHERE home = "montreal canadiens" AND points > 9 AND decision = "price"
|
58,385 |
<question>: What is the score for the home team Notts County? <context>: CREATE TABLE table_name_97 (score VARCHAR, home_team VARCHAR) <answer>: SELECT score FROM table_name_97 WHERE home_team = "notts county"
|
58,386 |
<question>: Which Episode has a Viewers (millions) larger than 11.26, a Weekly Rank of #8, and a Share of 12? <context>: CREATE TABLE table_name_62 (episode VARCHAR, share VARCHAR, viewers__millions_ VARCHAR, weekly_rank VARCHAR) <answer>: SELECT episode FROM table_name_62 WHERE viewers__millions_ > 11.26 AND weekly_rank = "#8" AND share = 12
|
58,387 |
<question>: What is the 2012 with a mini in 2009? <context>: CREATE TABLE table_name_3 (Id VARCHAR) <answer>: SELECT 2012 FROM table_name_3 WHERE 2009 = "mini"
|
58,388 |
<question>: What is the 2013 with virgin in 2009? <context>: CREATE TABLE table_name_5 (Id VARCHAR) <answer>: SELECT 2013 FROM table_name_5 WHERE 2009 = "virgin"
|
58,389 |
<question>: What is the highest rank of the 2009 xbox? <context>: CREATE TABLE table_name_95 (rank INTEGER) <answer>: SELECT MAX(rank) FROM table_name_95 WHERE 2009 = "xbox"
|
58,390 |
<question>: What is the 2010 with a rank higher than 15 and a 2011 maserati? <context>: CREATE TABLE table_name_72 (rank VARCHAR) <answer>: SELECT 2010 FROM table_name_72 WHERE rank > 15 AND 2011 = "maserati"
|
58,391 |
<question>: What is the record with 23 points and a visitor of Chicago? <context>: CREATE TABLE table_name_70 (record VARCHAR, points VARCHAR, visitor VARCHAR) <answer>: SELECT record FROM table_name_70 WHERE points = 23 AND visitor = "chicago"
|
58,392 |
<question>: What venue had a tie? <context>: CREATE TABLE table_name_84 (tied VARCHAR) <answer>: SELECT tied FROM table_name_84 WHERE "venue" = "venue"
|
58,393 |
<question>: What was the score in Spain T3? <context>: CREATE TABLE table_name_59 (score VARCHAR, place VARCHAR, country VARCHAR) <answer>: SELECT score FROM table_name_59 WHERE place = "t3" AND country = "spain"
|
58,394 |
<question>: What score did Lee Trevino get in T1? <context>: CREATE TABLE table_name_53 (score VARCHAR, place VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_53 WHERE place = "t1" AND player = "lee trevino"
|
58,395 |
<question>: Which player had the score 71-72=143 in Spain? <context>: CREATE TABLE table_name_45 (player VARCHAR, country VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_45 WHERE score = 71 - 72 = 143 AND country = "spain"
|
58,396 |
<question>: When curtis strange had a to par +1, what was his score? <context>: CREATE TABLE table_name_42 (score VARCHAR, to_par VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_42 WHERE to_par = "+1" AND player = "curtis strange"
|
58,397 |
<question>: Who is the player for Zimbabwe? <context>: CREATE TABLE table_name_45 (player VARCHAR, country VARCHAR) <answer>: SELECT player FROM table_name_45 WHERE country = "zimbabwe"
|
58,398 |
<question>: What country is Greg Norman from? <context>: CREATE TABLE table_name_28 (country VARCHAR, player VARCHAR) <answer>: SELECT country FROM table_name_28 WHERE player = "greg norman"
|
58,399 |
<question>: What country is Bob Tway from? <context>: CREATE TABLE table_name_93 (country VARCHAR, player VARCHAR) <answer>: SELECT country FROM table_name_93 WHERE player = "bob tway"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.