text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
For the matches with home captain Graham Gooch played on the dates 3,4,5,6,7 June 1993, what was the result?
### CONTEXT
CREATE TABLE table_name_24 (result VARCHAR, home_captain VARCHAR, date VARCHAR)
### ANSWER
SELECT result FROM table_name_24 WHERE home_captain = "graham gooch" AND date = "3,4,5,6,7 june 1993"</s> | {
"answer": "SELECT result FROM table_name_24 WHERE home_captain = \"graham gooch\" AND date = \"3,4,5,6,7 june 1993\"",
"context": "CREATE TABLE table_name_24 (result VARCHAR, home_captain VARCHAR, date VARCHAR)",
"question": "For the matches with home captain Graham Gooch played on the dates 3,4,5,6,7 June 1993, what was the result?"
} |
### QUESTION
How many people at Arden Street Oval?
### CONTEXT
CREATE TABLE table_name_21 (crowd VARCHAR, venue VARCHAR)
### ANSWER
SELECT COUNT(crowd) FROM table_name_21 WHERE venue = "arden street oval"</s> | {
"answer": "SELECT COUNT(crowd) FROM table_name_21 WHERE venue = \"arden street oval\"",
"context": "CREATE TABLE table_name_21 (crowd VARCHAR, venue VARCHAR)",
"question": "How many people at Arden Street Oval?"
} |
### QUESTION
Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2
### CONTEXT
CREATE TABLE table_name_58 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR)
### ANSWER
SELECT SUM(place) FROM table_name_58 WHERE ties > 0 AND points = "7 qc" AND losses > 2</s> | {
"answer": "SELECT SUM(place) FROM table_name_58 WHERE ties > 0 AND points = \"7 qc\" AND losses > 2",
"context": "CREATE TABLE table_name_58 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR)",
"question": "Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2"
} |
### QUESTION
Which Name has a Bullett of 10.57 (.416) and a Base of 14.96 (.589)?
### CONTEXT
CREATE TABLE table_name_86 (name VARCHAR, bullet VARCHAR, base VARCHAR)
### ANSWER
SELECT name FROM table_name_86 WHERE bullet = "10.57 (.416)" AND base = "14.96 (.589)"</s> | {
"answer": "SELECT name FROM table_name_86 WHERE bullet = \"10.57 (.416)\" AND base = \"14.96 (.589)\"",
"context": "CREATE TABLE table_name_86 (name VARCHAR, bullet VARCHAR, base VARCHAR)",
"question": "Which Name has a Bullett of 10.57 (.416) and a Base of 14.96 (.589)?"
} |
### QUESTION
What was the final score for Aguilar when he played Hans Podlipnik on clay and was runner-up?
### CONTEXT
CREATE TABLE table_name_47 (score VARCHAR, outcome VARCHAR, surface VARCHAR, opponent VARCHAR)
### ANSWER
SELECT score FROM table_name_47 WHERE surface = "clay" AND opponent = "hans podlipnik" AND outcome = "runner-up"</s> | {
"answer": "SELECT score FROM table_name_47 WHERE surface = \"clay\" AND opponent = \"hans podlipnik\" AND outcome = \"runner-up\"",
"context": "CREATE TABLE table_name_47 (score VARCHAR, outcome VARCHAR, surface VARCHAR, opponent VARCHAR)",
"question": "What was the final score for Aguilar when he played Hans Podlipnik on clay and was runner-up?"
} |
### QUESTION
Tell me the call sign for frequency of 0 97.3 fm
### CONTEXT
CREATE TABLE table_name_67 (call_sign VARCHAR, frequency VARCHAR)
### ANSWER
SELECT call_sign FROM table_name_67 WHERE frequency = "0 97.3 fm"</s> | {
"answer": "SELECT call_sign FROM table_name_67 WHERE frequency = \"0 97.3 fm\"",
"context": "CREATE TABLE table_name_67 (call_sign VARCHAR, frequency VARCHAR)",
"question": "Tell me the call sign for frequency of 0 97.3 fm"
} |
### QUESTION
Who is the no. 4 team that has the no. 5 player Susana Telmo?
### CONTEXT
CREATE TABLE table_name_46 (no4 VARCHAR, no5 VARCHAR)
### ANSWER
SELECT no4 FROM table_name_46 WHERE no5 = "susana telmo"</s> | {
"answer": "SELECT no4 FROM table_name_46 WHERE no5 = \"susana telmo\"",
"context": "CREATE TABLE table_name_46 (no4 VARCHAR, no5 VARCHAR)",
"question": "Who is the no. 4 team that has the no. 5 player Susana Telmo?"
} |
### QUESTION
What is the average played value in Belgrade with attendance greater than 26,222?
### CONTEXT
CREATE TABLE table_name_83 (played INTEGER, city VARCHAR, average_attendance VARCHAR)
### ANSWER
SELECT AVG(played) FROM table_name_83 WHERE city = "belgrade" AND average_attendance > 26 OFFSET 222</s> | {
"answer": "SELECT AVG(played) FROM table_name_83 WHERE city = \"belgrade\" AND average_attendance > 26 OFFSET 222",
"context": "CREATE TABLE table_name_83 (played INTEGER, city VARCHAR, average_attendance VARCHAR)",
"question": "What is the average played value in Belgrade with attendance greater than 26,222?"
} |
### QUESTION
What was the nationality of five-eighth player Darren Lockyer?
### CONTEXT
CREATE TABLE table_name_96 (nationality VARCHAR, player VARCHAR, position VARCHAR)
### ANSWER
SELECT nationality FROM table_name_96 WHERE player = "darren lockyer" AND position = "five-eighth"</s> | {
"answer": "SELECT nationality FROM table_name_96 WHERE player = \"darren lockyer\" AND position = \"five-eighth\"",
"context": "CREATE TABLE table_name_96 (nationality VARCHAR, player VARCHAR, position VARCHAR)",
"question": "What was the nationality of five-eighth player Darren Lockyer?"
} |
### QUESTION
Tell me the total number of years for lady cecily waynflete and opera house, kennedy center
### CONTEXT
CREATE TABLE table_name_51 (year VARCHAR, role VARCHAR, theatre VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_51 WHERE role = "lady cecily waynflete" AND theatre = "opera house, kennedy center"</s> | {
"answer": "SELECT COUNT(year) FROM table_name_51 WHERE role = \"lady cecily waynflete\" AND theatre = \"opera house, kennedy center\"",
"context": "CREATE TABLE table_name_51 (year VARCHAR, role VARCHAR, theatre VARCHAR)",
"question": "Tell me the total number of years for lady cecily waynflete and opera house, kennedy center"
} |
### QUESTION
When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred?
### CONTEXT
CREATE TABLE table_name_65 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR)
### ANSWER
SELECT MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = "laurent-marie-joseph imbert / st. imbert" AND canonised > 1984</s> | {
"answer": "SELECT MAX(martyred) FROM table_name_65 WHERE beatified > 1909 AND name = \"laurent-marie-joseph imbert / st. imbert\" AND canonised > 1984",
"context": "CREATE TABLE table_name_65 (martyred INTEGER, canonised VARCHAR, beatified VARCHAR, name VARCHAR)",
"question": "When was Laurent-Marie-Joseph Imbert / St. Imbert, who was beatified after 1909 and canonised after 1984, martyred?"
} |
### QUESTION
Who directed the film that Avie Luthra received an award for?
### CONTEXT
CREATE TABLE table_name_63 (director_s_ VARCHAR, recipient VARCHAR)
### ANSWER
SELECT director_s_ FROM table_name_63 WHERE recipient = "avie luthra"</s> | {
"answer": "SELECT director_s_ FROM table_name_63 WHERE recipient = \"avie luthra\"",
"context": "CREATE TABLE table_name_63 (director_s_ VARCHAR, recipient VARCHAR)",
"question": "Who directed the film that Avie Luthra received an award for?"
} |
### QUESTION
What is the date construction is completed in Jo Daviess county?
### CONTEXT
CREATE TABLE table_name_70 (construction_completed VARCHAR, county VARCHAR)
### ANSWER
SELECT construction_completed FROM table_name_70 WHERE county = "jo daviess"</s> | {
"answer": "SELECT construction_completed FROM table_name_70 WHERE county = \"jo daviess\"",
"context": "CREATE TABLE table_name_70 (construction_completed VARCHAR, county VARCHAR)",
"question": "What is the date construction is completed in Jo Daviess county?"
} |
### QUESTION
Role of narrator, and a Radio Station/Production Company of bbc audiobooks, and a Release/Air Date of 13 november 2008 is what sum of the year?
### CONTEXT
CREATE TABLE table_name_96 (year INTEGER, release_air_date VARCHAR, role VARCHAR, radio_station_production_company VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_96 WHERE role = "narrator" AND radio_station_production_company = "bbc audiobooks" AND release_air_date = "13 november 2008"</s> | {
"answer": "SELECT SUM(year) FROM table_name_96 WHERE role = \"narrator\" AND radio_station_production_company = \"bbc audiobooks\" AND release_air_date = \"13 november 2008\"",
"context": "CREATE TABLE table_name_96 (year INTEGER, release_air_date VARCHAR, role VARCHAR, radio_station_production_company VARCHAR)",
"question": "Role of narrator, and a Radio Station/Production Company of bbc audiobooks, and a Release/Air Date of 13 november 2008 is what sum of the year?"
} |
### QUESTION
Who was the winning driver driving the winning car March - Honda 86j, with the winning team Team Nova?
### CONTEXT
CREATE TABLE table_name_84 (winning_driver VARCHAR, winning_car VARCHAR, winning_team VARCHAR)
### ANSWER
SELECT winning_driver FROM table_name_84 WHERE winning_car = "march - honda 86j" AND winning_team = "team nova"</s> | {
"answer": "SELECT winning_driver FROM table_name_84 WHERE winning_car = \"march - honda 86j\" AND winning_team = \"team nova\"",
"context": "CREATE TABLE table_name_84 (winning_driver VARCHAR, winning_car VARCHAR, winning_team VARCHAR)",
"question": "Who was the winning driver driving the winning car March - Honda 86j, with the winning team Team Nova?"
} |
### QUESTION
Radio Station/Production Company that has a Role of interviewee & monologues is what radio station?
### CONTEXT
CREATE TABLE table_name_73 (radio_station_production_company VARCHAR, role VARCHAR)
### ANSWER
SELECT radio_station_production_company FROM table_name_73 WHERE role = "interviewee & monologues"</s> | {
"answer": "SELECT radio_station_production_company FROM table_name_73 WHERE role = \"interviewee & monologues\"",
"context": "CREATE TABLE table_name_73 (radio_station_production_company VARCHAR, role VARCHAR)",
"question": "Radio Station/Production Company that has a Role of interviewee & monologues is what radio station?"
} |
### QUESTION
What is the smallest crowd with fitzroy as the home team?
### CONTEXT
CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)
### ANSWER
SELECT MIN(crowd) FROM table_name_8 WHERE away_team = "fitzroy"</s> | {
"answer": "SELECT MIN(crowd) FROM table_name_8 WHERE away_team = \"fitzroy\"",
"context": "CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)",
"question": "What is the smallest crowd with fitzroy as the home team?"
} |
### QUESTION
What school did the linebacker who was drafted after round 8 come from?
### CONTEXT
CREATE TABLE table_name_36 (school_club_team VARCHAR, round VARCHAR, position VARCHAR)
### ANSWER
SELECT school_club_team FROM table_name_36 WHERE round > 8 AND position = "linebacker"</s> | {
"answer": "SELECT school_club_team FROM table_name_36 WHERE round > 8 AND position = \"linebacker\"",
"context": "CREATE TABLE table_name_36 (school_club_team VARCHAR, round VARCHAR, position VARCHAR)",
"question": "What school did the linebacker who was drafted after round 8 come from?"
} |
### QUESTION
What pens have a draw of 0 when the player is sione mafi pahulu?
### CONTEXT
CREATE TABLE table_name_17 (pens VARCHAR, draw VARCHAR, player VARCHAR)
### ANSWER
SELECT pens FROM table_name_17 WHERE draw = "0" AND player = "sione mafi pahulu"</s> | {
"answer": "SELECT pens FROM table_name_17 WHERE draw = \"0\" AND player = \"sione mafi pahulu\"",
"context": "CREATE TABLE table_name_17 (pens VARCHAR, draw VARCHAR, player VARCHAR)",
"question": "What pens have a draw of 0 when the player is sione mafi pahulu?"
} |
### QUESTION
Name the least attendance for opponent of new orleans saints and week more than 2
### CONTEXT
CREATE TABLE table_name_5 (attendance INTEGER, week VARCHAR, opponent VARCHAR)
### ANSWER
SELECT MIN(attendance) FROM table_name_5 WHERE week > 2 AND opponent = "new orleans saints"</s> | {
"answer": "SELECT MIN(attendance) FROM table_name_5 WHERE week > 2 AND opponent = \"new orleans saints\"",
"context": "CREATE TABLE table_name_5 (attendance INTEGER, week VARCHAR, opponent VARCHAR)",
"question": "Name the least attendance for opponent of new orleans saints and week more than 2"
} |
### QUESTION
What was the Match Report for the Euro2008q at the Athens Olympic Stadium on November 17, 2007?
### CONTEXT
CREATE TABLE table_name_89 (match_report VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR)
### ANSWER
SELECT match_report FROM table_name_89 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND date = "november 17, 2007"</s> | {
"answer": "SELECT match_report FROM table_name_89 WHERE competition = \"euro2008q\" AND venue = \"athens olympic stadium\" AND date = \"november 17, 2007\"",
"context": "CREATE TABLE table_name_89 (match_report VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR)",
"question": "What was the Match Report for the Euro2008q at the Athens Olympic Stadium on November 17, 2007?"
} |
### QUESTION
What was the Match Report for the Euro2008q at the Athens Olympic Stadium and a score of 1-2?
### CONTEXT
CREATE TABLE table_name_44 (match_report VARCHAR, score VARCHAR, competition VARCHAR, venue VARCHAR)
### ANSWER
SELECT match_report FROM table_name_44 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND score = "1-2"</s> | {
"answer": "SELECT match_report FROM table_name_44 WHERE competition = \"euro2008q\" AND venue = \"athens olympic stadium\" AND score = \"1-2\"",
"context": "CREATE TABLE table_name_44 (match_report VARCHAR, score VARCHAR, competition VARCHAR, venue VARCHAR)",
"question": "What was the Match Report for the Euro2008q at the Athens Olympic Stadium and a score of 1-2?"
} |
### QUESTION
On what date was there a draw at Sydney Cricket Ground?
### CONTEXT
CREATE TABLE table_name_83 (date VARCHAR, result VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_name_83 WHERE result = "draw" AND venue = "sydney cricket ground"</s> | {
"answer": "SELECT date FROM table_name_83 WHERE result = \"draw\" AND venue = \"sydney cricket ground\"",
"context": "CREATE TABLE table_name_83 (date VARCHAR, result VARCHAR, venue VARCHAR)",
"question": "On what date was there a draw at Sydney Cricket Ground?"
} |
### QUESTION
In what City/State did John Bowe win at Phillip Island Grand Prix Circuit?
### CONTEXT
CREATE TABLE table_name_12 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)
### ANSWER
SELECT city___state FROM table_name_12 WHERE winner = "john bowe" AND circuit = "phillip island grand prix circuit"</s> | {
"answer": "SELECT city___state FROM table_name_12 WHERE winner = \"john bowe\" AND circuit = \"phillip island grand prix circuit\"",
"context": "CREATE TABLE table_name_12 (city___state VARCHAR, winner VARCHAR, circuit VARCHAR)",
"question": "In what City/State did John Bowe win at Phillip Island Grand Prix Circuit?"
} |
### QUESTION
Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes?
### CONTEXT
CREATE TABLE table_name_28 (venue VARCHAR, competition VARCHAR, position VARCHAR, year VARCHAR, notes VARCHAR)
### ANSWER
SELECT venue FROM table_name_28 WHERE year > 2006 AND notes = "3000 m s'chase" AND position = "2nd" AND competition = "african championships"</s> | {
"answer": "SELECT venue FROM table_name_28 WHERE year > 2006 AND notes = \"3000 m s'chase\" AND position = \"2nd\" AND competition = \"african championships\"",
"context": "CREATE TABLE table_name_28 (venue VARCHAR, competition VARCHAR, position VARCHAR, year VARCHAR, notes VARCHAR)",
"question": "Which venue did the African Championships have after 2006 with a position of 2nd and 3000 m s'chase in notes?"
} |
### QUESTION
What is the date with the distance of km (mi) at the course of roccaraso to san giorgio del sannio?
### CONTEXT
CREATE TABLE table_name_20 (date VARCHAR, distance VARCHAR, course VARCHAR)
### ANSWER
SELECT date FROM table_name_20 WHERE distance = "km (mi)" AND course = "roccaraso to san giorgio del sannio"</s> | {
"answer": "SELECT date FROM table_name_20 WHERE distance = \"km (mi)\" AND course = \"roccaraso to san giorgio del sannio\"",
"context": "CREATE TABLE table_name_20 (date VARCHAR, distance VARCHAR, course VARCHAR)",
"question": "What is the date with the distance of km (mi) at the course of roccaraso to san giorgio del sannio?"
} |
### QUESTION
Tell me the catalog for date larger than 2004
### CONTEXT
CREATE TABLE table_name_72 (catalog VARCHAR, date INTEGER)
### ANSWER
SELECT catalog FROM table_name_72 WHERE date > 2004</s> | {
"answer": "SELECT catalog FROM table_name_72 WHERE date > 2004",
"context": "CREATE TABLE table_name_72 (catalog VARCHAR, date INTEGER)",
"question": "Tell me the catalog for date larger than 2004"
} |
### QUESTION
How much Avg/G has a Long of 51, and a Loss of 333, and a Gain larger than 2013?
### CONTEXT
CREATE TABLE table_name_51 (avg_g VARCHAR, gain VARCHAR, long VARCHAR, loss VARCHAR)
### ANSWER
SELECT COUNT(avg_g) FROM table_name_51 WHERE long = 51 AND loss = 333 AND gain > 2013</s> | {
"answer": "SELECT COUNT(avg_g) FROM table_name_51 WHERE long = 51 AND loss = 333 AND gain > 2013",
"context": "CREATE TABLE table_name_51 (avg_g VARCHAR, gain VARCHAR, long VARCHAR, loss VARCHAR)",
"question": "How much Avg/G has a Long of 51, and a Loss of 333, and a Gain larger than 2013?"
} |
### QUESTION
What is the highest scored in the 2010 east asian football championship?
### CONTEXT
CREATE TABLE table_name_66 (scored INTEGER, competition VARCHAR)
### ANSWER
SELECT MAX(scored) FROM table_name_66 WHERE competition = "2010 east asian football championship"</s> | {
"answer": "SELECT MAX(scored) FROM table_name_66 WHERE competition = \"2010 east asian football championship\"",
"context": "CREATE TABLE table_name_66 (scored INTEGER, competition VARCHAR)",
"question": "What is the highest scored in the 2010 east asian football championship?"
} |
### QUESTION
What was the score for an n/a location with the odds of p + 1?
### CONTEXT
CREATE TABLE table_name_61 (result VARCHAR, location VARCHAR, odds VARCHAR)
### ANSWER
SELECT result FROM table_name_61 WHERE location = "n/a" AND odds = "p + 1"</s> | {
"answer": "SELECT result FROM table_name_61 WHERE location = \"n/a\" AND odds = \"p + 1\"",
"context": "CREATE TABLE table_name_61 (result VARCHAR, location VARCHAR, odds VARCHAR)",
"question": "What was the score for an n/a location with the odds of p + 1?"
} |
### QUESTION
What label is in download format in the United States?
### CONTEXT
CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR)
### ANSWER
SELECT label FROM table_name_88 WHERE region = "united states" AND format = "download"</s> | {
"answer": "SELECT label FROM table_name_88 WHERE region = \"united states\" AND format = \"download\"",
"context": "CREATE TABLE table_name_88 (label VARCHAR, region VARCHAR, format VARCHAR)",
"question": "What label is in download format in the United States?"
} |
### QUESTION
What is the average round when there is a defensive back and an overall smaller than 199?
### CONTEXT
CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR)
### ANSWER
SELECT AVG(round) FROM table_name_49 WHERE position = "defensive back" AND overall < 199</s> | {
"answer": "SELECT AVG(round) FROM table_name_49 WHERE position = \"defensive back\" AND overall < 199",
"context": "CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR)",
"question": "What is the average round when there is a defensive back and an overall smaller than 199?"
} |
### QUESTION
Name the finish for start of 28
### CONTEXT
CREATE TABLE table_name_76 (finish VARCHAR, start VARCHAR)
### ANSWER
SELECT finish FROM table_name_76 WHERE start = "28"</s> | {
"answer": "SELECT finish FROM table_name_76 WHERE start = \"28\"",
"context": "CREATE TABLE table_name_76 (finish VARCHAR, start VARCHAR)",
"question": "Name the finish for start of 28"
} |
### QUESTION
What city has a Result of brisbane broncos def. halifax blue sox?
### CONTEXT
CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR)
### ANSWER
SELECT city FROM table_name_22 WHERE result = "brisbane broncos def. halifax blue sox"</s> | {
"answer": "SELECT city FROM table_name_22 WHERE result = \"brisbane broncos def. halifax blue sox\"",
"context": "CREATE TABLE table_name_22 (city VARCHAR, result VARCHAR)",
"question": "What city has a Result of brisbane broncos def. halifax blue sox?"
} |
### QUESTION
What was the overall draft number of Tom Fleming, a wide receiver?
### CONTEXT
CREATE TABLE table_name_28 (overall VARCHAR, position VARCHAR, player VARCHAR)
### ANSWER
SELECT COUNT(overall) FROM table_name_28 WHERE position = "wide receiver" AND player = "tom fleming"</s> | {
"answer": "SELECT COUNT(overall) FROM table_name_28 WHERE position = \"wide receiver\" AND player = \"tom fleming\"",
"context": "CREATE TABLE table_name_28 (overall VARCHAR, position VARCHAR, player VARCHAR)",
"question": "What was the overall draft number of Tom Fleming, a wide receiver?"
} |
### QUESTION
yes or no for the gold coast with yes for melbourne, yes for adelaide, yes for auckland?
### CONTEXT
CREATE TABLE table_name_2 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR)
### ANSWER
SELECT gold_coast FROM table_name_2 WHERE melbourne = "yes" AND adelaide = "yes" AND auckland = "yes"</s> | {
"answer": "SELECT gold_coast FROM table_name_2 WHERE melbourne = \"yes\" AND adelaide = \"yes\" AND auckland = \"yes\"",
"context": "CREATE TABLE table_name_2 (gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR)",
"question": "yes or no for the gold coast with yes for melbourne, yes for adelaide, yes for auckland?"
} |
### QUESTION
What is the lowest amount of losses the United States, ranked higher than 3 with more than 6 wins, have?
### CONTEXT
CREATE TABLE table_name_96 (losses INTEGER, wins VARCHAR, rank VARCHAR, team VARCHAR)
### ANSWER
SELECT MIN(losses) FROM table_name_96 WHERE rank < 3 AND team = "united states" AND wins > 6</s> | {
"answer": "SELECT MIN(losses) FROM table_name_96 WHERE rank < 3 AND team = \"united states\" AND wins > 6",
"context": "CREATE TABLE table_name_96 (losses INTEGER, wins VARCHAR, rank VARCHAR, team VARCHAR)",
"question": "What is the lowest amount of losses the United States, ranked higher than 3 with more than 6 wins, have?"
} |
### QUESTION
How many total wins did the team ranked lower than 1 with a run ratio less than 5.85 and more than 4 losses have?
### CONTEXT
CREATE TABLE table_name_87 (wins VARCHAR, losses VARCHAR, rank VARCHAR, run_ratio VARCHAR)
### ANSWER
SELECT COUNT(wins) FROM table_name_87 WHERE rank > 1 AND run_ratio < 5.85 AND losses > 4</s> | {
"answer": "SELECT COUNT(wins) FROM table_name_87 WHERE rank > 1 AND run_ratio < 5.85 AND losses > 4",
"context": "CREATE TABLE table_name_87 (wins VARCHAR, losses VARCHAR, rank VARCHAR, run_ratio VARCHAR)",
"question": "How many total wins did the team ranked lower than 1 with a run ratio less than 5.85 and more than 4 losses have?"
} |
### QUESTION
In which round did Paul McDonald have an overall greater than 109?
### CONTEXT
CREATE TABLE table_name_22 (round INTEGER, player VARCHAR, overall VARCHAR)
### ANSWER
SELECT MAX(round) FROM table_name_22 WHERE player = "paul mcdonald" AND overall > 109</s> | {
"answer": "SELECT MAX(round) FROM table_name_22 WHERE player = \"paul mcdonald\" AND overall > 109",
"context": "CREATE TABLE table_name_22 (round INTEGER, player VARCHAR, overall VARCHAR)",
"question": "In which round did Paul McDonald have an overall greater than 109?"
} |
### QUESTION
What is the total number of Year that has an Album of Remixes?
### CONTEXT
CREATE TABLE table_name_52 (year INTEGER, album VARCHAR)
### ANSWER
SELECT SUM(year) FROM table_name_52 WHERE album = "remixes"</s> | {
"answer": "SELECT SUM(year) FROM table_name_52 WHERE album = \"remixes\"",
"context": "CREATE TABLE table_name_52 (year INTEGER, album VARCHAR)",
"question": "What is the total number of Year that has an Album of Remixes?"
} |
### QUESTION
the sum of Events that has a Rank larger than 5 is 3
### CONTEXT
CREATE TABLE table_name_97 (events INTEGER, rank INTEGER)
### ANSWER
SELECT SUM(events) FROM table_name_97 WHERE rank > 5</s> | {
"answer": "SELECT SUM(events) FROM table_name_97 WHERE rank > 5",
"context": "CREATE TABLE table_name_97 (events INTEGER, rank INTEGER)",
"question": "the sum of Events that has a Rank larger than 5 is 3"
} |
### QUESTION
What females have males of 1 234?
### CONTEXT
CREATE TABLE table_name_21 (females VARCHAR, males VARCHAR)
### ANSWER
SELECT females FROM table_name_21 WHERE males = "1 234"</s> | {
"answer": "SELECT females FROM table_name_21 WHERE males = \"1 234\"",
"context": "CREATE TABLE table_name_21 (females VARCHAR, males VARCHAR)",
"question": "What females have males of 1 234?"
} |
### QUESTION
How many touchdowns were made where field goals were less than 0?
### CONTEXT
CREATE TABLE table_name_81 (touchdowns INTEGER, field_goals INTEGER)
### ANSWER
SELECT SUM(touchdowns) FROM table_name_81 WHERE field_goals < 0</s> | {
"answer": "SELECT SUM(touchdowns) FROM table_name_81 WHERE field_goals < 0",
"context": "CREATE TABLE table_name_81 (touchdowns INTEGER, field_goals INTEGER)",
"question": "How many touchdowns were made where field goals were less than 0?"
} |
### QUESTION
When Herb Graver played, how many field goals were made when there were more than 50 points, less than 15 touchdowns, and more than 0 extra points?
### CONTEXT
CREATE TABLE table_name_87 (field_goals INTEGER, touchdowns VARCHAR, player VARCHAR, points VARCHAR, extra_points VARCHAR)
### ANSWER
SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = "herb graver" AND touchdowns < 15</s> | {
"answer": "SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = \"herb graver\" AND touchdowns < 15",
"context": "CREATE TABLE table_name_87 (field_goals INTEGER, touchdowns VARCHAR, player VARCHAR, points VARCHAR, extra_points VARCHAR)",
"question": "When Herb Graver played, how many field goals were made when there were more than 50 points, less than 15 touchdowns, and more than 0 extra points?"
} |
### QUESTION
What open source movie has a CC License of by-nc-sa 1.0?
### CONTEXT
CREATE TABLE table_name_90 (open_source_movie VARCHAR, cc_license VARCHAR)
### ANSWER
SELECT open_source_movie FROM table_name_90 WHERE cc_license = "by-nc-sa 1.0"</s> | {
"answer": "SELECT open_source_movie FROM table_name_90 WHERE cc_license = \"by-nc-sa 1.0\"",
"context": "CREATE TABLE table_name_90 (open_source_movie VARCHAR, cc_license VARCHAR)",
"question": "What open source movie has a CC License of by-nc-sa 1.0?"
} |
### QUESTION
How much Displacement (tons) has an Armament of 2 x -inch (mm), 16 x -inch (mm)?
### CONTEXT
CREATE TABLE table_name_52 (displacement__tons_ VARCHAR, armament VARCHAR)
### ANSWER
SELECT COUNT(displacement__tons_) FROM table_name_52 WHERE armament = "2 x -inch (mm), 16 x -inch (mm)"</s> | {
"answer": "SELECT COUNT(displacement__tons_) FROM table_name_52 WHERE armament = \"2 x -inch (mm), 16 x -inch (mm)\"",
"context": "CREATE TABLE table_name_52 (displacement__tons_ VARCHAR, armament VARCHAR)",
"question": "How much Displacement (tons) has an Armament of 2 x -inch (mm), 16 x -inch (mm)?"
} |
### QUESTION
Which Location has an Event of king of the cage: flash point?
### CONTEXT
CREATE TABLE table_name_16 (location VARCHAR, event VARCHAR)
### ANSWER
SELECT location FROM table_name_16 WHERE event = "king of the cage: flash point"</s> | {
"answer": "SELECT location FROM table_name_16 WHERE event = \"king of the cage: flash point\"",
"context": "CREATE TABLE table_name_16 (location VARCHAR, event VARCHAR)",
"question": "Which Location has an Event of king of the cage: flash point?"
} |
### QUESTION
What venue had south melbourne as the home team?
### CONTEXT
CREATE TABLE table_name_90 (venue VARCHAR, home_team VARCHAR)
### ANSWER
SELECT venue FROM table_name_90 WHERE home_team = "south melbourne"</s> | {
"answer": "SELECT venue FROM table_name_90 WHERE home_team = \"south melbourne\"",
"context": "CREATE TABLE table_name_90 (venue VARCHAR, home_team VARCHAR)",
"question": "What venue had south melbourne as the home team?"
} |
### QUESTION
What is the 2006 result of the Canada Masters tournament that is A in 2009 and A in 2010?
### CONTEXT
CREATE TABLE table_name_88 (tournament VARCHAR)
### ANSWER
SELECT 2006 FROM table_name_88 WHERE 2010 = "a" AND 2009 = "a" AND tournament = "canada masters"</s> | {
"answer": "SELECT 2006 FROM table_name_88 WHERE 2010 = \"a\" AND 2009 = \"a\" AND tournament = \"canada masters\"",
"context": "CREATE TABLE table_name_88 (tournament VARCHAR)",
"question": "What is the 2006 result of the Canada Masters tournament that is A in 2009 and A in 2010?"
} |
### QUESTION
What is the 2012 result of a tournament that is 2R in 2007, 1R in 2008 and 1R in 2009?
### CONTEXT
CREATE TABLE table_name_29 (Id VARCHAR)
### ANSWER
SELECT 2012 FROM table_name_29 WHERE 2009 = "1r" AND 2008 = "1r" AND 2007 = "2r"</s> | {
"answer": "SELECT 2012 FROM table_name_29 WHERE 2009 = \"1r\" AND 2008 = \"1r\" AND 2007 = \"2r\"",
"context": "CREATE TABLE table_name_29 (Id VARCHAR)",
"question": "What is the 2012 result of a tournament that is 2R in 2007, 1R in 2008 and 1R in 2009?"
} |
### QUESTION
What is the 2007 value at the 2012 Grand Slam Tournaments?
### CONTEXT
CREATE TABLE table_name_26 (Id VARCHAR)
### ANSWER
SELECT 2007 FROM table_name_26 WHERE 2012 = "grand slam tournaments"</s> | {
"answer": "SELECT 2007 FROM table_name_26 WHERE 2012 = \"grand slam tournaments\"",
"context": "CREATE TABLE table_name_26 (Id VARCHAR)",
"question": "What is the 2007 value at the 2012 Grand Slam Tournaments?"
} |
### QUESTION
What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?
### CONTEXT
CREATE TABLE table_name_23 (worst_score INTEGER, best_dancer VARCHAR, best_score VARCHAR)
### ANSWER
SELECT SUM(worst_score) FROM table_name_23 WHERE best_dancer = "apolo anton ohno" AND best_score > 30</s> | {
"answer": "SELECT SUM(worst_score) FROM table_name_23 WHERE best_dancer = \"apolo anton ohno\" AND best_score > 30",
"context": "CREATE TABLE table_name_23 (worst_score INTEGER, best_dancer VARCHAR, best_score VARCHAR)",
"question": "What is the worst score for the dance that has Apolo Anton Ohno as the best dancer, and where his best score is larger than 30?"
} |
### QUESTION
What is the date they played against fitzroy?
### CONTEXT
CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)
### ANSWER
SELECT date FROM table_name_10 WHERE away_team = "fitzroy"</s> | {
"answer": "SELECT date FROM table_name_10 WHERE away_team = \"fitzroy\"",
"context": "CREATE TABLE table_name_10 (date VARCHAR, away_team VARCHAR)",
"question": "What is the date they played against fitzroy?"
} |
### QUESTION
What is the lowest total that has draws less than 2 and wins less than 1, losses bigger than 1 with a goal difference of 1:2
### CONTEXT
CREATE TABLE table_name_89 (total INTEGER, losses VARCHAR, goal_difference VARCHAR, draws VARCHAR, wins VARCHAR)
### ANSWER
SELECT MIN(total) FROM table_name_89 WHERE draws < 2 AND wins < 1 AND goal_difference = "1:2" AND losses > 1</s> | {
"answer": "SELECT MIN(total) FROM table_name_89 WHERE draws < 2 AND wins < 1 AND goal_difference = \"1:2\" AND losses > 1",
"context": "CREATE TABLE table_name_89 (total INTEGER, losses VARCHAR, goal_difference VARCHAR, draws VARCHAR, wins VARCHAR)",
"question": "What is the lowest total that has draws less than 2 and wins less than 1, losses bigger than 1 with a goal difference of 1:2"
} |
### QUESTION
What number of Fatalities did the Epicenter Māzandarān have?
### CONTEXT
CREATE TABLE table_name_79 (fatalities VARCHAR, epicenter VARCHAR)
### ANSWER
SELECT fatalities FROM table_name_79 WHERE epicenter = "māzandarān"</s> | {
"answer": "SELECT fatalities FROM table_name_79 WHERE epicenter = \"māzandarān\"",
"context": "CREATE TABLE table_name_79 (fatalities VARCHAR, epicenter VARCHAR)",
"question": "What number of Fatalities did the Epicenter Māzandarān have?"
} |
### QUESTION
What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?
### CONTEXT
CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)
### ANSWER
SELECT loss FROM table_name_57 WHERE opponent = "rangers" AND attendance > 43 OFFSET 211</s> | {
"answer": "SELECT loss FROM table_name_57 WHERE opponent = \"rangers\" AND attendance > 43 OFFSET 211",
"context": "CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)",
"question": "What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?"
} |
### QUESTION
What was the 2008 result associated with a 2009 of A and a 2011 of 2R?
### CONTEXT
CREATE TABLE table_name_36 (Id VARCHAR)
### ANSWER
SELECT 2008 FROM table_name_36 WHERE 2009 = "a" AND 2011 = "2r"</s> | {
"answer": "SELECT 2008 FROM table_name_36 WHERE 2009 = \"a\" AND 2011 = \"2r\"",
"context": "CREATE TABLE table_name_36 (Id VARCHAR)",
"question": "What was the 2008 result associated with a 2009 of A and a 2011 of 2R?"
} |
### QUESTION
Name the position for brazil 2008 with goals of 0 1
### CONTEXT
CREATE TABLE table_name_6 (position VARCHAR, goals VARCHAR, country VARCHAR, period VARCHAR)
### ANSWER
SELECT position FROM table_name_6 WHERE country = "brazil" AND period = "2008" AND goals = "0 1"</s> | {
"answer": "SELECT position FROM table_name_6 WHERE country = \"brazil\" AND period = \"2008\" AND goals = \"0 1\"",
"context": "CREATE TABLE table_name_6 (position VARCHAR, goals VARCHAR, country VARCHAR, period VARCHAR)",
"question": "Name the position for brazil 2008 with goals of 0 1"
} |
### QUESTION
Which Events have a Player of tom kite, and Earnings ($) smaller than 760,405?
### CONTEXT
CREATE TABLE table_name_60 (events INTEGER, player VARCHAR, earnings___$__ VARCHAR)
### ANSWER
SELECT AVG(events) FROM table_name_60 WHERE player = "tom kite" AND earnings___$__ < 760 OFFSET 405</s> | {
"answer": "SELECT AVG(events) FROM table_name_60 WHERE player = \"tom kite\" AND earnings___$__ < 760 OFFSET 405",
"context": "CREATE TABLE table_name_60 (events INTEGER, player VARCHAR, earnings___$__ VARCHAR)",
"question": "Which Events have a Player of tom kite, and Earnings ($) smaller than 760,405?"
} |
### QUESTION
How many rounds have an Overall larger than 17, and a Position of quarterback?
### CONTEXT
CREATE TABLE table_name_66 (round VARCHAR, overall VARCHAR, position VARCHAR)
### ANSWER
SELECT COUNT(round) FROM table_name_66 WHERE overall > 17 AND position = "quarterback"</s> | {
"answer": "SELECT COUNT(round) FROM table_name_66 WHERE overall > 17 AND position = \"quarterback\"",
"context": "CREATE TABLE table_name_66 (round VARCHAR, overall VARCHAR, position VARCHAR)",
"question": "How many rounds have an Overall larger than 17, and a Position of quarterback?"
} |
### QUESTION
Which storm has a clash of 3 and a dance of 4?
### CONTEXT
CREATE TABLE table_name_58 (storm VARCHAR, dance VARCHAR, clash VARCHAR)
### ANSWER
SELECT storm FROM table_name_58 WHERE dance = "4" AND clash = "3"</s> | {
"answer": "SELECT storm FROM table_name_58 WHERE dance = \"4\" AND clash = \"3\"",
"context": "CREATE TABLE table_name_58 (storm VARCHAR, dance VARCHAR, clash VARCHAR)",
"question": "Which storm has a clash of 3 and a dance of 4?"
} |
### QUESTION
Name the sydney with perth of no, adelaide of no with melbourne of yes and gold coast of yes
### CONTEXT
CREATE TABLE table_name_53 (sydney VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, perth VARCHAR, adelaide VARCHAR)
### ANSWER
SELECT sydney FROM table_name_53 WHERE perth = "no" AND adelaide = "no" AND melbourne = "yes" AND gold_coast = "yes"</s> | {
"answer": "SELECT sydney FROM table_name_53 WHERE perth = \"no\" AND adelaide = \"no\" AND melbourne = \"yes\" AND gold_coast = \"yes\"",
"context": "CREATE TABLE table_name_53 (sydney VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, perth VARCHAR, adelaide VARCHAR)",
"question": "Name the sydney with perth of no, adelaide of no with melbourne of yes and gold coast of yes"
} |
### QUESTION
Name the melbourne for adelaide of no with auckland of yes and gold coast of yes
### CONTEXT
CREATE TABLE table_name_49 (melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR, auckland VARCHAR)
### ANSWER
SELECT melbourne FROM table_name_49 WHERE adelaide = "no" AND auckland = "yes" AND gold_coast = "no"</s> | {
"answer": "SELECT melbourne FROM table_name_49 WHERE adelaide = \"no\" AND auckland = \"yes\" AND gold_coast = \"no\"",
"context": "CREATE TABLE table_name_49 (melbourne VARCHAR, gold_coast VARCHAR, adelaide VARCHAR, auckland VARCHAR)",
"question": "Name the melbourne for adelaide of no with auckland of yes and gold coast of yes"
} |
### QUESTION
What is the date with geelong as Away team?
### CONTEXT
CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR)
### ANSWER
SELECT date FROM table_name_63 WHERE away_team = "geelong"</s> | {
"answer": "SELECT date FROM table_name_63 WHERE away_team = \"geelong\"",
"context": "CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR)",
"question": "What is the date with geelong as Away team?"
} |
### QUESTION
What is essendon's away team score?
### CONTEXT
CREATE TABLE table_name_1 (away_team VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_1 WHERE away_team = "essendon"</s> | {
"answer": "SELECT away_team AS score FROM table_name_1 WHERE away_team = \"essendon\"",
"context": "CREATE TABLE table_name_1 (away_team VARCHAR)",
"question": "What is essendon's away team score?"
} |
### QUESTION
Which Position has an Against of 5, and a Drawn larger than 0?
### CONTEXT
CREATE TABLE table_name_35 (position INTEGER, against VARCHAR, drawn VARCHAR)
### ANSWER
SELECT SUM(position) FROM table_name_35 WHERE against = 5 AND drawn > 0</s> | {
"answer": "SELECT SUM(position) FROM table_name_35 WHERE against = 5 AND drawn > 0",
"context": "CREATE TABLE table_name_35 (position INTEGER, against VARCHAR, drawn VARCHAR)",
"question": "Which Position has an Against of 5, and a Drawn larger than 0?"
} |
### QUESTION
Which Played is the highest one that has a Lost smaller than 1, and a Difference of 6, and an Against larger than 2?
### CONTEXT
CREATE TABLE table_name_66 (played INTEGER, against VARCHAR, lost VARCHAR, difference VARCHAR)
### ANSWER
SELECT MAX(played) FROM table_name_66 WHERE lost < 1 AND difference = "6" AND against > 2</s> | {
"answer": "SELECT MAX(played) FROM table_name_66 WHERE lost < 1 AND difference = \"6\" AND against > 2",
"context": "CREATE TABLE table_name_66 (played INTEGER, against VARCHAR, lost VARCHAR, difference VARCHAR)",
"question": "Which Played is the highest one that has a Lost smaller than 1, and a Difference of 6, and an Against larger than 2?"
} |
### QUESTION
Where is Emerson Fittipaldi starting in Pole position?
### CONTEXT
CREATE TABLE table_name_60 (city_location VARCHAR, pole_position VARCHAR)
### ANSWER
SELECT city_location FROM table_name_60 WHERE pole_position = "emerson fittipaldi"</s> | {
"answer": "SELECT city_location FROM table_name_60 WHERE pole_position = \"emerson fittipaldi\"",
"context": "CREATE TABLE table_name_60 (city_location VARCHAR, pole_position VARCHAR)",
"question": "Where is Emerson Fittipaldi starting in Pole position?"
} |
### QUESTION
Name the average round where Dave Stachelski was picked smaller than 187.
### CONTEXT
CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, player VARCHAR)
### ANSWER
SELECT AVG(round) FROM table_name_28 WHERE overall < 187 AND player = "dave stachelski"</s> | {
"answer": "SELECT AVG(round) FROM table_name_28 WHERE overall < 187 AND player = \"dave stachelski\"",
"context": "CREATE TABLE table_name_28 (round INTEGER, overall VARCHAR, player VARCHAR)",
"question": "Name the average round where Dave Stachelski was picked smaller than 187."
} |
### QUESTION
What prize money has michelob light challenge of champions as the commercial name?
### CONTEXT
CREATE TABLE table_name_56 (prize_money VARCHAR, commercial_name VARCHAR)
### ANSWER
SELECT prize_money FROM table_name_56 WHERE commercial_name = "michelob light challenge of champions"</s> | {
"answer": "SELECT prize_money FROM table_name_56 WHERE commercial_name = \"michelob light challenge of champions\"",
"context": "CREATE TABLE table_name_56 (prize_money VARCHAR, commercial_name VARCHAR)",
"question": "What prize money has michelob light challenge of champions as the commercial name?"
} |
### QUESTION
What is the greatest point of an Entrant of connaught engineering alta straight-4 engine before 1957
### CONTEXT
CREATE TABLE table_name_9 (points INTEGER, year VARCHAR, engine VARCHAR, entrant VARCHAR)
### ANSWER
SELECT MAX(points) FROM table_name_9 WHERE engine = "alta straight-4" AND entrant = "connaught engineering" AND year < 1957</s> | {
"answer": "SELECT MAX(points) FROM table_name_9 WHERE engine = \"alta straight-4\" AND entrant = \"connaught engineering\" AND year < 1957",
"context": "CREATE TABLE table_name_9 (points INTEGER, year VARCHAR, engine VARCHAR, entrant VARCHAR)",
"question": "What is the greatest point of an Entrant of connaught engineering alta straight-4 engine before 1957"
} |
### QUESTION
What date has friendly as the type of game, france as an opponent, and paris, france as the city?
### CONTEXT
CREATE TABLE table_name_92 (date VARCHAR, city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
### ANSWER
SELECT date FROM table_name_92 WHERE type_of_game = "friendly" AND opponent = "france" AND city = "paris, france"</s> | {
"answer": "SELECT date FROM table_name_92 WHERE type_of_game = \"friendly\" AND opponent = \"france\" AND city = \"paris, france\"",
"context": "CREATE TABLE table_name_92 (date VARCHAR, city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)",
"question": "What date has friendly as the type of game, france as an opponent, and paris, france as the city?"
} |
### QUESTION
What is the score of the team that plays in lake oval?
### CONTEXT
CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)
### ANSWER
SELECT away_team AS score FROM table_name_85 WHERE venue = "lake oval"</s> | {
"answer": "SELECT away_team AS score FROM table_name_85 WHERE venue = \"lake oval\"",
"context": "CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR)",
"question": "What is the score of the team that plays in lake oval?"
} |
### QUESTION
What was the date of the Ace Group Classic tournament with a 1 stroke margin of victory?
### CONTEXT
CREATE TABLE table_name_24 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
### ANSWER
SELECT date FROM table_name_24 WHERE margin_of_victory = "1 stroke" AND tournament = "the ace group classic"</s> | {
"answer": "SELECT date FROM table_name_24 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"the ace group classic\"",
"context": "CREATE TABLE table_name_24 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)",
"question": "What was the date of the Ace Group Classic tournament with a 1 stroke margin of victory?"
} |
### QUESTION
What was the score of the home team of carlton?
### CONTEXT
CREATE TABLE table_name_60 (home_team VARCHAR)
### ANSWER
SELECT home_team AS score FROM table_name_60 WHERE home_team = "carlton"</s> | {
"answer": "SELECT home_team AS score FROM table_name_60 WHERE home_team = \"carlton\"",
"context": "CREATE TABLE table_name_60 (home_team VARCHAR)",
"question": "What was the score of the home team of carlton?"
} |
### QUESTION
What is the largest number of households with median family income of $52,106 with less than 21,403 in population?
### CONTEXT
CREATE TABLE table_name_88 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR)
### ANSWER
SELECT MAX(number_of_households) FROM table_name_88 WHERE median_family_income = "$52,106" AND population < 21 OFFSET 403</s> | {
"answer": "SELECT MAX(number_of_households) FROM table_name_88 WHERE median_family_income = \"$52,106\" AND population < 21 OFFSET 403",
"context": "CREATE TABLE table_name_88 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR)",
"question": "What is the largest number of households with median family income of $52,106 with less than 21,403 in population?"
} |
### QUESTION
What is the most households with a median household income of $54,086 with less than 231,236 in population?
### CONTEXT
CREATE TABLE table_name_2 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR)
### ANSWER
SELECT MAX(number_of_households) FROM table_name_2 WHERE median_household_income = "$54,086" AND population < 231 OFFSET 236</s> | {
"answer": "SELECT MAX(number_of_households) FROM table_name_2 WHERE median_household_income = \"$54,086\" AND population < 231 OFFSET 236",
"context": "CREATE TABLE table_name_2 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR)",
"question": "What is the most households with a median household income of $54,086 with less than 231,236 in population?"
} |
### QUESTION
Which Auckland has an Adelaide of no, a Melbourne of yes, and a Sydney of yes?
### CONTEXT
CREATE TABLE table_name_1 (auckland VARCHAR, sydney VARCHAR, adelaide VARCHAR, melbourne VARCHAR)
### ANSWER
SELECT auckland FROM table_name_1 WHERE adelaide = "no" AND melbourne = "yes" AND sydney = "yes"</s> | {
"answer": "SELECT auckland FROM table_name_1 WHERE adelaide = \"no\" AND melbourne = \"yes\" AND sydney = \"yes\"",
"context": "CREATE TABLE table_name_1 (auckland VARCHAR, sydney VARCHAR, adelaide VARCHAR, melbourne VARCHAR)",
"question": "Which Auckland has an Adelaide of no, a Melbourne of yes, and a Sydney of yes?"
} |
### QUESTION
What is the venue that Saint Joseph's University hosted at?
### CONTEXT
CREATE TABLE table_name_38 (venue VARCHAR, host VARCHAR)
### ANSWER
SELECT venue FROM table_name_38 WHERE host = "saint joseph's university"</s> | {
"answer": "SELECT venue FROM table_name_38 WHERE host = \"saint joseph's university\"",
"context": "CREATE TABLE table_name_38 (venue VARCHAR, host VARCHAR)",
"question": "What is the venue that Saint Joseph's University hosted at?"
} |
### QUESTION
What is the Name with an overall of less than 123 for the Detroit Lions?
### CONTEXT
CREATE TABLE table_name_3 (name VARCHAR, overall VARCHAR, team VARCHAR)
### ANSWER
SELECT name FROM table_name_3 WHERE overall < 123 AND team = "detroit lions"</s> | {
"answer": "SELECT name FROM table_name_3 WHERE overall < 123 AND team = \"detroit lions\"",
"context": "CREATE TABLE table_name_3 (name VARCHAR, overall VARCHAR, team VARCHAR)",
"question": "What is the Name with an overall of less than 123 for the Detroit Lions?"
} |
### QUESTION
On which date did Ger Loughnane from Team Clare have a match?
### CONTEXT
CREATE TABLE table_name_88 (date VARCHAR, team VARCHAR, player VARCHAR)
### ANSWER
SELECT date FROM table_name_88 WHERE team = "clare" AND player = "ger loughnane"</s> | {
"answer": "SELECT date FROM table_name_88 WHERE team = \"clare\" AND player = \"ger loughnane\"",
"context": "CREATE TABLE table_name_88 (date VARCHAR, team VARCHAR, player VARCHAR)",
"question": "On which date did Ger Loughnane from Team Clare have a match?"
} |
### QUESTION
Which opponent had a round of more than 1 and an even of PFP: ring of fire?
### CONTEXT
CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR, event VARCHAR)
### ANSWER
SELECT opponent FROM table_name_45 WHERE round > 1 AND event = "pfp: ring of fire"</s> | {
"answer": "SELECT opponent FROM table_name_45 WHERE round > 1 AND event = \"pfp: ring of fire\"",
"context": "CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR, event VARCHAR)",
"question": "Which opponent had a round of more than 1 and an even of PFP: ring of fire?"
} |
### QUESTION
What is the Senators' division record?
### CONTEXT
CREATE TABLE table_name_39 (division_record VARCHAR, team VARCHAR)
### ANSWER
SELECT division_record FROM table_name_39 WHERE team = "senators"</s> | {
"answer": "SELECT division_record FROM table_name_39 WHERE team = \"senators\"",
"context": "CREATE TABLE table_name_39 (division_record VARCHAR, team VARCHAR)",
"question": "What is the Senators' division record?"
} |
### QUESTION
Which NHL team has left wing listed as the position?
### CONTEXT
CREATE TABLE table_name_66 (nhl_team VARCHAR, position VARCHAR)
### ANSWER
SELECT nhl_team FROM table_name_66 WHERE position = "left wing"</s> | {
"answer": "SELECT nhl_team FROM table_name_66 WHERE position = \"left wing\"",
"context": "CREATE TABLE table_name_66 (nhl_team VARCHAR, position VARCHAR)",
"question": "Which NHL team has left wing listed as the position?"
} |
### QUESTION
What is the average number of points of the game after January 3 against the Cleveland Barons?
### CONTEXT
CREATE TABLE table_name_23 (points INTEGER, opponent VARCHAR, january VARCHAR)
### ANSWER
SELECT AVG(points) FROM table_name_23 WHERE opponent = "cleveland barons" AND january > 3</s> | {
"answer": "SELECT AVG(points) FROM table_name_23 WHERE opponent = \"cleveland barons\" AND january > 3",
"context": "CREATE TABLE table_name_23 (points INTEGER, opponent VARCHAR, january VARCHAR)",
"question": "What is the average number of points of the game after January 3 against the Cleveland Barons?"
} |
### QUESTION
What is the roll number of Orautoha school in Raetihi, which has a decile smaller than 8?
### CONTEXT
CREATE TABLE table_name_63 (roll INTEGER, decile VARCHAR, area VARCHAR, name VARCHAR)
### ANSWER
SELECT SUM(roll) FROM table_name_63 WHERE area = "raetihi" AND name = "orautoha school" AND decile < 8</s> | {
"answer": "SELECT SUM(roll) FROM table_name_63 WHERE area = \"raetihi\" AND name = \"orautoha school\" AND decile < 8",
"context": "CREATE TABLE table_name_63 (roll INTEGER, decile VARCHAR, area VARCHAR, name VARCHAR)",
"question": "What is the roll number of Orautoha school in Raetihi, which has a decile smaller than 8?"
} |
### QUESTION
Location of brendan byrne arena had what score?
### CONTEXT
CREATE TABLE table_name_5 (score VARCHAR, location VARCHAR)
### ANSWER
SELECT score FROM table_name_5 WHERE location = "brendan byrne arena"</s> | {
"answer": "SELECT score FROM table_name_5 WHERE location = \"brendan byrne arena\"",
"context": "CREATE TABLE table_name_5 (score VARCHAR, location VARCHAR)",
"question": "Location of brendan byrne arena had what score?"
} |
### QUESTION
Opponent of chicago bulls had what location?
### CONTEXT
CREATE TABLE table_name_83 (location VARCHAR, opponent VARCHAR)
### ANSWER
SELECT location FROM table_name_83 WHERE opponent = "chicago bulls"</s> | {
"answer": "SELECT location FROM table_name_83 WHERE opponent = \"chicago bulls\"",
"context": "CREATE TABLE table_name_83 (location VARCHAR, opponent VARCHAR)",
"question": "Opponent of chicago bulls had what location?"
} |
### QUESTION
What race did Meo Constantini win at the circuit of monza ?
### CONTEXT
CREATE TABLE table_name_36 (name VARCHAR, winning_driver VARCHAR, circuit VARCHAR)
### ANSWER
SELECT name FROM table_name_36 WHERE winning_driver = "meo constantini" AND circuit = "monza"</s> | {
"answer": "SELECT name FROM table_name_36 WHERE winning_driver = \"meo constantini\" AND circuit = \"monza\"",
"context": "CREATE TABLE table_name_36 (name VARCHAR, winning_driver VARCHAR, circuit VARCHAR)",
"question": "What race did Meo Constantini win at the circuit of monza ?"
} |
### QUESTION
How many bids were there for the .500 win percentage in the Ohio Valley conference?
### CONTEXT
CREATE TABLE table_name_7 (_number_of_bids INTEGER, win__percentage VARCHAR, conference VARCHAR)
### ANSWER
SELECT SUM(_number_of_bids) FROM table_name_7 WHERE win__percentage = ".500" AND conference = "ohio valley"</s> | {
"answer": "SELECT SUM(_number_of_bids) FROM table_name_7 WHERE win__percentage = \".500\" AND conference = \"ohio valley\"",
"context": "CREATE TABLE table_name_7 (_number_of_bids INTEGER, win__percentage VARCHAR, conference VARCHAR)",
"question": "How many bids were there for the .500 win percentage in the Ohio Valley conference?"
} |
### QUESTION
Who was the visiting team on weeks under 12 and at Sports Authority Field at Mile High?
### CONTEXT
CREATE TABLE table_name_24 (visiting_team VARCHAR, week VARCHAR, stadium VARCHAR)
### ANSWER
SELECT visiting_team FROM table_name_24 WHERE week < 12 AND stadium = "sports authority field at mile high"</s> | {
"answer": "SELECT visiting_team FROM table_name_24 WHERE week < 12 AND stadium = \"sports authority field at mile high\"",
"context": "CREATE TABLE table_name_24 (visiting_team VARCHAR, week VARCHAR, stadium VARCHAR)",
"question": "Who was the visiting team on weeks under 12 and at Sports Authority Field at Mile High?"
} |
### QUESTION
Who was the visiting team at Raymond James Stadium?
### CONTEXT
CREATE TABLE table_name_36 (visiting_team VARCHAR, stadium VARCHAR)
### ANSWER
SELECT visiting_team FROM table_name_36 WHERE stadium = "raymond james stadium"</s> | {
"answer": "SELECT visiting_team FROM table_name_36 WHERE stadium = \"raymond james stadium\"",
"context": "CREATE TABLE table_name_36 (visiting_team VARCHAR, stadium VARCHAR)",
"question": "Who was the visiting team at Raymond James Stadium?"
} |
### QUESTION
What is the To par and holds the t8 place of the United States player Tiger Woods?
### CONTEXT
CREATE TABLE table_name_62 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)
### ANSWER
SELECT to_par FROM table_name_62 WHERE country = "united states" AND place = "t8" AND player = "tiger woods"</s> | {
"answer": "SELECT to_par FROM table_name_62 WHERE country = \"united states\" AND place = \"t8\" AND player = \"tiger woods\"",
"context": "CREATE TABLE table_name_62 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)",
"question": "What is the To par and holds the t8 place of the United States player Tiger Woods?"
} |
### QUESTION
Result of w 16-10* o.t. had what attendance?
### CONTEXT
CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)
### ANSWER
SELECT attendance FROM table_name_27 WHERE result = "w 16-10* o.t."</s> | {
"answer": "SELECT attendance FROM table_name_27 WHERE result = \"w 16-10* o.t.\"",
"context": "CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)",
"question": "Result of w 16-10* o.t. had what attendance?"
} |
### QUESTION
What was the club career for players in positions of DF, fewer than 18 total goals, fewer than 129 league appearances, and more than 7 league goals?
### CONTEXT
CREATE TABLE table_name_65 (club_career VARCHAR, league_goals VARCHAR, league_apps VARCHAR, position VARCHAR, total_goals VARCHAR)
### ANSWER
SELECT club_career FROM table_name_65 WHERE position = "df" AND total_goals < 18 AND league_apps < 129 AND league_goals > 7</s> | {
"answer": "SELECT club_career FROM table_name_65 WHERE position = \"df\" AND total_goals < 18 AND league_apps < 129 AND league_goals > 7",
"context": "CREATE TABLE table_name_65 (club_career VARCHAR, league_goals VARCHAR, league_apps VARCHAR, position VARCHAR, total_goals VARCHAR)",
"question": "What was the club career for players in positions of DF, fewer than 18 total goals, fewer than 129 league appearances, and more than 7 league goals?"
} |
### QUESTION
What is the total number of Years that has the Group, Method Fest Independent Film Festival?
### CONTEXT
CREATE TABLE table_name_45 (year VARCHAR, group VARCHAR)
### ANSWER
SELECT COUNT(year) FROM table_name_45 WHERE group = "method fest independent film festival"</s> | {
"answer": "SELECT COUNT(year) FROM table_name_45 WHERE group = \"method fest independent film festival\"",
"context": "CREATE TABLE table_name_45 (year VARCHAR, group VARCHAR)",
"question": "What is the total number of Years that has the Group, Method Fest Independent Film Festival?"
} |
### QUESTION
What is the average Year that has the Group, Logie Award, the Award, Most Outstanding Actor, and the Result, nominated?
### CONTEXT
CREATE TABLE table_name_79 (year INTEGER, result VARCHAR, group VARCHAR, award VARCHAR)
### ANSWER
SELECT AVG(year) FROM table_name_79 WHERE group = "logie award" AND award = "most outstanding actor" AND result = "nominated"</s> | {
"answer": "SELECT AVG(year) FROM table_name_79 WHERE group = \"logie award\" AND award = \"most outstanding actor\" AND result = \"nominated\"",
"context": "CREATE TABLE table_name_79 (year INTEGER, result VARCHAR, group VARCHAR, award VARCHAR)",
"question": "What is the average Year that has the Group, Logie Award, the Award, Most Outstanding Actor, and the Result, nominated?"
} |
### QUESTION
Before 2012, which Group has the Result, nominated, the Film/Show, East West 101, and the Award, Best Lead Actor in A Television Drama?
### CONTEXT
CREATE TABLE table_name_31 (group VARCHAR, award VARCHAR, film_show VARCHAR, result VARCHAR, year VARCHAR)
### ANSWER
SELECT group FROM table_name_31 WHERE result = "nominated" AND year < 2012 AND film_show = "east west 101" AND award = "best lead actor in a television drama"</s> | {
"answer": "SELECT group FROM table_name_31 WHERE result = \"nominated\" AND year < 2012 AND film_show = \"east west 101\" AND award = \"best lead actor in a television drama\"",
"context": "CREATE TABLE table_name_31 (group VARCHAR, award VARCHAR, film_show VARCHAR, result VARCHAR, year VARCHAR)",
"question": "Before 2012, which Group has the Result, nominated, the Film/Show, East West 101, and the Award, Best Lead Actor in A Television Drama?"
} |
### QUESTION
What is the Award, when the Film/Show is East West 101, and when the year is before 2009, and when the Group is Logie Award?
### CONTEXT
CREATE TABLE table_name_96 (award VARCHAR, group VARCHAR, film_show VARCHAR, year VARCHAR)
### ANSWER
SELECT award FROM table_name_96 WHERE film_show = "east west 101" AND year < 2009 AND group = "logie award"</s> | {
"answer": "SELECT award FROM table_name_96 WHERE film_show = \"east west 101\" AND year < 2009 AND group = \"logie award\"",
"context": "CREATE TABLE table_name_96 (award VARCHAR, group VARCHAR, film_show VARCHAR, year VARCHAR)",
"question": "What is the Award, when the Film/Show is East West 101, and when the year is before 2009, and when the Group is Logie Award?"
} |
### QUESTION
What is the current version of windows 8 with an RTM build of 9200?
### CONTEXT
CREATE TABLE table_name_14 (current_version VARCHAR, rtm_build VARCHAR, name VARCHAR)
### ANSWER
SELECT current_version FROM table_name_14 WHERE rtm_build = "9200" AND name = "windows 8"</s> | {
"answer": "SELECT current_version FROM table_name_14 WHERE rtm_build = \"9200\" AND name = \"windows 8\"",
"context": "CREATE TABLE table_name_14 (current_version VARCHAR, rtm_build VARCHAR, name VARCHAR)",
"question": "What is the current version of windows 8 with an RTM build of 9200?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.