question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
what is the record when the opponent is jeff williams? | CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_37 WHERE opponent = "jeff williams" | ### Context: CREATE TABLE table_name_37 (record VARCHAR, opponent VARCHAR) ### Question: what is the record when the opponent is jeff williams? ### Answer: SELECT record FROM table_name_37 WHERE opponent = "jeff williams" |
what is the method for round 1 and the opponent is bobby mcmaster? | CREATE TABLE table_name_97 (method VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT method FROM table_name_97 WHERE round = 1 AND opponent = "bobby mcmaster" | ### Context: CREATE TABLE table_name_97 (method VARCHAR, round VARCHAR, opponent VARCHAR) ### Question: what is the method for round 1 and the opponent is bobby mcmaster? ### Answer: SELECT method FROM table_name_97 WHERE round = 1 AND opponent = "bobby mcmaster" |
what is the location when the time is 3:15? | CREATE TABLE table_name_7 (location VARCHAR, time VARCHAR) | SELECT location FROM table_name_7 WHERE time = "3:15" | ### Context: CREATE TABLE table_name_7 (location VARCHAR, time VARCHAR) ### Question: what is the location when the time is 3:15? ### Answer: SELECT location FROM table_name_7 WHERE time = "3:15" |
what is the record when the round is before 3 and the time si 4:59? | CREATE TABLE table_name_41 (record VARCHAR, round VARCHAR, time VARCHAR) | SELECT record FROM table_name_41 WHERE round < 3 AND time = "4:59" | ### Context: CREATE TABLE table_name_41 (record VARCHAR, round VARCHAR, time VARCHAR) ### Question: what is the record when the round is before 3 and the time si 4:59? ### Answer: SELECT record FROM table_name_41 WHERE round < 3 AND time = "4:59" |
what is the record when the event is shido usa mma and the opponent is raphael assunção? | CREATE TABLE table_name_24 (record VARCHAR, event VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_24 WHERE event = "shido usa mma" AND opponent = "raphael assunção" | ### Context: CREATE TABLE table_name_24 (record VARCHAR, event VARCHAR, opponent VARCHAR) ### Question: what is the record when the event is shido usa mma and the opponent is raphael assunção? ### Answer: SELECT record FROM table_name_24 WHERE event = "shido usa mma" AND opponent = "raphael assunção" |
How much money did Ben Crenshaw earn? | CREATE TABLE table_name_58 (money___$__ VARCHAR, player VARCHAR) | SELECT money___$__ FROM table_name_58 WHERE player = "ben crenshaw" | ### Context: CREATE TABLE table_name_58 (money___$__ VARCHAR, player VARCHAR) ### Question: How much money did Ben Crenshaw earn? ### Answer: SELECT money___$__ FROM table_name_58 WHERE player = "ben crenshaw" |
what is the competition when the score is 2-1? | CREATE TABLE table_name_28 (competition VARCHAR, score VARCHAR) | SELECT competition FROM table_name_28 WHERE score = "2-1" | ### Context: CREATE TABLE table_name_28 (competition VARCHAR, score VARCHAR) ### Question: what is the competition when the score is 2-1? ### Answer: SELECT competition FROM table_name_28 WHERE score = "2-1" |
what is the venue when the score is 10-0 on 1997-06-22? | CREATE TABLE table_name_15 (venue VARCHAR, score VARCHAR, date VARCHAR) | SELECT venue FROM table_name_15 WHERE score = "10-0" AND date = "1997-06-22" | ### Context: CREATE TABLE table_name_15 (venue VARCHAR, score VARCHAR, date VARCHAR) ### Question: what is the venue when the score is 10-0 on 1997-06-22? ### Answer: SELECT venue FROM table_name_15 WHERE score = "10-0" AND date = "1997-06-22" |
what is the venue when the competition is 1996 afc asian cup group stage? | CREATE TABLE table_name_66 (venue VARCHAR, competition VARCHAR) | SELECT venue FROM table_name_66 WHERE competition = "1996 afc asian cup group stage" | ### Context: CREATE TABLE table_name_66 (venue VARCHAR, competition VARCHAR) ### Question: what is the venue when the competition is 1996 afc asian cup group stage? ### Answer: SELECT venue FROM table_name_66 WHERE competition = "1996 afc asian cup group stage" |
what is the competition when the date is 1995-08-06? | CREATE TABLE table_name_35 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_35 WHERE date = "1995-08-06" | ### Context: CREATE TABLE table_name_35 (competition VARCHAR, date VARCHAR) ### Question: what is the competition when the date is 1995-08-06? ### Answer: SELECT competition FROM table_name_35 WHERE date = "1995-08-06" |
What is the total number of weeks that the Giants played against the Dallas Cowboys? | CREATE TABLE table_name_25 (week VARCHAR, opponent VARCHAR) | SELECT COUNT(week) FROM table_name_25 WHERE opponent = "dallas cowboys" | ### Context: CREATE TABLE table_name_25 (week VARCHAR, opponent VARCHAR) ### Question: What is the total number of weeks that the Giants played against the Dallas Cowboys? ### Answer: SELECT COUNT(week) FROM table_name_25 WHERE opponent = "dallas cowboys" |
Which Home has an Away of hispano? | CREATE TABLE table_name_62 (home VARCHAR, away VARCHAR) | SELECT home FROM table_name_62 WHERE away = "hispano" | ### Context: CREATE TABLE table_name_62 (home VARCHAR, away VARCHAR) ### Question: Which Home has an Away of hispano? ### Answer: SELECT home FROM table_name_62 WHERE away = "hispano" |
What engine has the Mercedes AMG Petronas f1 team, and 93 points? | CREATE TABLE table_name_1 (engine VARCHAR, entrant VARCHAR, points VARCHAR) | SELECT engine FROM table_name_1 WHERE entrant = "mercedes amg petronas f1 team" AND points = "93" | ### Context: CREATE TABLE table_name_1 (engine VARCHAR, entrant VARCHAR, points VARCHAR) ### Question: What engine has the Mercedes AMG Petronas f1 team, and 93 points? ### Answer: SELECT engine FROM table_name_1 WHERE entrant = "mercedes amg petronas f1 team" AND points = "93" |
Which Chassis has 4 points? | CREATE TABLE table_name_32 (chassis VARCHAR, points VARCHAR) | SELECT chassis FROM table_name_32 WHERE points = "4" | ### Context: CREATE TABLE table_name_32 (chassis VARCHAR, points VARCHAR) ### Question: Which Chassis has 4 points? ### Answer: SELECT chassis FROM table_name_32 WHERE points = "4" |
What is Opponent, when Year is greater than 2009, and when Score is 7–5, 6–7 (6–8) , 6–1? | CREATE TABLE table_name_64 (opponent VARCHAR, year VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_64 WHERE year > 2009 AND score = "7–5, 6–7 (6–8) , 6–1" | ### Context: CREATE TABLE table_name_64 (opponent VARCHAR, year VARCHAR, score VARCHAR) ### Question: What is Opponent, when Year is greater than 2009, and when Score is 7–5, 6–7 (6–8) , 6–1? ### Answer: SELECT opponent FROM table_name_64 WHERE year > 2009 AND score = "7–5, 6–7 (6–8) , 6–1" |
What is the lowest Year, when Surface is Hard, and when Opponent is Dinara Safina? | CREATE TABLE table_name_3 (year INTEGER, surface VARCHAR, opponent VARCHAR) | SELECT MIN(year) FROM table_name_3 WHERE surface = "hard" AND opponent = "dinara safina" | ### Context: CREATE TABLE table_name_3 (year INTEGER, surface VARCHAR, opponent VARCHAR) ### Question: What is the lowest Year, when Surface is Hard, and when Opponent is Dinara Safina? ### Answer: SELECT MIN(year) FROM table_name_3 WHERE surface = "hard" AND opponent = "dinara safina" |
What is Surface, when Championship is Australian Open? | CREATE TABLE table_name_49 (surface VARCHAR, championship VARCHAR) | SELECT surface FROM table_name_49 WHERE championship = "australian open" | ### Context: CREATE TABLE table_name_49 (surface VARCHAR, championship VARCHAR) ### Question: What is Surface, when Championship is Australian Open? ### Answer: SELECT surface FROM table_name_49 WHERE championship = "australian open" |
What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6–2, 2–6, 7–5? | CREATE TABLE table_name_63 (outcome VARCHAR, opponent VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_63 WHERE opponent = "victoria azarenka" AND score = "6–2, 2–6, 7–5" | ### Context: CREATE TABLE table_name_63 (outcome VARCHAR, opponent VARCHAR, score VARCHAR) ### Question: What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6–2, 2–6, 7–5? ### Answer: SELECT outcome FROM table_name_63 WHERE opponent = "victoria azarenka" AND score = "6–2, 2–6, 7–5" |
WHAT SERIES WAS RELEASED BY ITV STUDIOS AND A RELEASE DATE OF AUGUST 15, 2012? | CREATE TABLE table_name_47 (series VARCHAR, released_by VARCHAR, release_date VARCHAR) | SELECT series FROM table_name_47 WHERE released_by = "itv studios" AND release_date = "august 15, 2012" | ### Context: CREATE TABLE table_name_47 (series VARCHAR, released_by VARCHAR, release_date VARCHAR) ### Question: WHAT SERIES WAS RELEASED BY ITV STUDIOS AND A RELEASE DATE OF AUGUST 15, 2012? ### Answer: SELECT series FROM table_name_47 WHERE released_by = "itv studios" AND release_date = "august 15, 2012" |
WHAT IS THE EPISODE NUMBER THAT HAS 28 DVD? | CREATE TABLE table_name_78 (episode_no VARCHAR, no_of_dvds VARCHAR) | SELECT episode_no FROM table_name_78 WHERE no_of_dvds = "28" | ### Context: CREATE TABLE table_name_78 (episode_no VARCHAR, no_of_dvds VARCHAR) ### Question: WHAT IS THE EPISODE NUMBER THAT HAS 28 DVD? ### Answer: SELECT episode_no FROM table_name_78 WHERE no_of_dvds = "28" |
WHAT EPISODE HAS A REGION NUMBER BIGGER THAN 1, AND 32 DVDS? | CREATE TABLE table_name_58 (episode_no VARCHAR, region_no VARCHAR, no_of_dvds VARCHAR) | SELECT episode_no FROM table_name_58 WHERE region_no > 1 AND no_of_dvds = "32" | ### Context: CREATE TABLE table_name_58 (episode_no VARCHAR, region_no VARCHAR, no_of_dvds VARCHAR) ### Question: WHAT EPISODE HAS A REGION NUMBER BIGGER THAN 1, AND 32 DVDS? ### Answer: SELECT episode_no FROM table_name_58 WHERE region_no > 1 AND no_of_dvds = "32" |
What is Duration, when Test Flight is Taxi Test #2? | CREATE TABLE table_name_20 (duration VARCHAR, test_flight VARCHAR) | SELECT duration FROM table_name_20 WHERE test_flight = "taxi test #2" | ### Context: CREATE TABLE table_name_20 (duration VARCHAR, test_flight VARCHAR) ### Question: What is Duration, when Test Flight is Taxi Test #2? ### Answer: SELECT duration FROM table_name_20 WHERE test_flight = "taxi test #2" |
What it Duration, when Test Flight is Free Flight #3? | CREATE TABLE table_name_79 (duration VARCHAR, test_flight VARCHAR) | SELECT duration FROM table_name_79 WHERE test_flight = "free flight #3" | ### Context: CREATE TABLE table_name_79 (duration VARCHAR, test_flight VARCHAR) ### Question: What it Duration, when Test Flight is Free Flight #3? ### Answer: SELECT duration FROM table_name_79 WHERE test_flight = "free flight #3" |
What is Date, when Comment is Tailcone On, Lakebed Landing, and when Duration is 5min 34 s? | CREATE TABLE table_name_52 (date VARCHAR, comment VARCHAR, duration VARCHAR) | SELECT date FROM table_name_52 WHERE comment = "tailcone on, lakebed landing" AND duration = "5min 34 s" | ### Context: CREATE TABLE table_name_52 (date VARCHAR, comment VARCHAR, duration VARCHAR) ### Question: What is Date, when Comment is Tailcone On, Lakebed Landing, and when Duration is 5min 34 s? ### Answer: SELECT date FROM table_name_52 WHERE comment = "tailcone on, lakebed landing" AND duration = "5min 34 s" |
What is Crew, when Date is July 26, 1977? | CREATE TABLE table_name_61 (crew VARCHAR, date VARCHAR) | SELECT crew FROM table_name_61 WHERE date = "july 26, 1977" | ### Context: CREATE TABLE table_name_61 (crew VARCHAR, date VARCHAR) ### Question: What is Crew, when Date is July 26, 1977? ### Answer: SELECT crew FROM table_name_61 WHERE date = "july 26, 1977" |
What is Years, when Nationality is United States, and when Position is PG / SG? | CREATE TABLE table_name_83 (years VARCHAR, nationality VARCHAR, position VARCHAR) | SELECT years FROM table_name_83 WHERE nationality = "united states" AND position = "pg / sg" | ### Context: CREATE TABLE table_name_83 (years VARCHAR, nationality VARCHAR, position VARCHAR) ### Question: What is Years, when Nationality is United States, and when Position is PG / SG? ### Answer: SELECT years FROM table_name_83 WHERE nationality = "united states" AND position = "pg / sg" |
What is Nationality, when Years is 1979? | CREATE TABLE table_name_73 (nationality VARCHAR, years VARCHAR) | SELECT nationality FROM table_name_73 WHERE years = "1979" | ### Context: CREATE TABLE table_name_73 (nationality VARCHAR, years VARCHAR) ### Question: What is Nationality, when Years is 1979? ### Answer: SELECT nationality FROM table_name_73 WHERE years = "1979" |
WHAT SCORE HAS A TIME OF 18:27? | CREATE TABLE table_name_95 (score VARCHAR, time VARCHAR) | SELECT score FROM table_name_95 WHERE time = "18:27" | ### Context: CREATE TABLE table_name_95 (score VARCHAR, time VARCHAR) ### Question: WHAT SCORE HAS A TIME OF 18:27? ### Answer: SELECT score FROM table_name_95 WHERE time = "18:27" |
WHAT GOAL HAS A TIME OF 39:37? | CREATE TABLE table_name_45 (goal VARCHAR, time VARCHAR) | SELECT goal FROM table_name_45 WHERE time = "39:37" | ### Context: CREATE TABLE table_name_45 (goal VARCHAR, time VARCHAR) ### Question: WHAT GOAL HAS A TIME OF 39:37? ### Answer: SELECT goal FROM table_name_45 WHERE time = "39:37" |
What is Electorate, when Party is "Country", when State is "WA", and when Member is "John Hallett"? | CREATE TABLE table_name_39 (electorate VARCHAR, member VARCHAR, party VARCHAR, state VARCHAR) | SELECT electorate FROM table_name_39 WHERE party = "country" AND state = "wa" AND member = "john hallett" | ### Context: CREATE TABLE table_name_39 (electorate VARCHAR, member VARCHAR, party VARCHAR, state VARCHAR) ### Question: What is Electorate, when Party is "Country", when State is "WA", and when Member is "John Hallett"? ### Answer: SELECT electorate FROM table_name_39 WHERE party = "country" AND state = "wa" AND member = "john hallett" |
What is Term of Office, when Member is "Dominic Costa"? | CREATE TABLE table_name_64 (term_of_office VARCHAR, member VARCHAR) | SELECT term_of_office FROM table_name_64 WHERE member = "dominic costa" | ### Context: CREATE TABLE table_name_64 (term_of_office VARCHAR, member VARCHAR) ### Question: What is Term of Office, when Member is "Dominic Costa"? ### Answer: SELECT term_of_office FROM table_name_64 WHERE member = "dominic costa" |
What is State, when Member is "Gil Duthie"? | CREATE TABLE table_name_6 (state VARCHAR, member VARCHAR) | SELECT state FROM table_name_6 WHERE member = "gil duthie" | ### Context: CREATE TABLE table_name_6 (state VARCHAR, member VARCHAR) ### Question: What is State, when Member is "Gil Duthie"? ### Answer: SELECT state FROM table_name_6 WHERE member = "gil duthie" |
What was the number of attendance at Stadion with a score of 2-0 | CREATE TABLE table_name_90 (attendance VARCHAR, venue VARCHAR, score VARCHAR) | SELECT attendance FROM table_name_90 WHERE venue = "stadion" AND score = "2-0" | ### Context: CREATE TABLE table_name_90 (attendance VARCHAR, venue VARCHAR, score VARCHAR) ### Question: What was the number of attendance at Stadion with a score of 2-0 ### Answer: SELECT attendance FROM table_name_90 WHERE venue = "stadion" AND score = "2-0" |
What season did the Rangers win? | CREATE TABLE table_name_1 (season VARCHAR, winner VARCHAR) | SELECT season FROM table_name_1 WHERE winner = "rangers" | ### Context: CREATE TABLE table_name_1 (season VARCHAR, winner VARCHAR) ### Question: What season did the Rangers win? ### Answer: SELECT season FROM table_name_1 WHERE winner = "rangers" |
What is the score of the game with Falkirk as the runner-up? | CREATE TABLE table_name_48 (score VARCHAR, runner_up VARCHAR) | SELECT score FROM table_name_48 WHERE runner_up = "falkirk" | ### Context: CREATE TABLE table_name_48 (score VARCHAR, runner_up VARCHAR) ### Question: What is the score of the game with Falkirk as the runner-up? ### Answer: SELECT score FROM table_name_48 WHERE runner_up = "falkirk" |
What is the venue of the game where hibernian won and the rangers were the runner-up? | CREATE TABLE table_name_15 (venue VARCHAR, runner_up VARCHAR, winner VARCHAR) | SELECT venue FROM table_name_15 WHERE runner_up = "rangers" AND winner = "hibernian" | ### Context: CREATE TABLE table_name_15 (venue VARCHAR, runner_up VARCHAR, winner VARCHAR) ### Question: What is the venue of the game where hibernian won and the rangers were the runner-up? ### Answer: SELECT venue FROM table_name_15 WHERE runner_up = "rangers" AND winner = "hibernian" |
what is the country for the 1972 winter olympics? | CREATE TABLE table_name_7 (country VARCHAR, winter_olympics VARCHAR) | SELECT country FROM table_name_7 WHERE winter_olympics = 1972 | ### Context: CREATE TABLE table_name_7 (country VARCHAR, winter_olympics VARCHAR) ### Question: what is the country for the 1972 winter olympics? ### Answer: SELECT country FROM table_name_7 WHERE winter_olympics = 1972 |
what is the winter olympics year when the fis nordic world ski championships is 1976? | CREATE TABLE table_name_45 (winter_olympics VARCHAR, fis_nordic_world_ski_championships VARCHAR) | SELECT winter_olympics FROM table_name_45 WHERE fis_nordic_world_ski_championships = "1976" | ### Context: CREATE TABLE table_name_45 (winter_olympics VARCHAR, fis_nordic_world_ski_championships VARCHAR) ### Question: what is the winter olympics year when the fis nordic world ski championships is 1976? ### Answer: SELECT winter_olympics FROM table_name_45 WHERE fis_nordic_world_ski_championships = "1976" |
what is the earliest winter olympics when the fis nordic world ski championships is 1976? | CREATE TABLE table_name_39 (winter_olympics INTEGER, fis_nordic_world_ski_championships VARCHAR) | SELECT MIN(winter_olympics) FROM table_name_39 WHERE fis_nordic_world_ski_championships = "1976" | ### Context: CREATE TABLE table_name_39 (winter_olympics INTEGER, fis_nordic_world_ski_championships VARCHAR) ### Question: what is the earliest winter olympics when the fis nordic world ski championships is 1976? ### Answer: SELECT MIN(winter_olympics) FROM table_name_39 WHERE fis_nordic_world_ski_championships = "1976" |
what is the winter olympics when the country is soviet union and holmenkollen is 1970, 1979? | CREATE TABLE table_name_5 (winter_olympics INTEGER, country VARCHAR, holmenkollen VARCHAR) | SELECT SUM(winter_olympics) FROM table_name_5 WHERE country = "soviet union" AND holmenkollen = "1970, 1979" | ### Context: CREATE TABLE table_name_5 (winter_olympics INTEGER, country VARCHAR, holmenkollen VARCHAR) ### Question: what is the winter olympics when the country is soviet union and holmenkollen is 1970, 1979? ### Answer: SELECT SUM(winter_olympics) FROM table_name_5 WHERE country = "soviet union" AND holmenkollen = "1970, 1979" |
what is the date when the away team is newport county? | CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_98 WHERE away_team = "newport county" | ### Context: CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR) ### Question: what is the date when the away team is newport county? ### Answer: SELECT date FROM table_name_98 WHERE away_team = "newport county" |
How many games have 5 goals and less than 8 assists? | CREATE TABLE table_name_20 (games VARCHAR, goals VARCHAR, assists VARCHAR) | SELECT COUNT(games) FROM table_name_20 WHERE goals = 5 AND assists < 8 | ### Context: CREATE TABLE table_name_20 (games VARCHAR, goals VARCHAR, assists VARCHAR) ### Question: How many games have 5 goals and less than 8 assists? ### Answer: SELECT COUNT(games) FROM table_name_20 WHERE goals = 5 AND assists < 8 |
What is the highest number of goals Eisbären Berlin had along with 13 points and 10 assists? | CREATE TABLE table_name_4 (goals INTEGER, club VARCHAR, points VARCHAR, assists VARCHAR) | SELECT MAX(goals) FROM table_name_4 WHERE points = 13 AND assists = 10 AND club = "eisbären berlin" | ### Context: CREATE TABLE table_name_4 (goals INTEGER, club VARCHAR, points VARCHAR, assists VARCHAR) ### Question: What is the highest number of goals Eisbären Berlin had along with 13 points and 10 assists? ### Answer: SELECT MAX(goals) FROM table_name_4 WHERE points = 13 AND assists = 10 AND club = "eisbären berlin" |
What is Ivan Ciernik's average points with less than 11 goals? | CREATE TABLE table_name_29 (points INTEGER, player VARCHAR, goals VARCHAR) | SELECT AVG(points) FROM table_name_29 WHERE player = "ivan ciernik" AND goals < 11 | ### Context: CREATE TABLE table_name_29 (points INTEGER, player VARCHAR, goals VARCHAR) ### Question: What is Ivan Ciernik's average points with less than 11 goals? ### Answer: SELECT AVG(points) FROM table_name_29 WHERE player = "ivan ciernik" AND goals < 11 |
Which province is Parun in? | CREATE TABLE table_name_98 (province VARCHAR, centers VARCHAR) | SELECT province FROM table_name_98 WHERE centers = "parun" | ### Context: CREATE TABLE table_name_98 (province VARCHAR, centers VARCHAR) ### Question: Which province is Parun in? ### Answer: SELECT province FROM table_name_98 WHERE centers = "parun" |
In which category is Frank Scarabino a pilot? | CREATE TABLE table_name_33 (category VARCHAR, pilot VARCHAR) | SELECT category FROM table_name_33 WHERE pilot = "frank scarabino" | ### Context: CREATE TABLE table_name_33 (category VARCHAR, pilot VARCHAR) ### Question: In which category is Frank Scarabino a pilot? ### Answer: SELECT category FROM table_name_33 WHERE pilot = "frank scarabino" |
What is the sum of speed in km per hour reached by John Egginton? | CREATE TABLE table_name_43 (speed__km_h_ INTEGER, pilot VARCHAR) | SELECT SUM(speed__km_h_) FROM table_name_43 WHERE pilot = "john egginton" | ### Context: CREATE TABLE table_name_43 (speed__km_h_ INTEGER, pilot VARCHAR) ### Question: What is the sum of speed in km per hour reached by John Egginton? ### Answer: SELECT SUM(speed__km_h_) FROM table_name_43 WHERE pilot = "john egginton" |
What is the name of team 1 that was after the 2005 season and with a 4-2 score? | CREATE TABLE table_name_11 (team_1 VARCHAR, season VARCHAR, score VARCHAR) | SELECT team_1 FROM table_name_11 WHERE season > 2005 AND score = "4-2" | ### Context: CREATE TABLE table_name_11 (team_1 VARCHAR, season VARCHAR, score VARCHAR) ### Question: What is the name of team 1 that was after the 2005 season and with a 4-2 score? ### Answer: SELECT team_1 FROM table_name_11 WHERE season > 2005 AND score = "4-2" |
In the 2004 season with a 0-2 score what was the name of the venue? | CREATE TABLE table_name_5 (venue VARCHAR, score VARCHAR, season VARCHAR) | SELECT venue FROM table_name_5 WHERE score = "0-2" AND season = 2004 | ### Context: CREATE TABLE table_name_5 (venue VARCHAR, score VARCHAR, season VARCHAR) ### Question: In the 2004 season with a 0-2 score what was the name of the venue? ### Answer: SELECT venue FROM table_name_5 WHERE score = "0-2" AND season = 2004 |
What is the earliest season that Pisico Bình ðinh is team 2? | CREATE TABLE table_name_95 (season INTEGER, team_2 VARCHAR) | SELECT MIN(season) FROM table_name_95 WHERE team_2 = "pisico bình ðinh" | ### Context: CREATE TABLE table_name_95 (season INTEGER, team_2 VARCHAR) ### Question: What is the earliest season that Pisico Bình ðinh is team 2? ### Answer: SELECT MIN(season) FROM table_name_95 WHERE team_2 = "pisico bình ðinh" |
Which years have a rank less than 2? | CREATE TABLE table_name_88 (years VARCHAR, rank INTEGER) | SELECT years FROM table_name_88 WHERE rank < 2 | ### Context: CREATE TABLE table_name_88 (years VARCHAR, rank INTEGER) ### Question: Which years have a rank less than 2? ### Answer: SELECT years FROM table_name_88 WHERE rank < 2 |
How many games have rebounds larger than 1048? | CREATE TABLE table_name_78 (games VARCHAR, total_rebounds INTEGER) | SELECT COUNT(games) FROM table_name_78 WHERE total_rebounds > 1048 | ### Context: CREATE TABLE table_name_78 (games VARCHAR, total_rebounds INTEGER) ### Question: How many games have rebounds larger than 1048? ### Answer: SELECT COUNT(games) FROM table_name_78 WHERE total_rebounds > 1048 |
How many rebounds have a Player of andre gaddy, and a Rank smaller than 6? | CREATE TABLE table_name_5 (total_rebounds VARCHAR, player VARCHAR, rank VARCHAR) | SELECT COUNT(total_rebounds) FROM table_name_5 WHERE player = "andre gaddy" AND rank < 6 | ### Context: CREATE TABLE table_name_5 (total_rebounds VARCHAR, player VARCHAR, rank VARCHAR) ### Question: How many rebounds have a Player of andre gaddy, and a Rank smaller than 6? ### Answer: SELECT COUNT(total_rebounds) FROM table_name_5 WHERE player = "andre gaddy" AND rank < 6 |
How many rebounds have a Player of herb estes? | CREATE TABLE table_name_51 (total_rebounds VARCHAR, player VARCHAR) | SELECT COUNT(total_rebounds) FROM table_name_51 WHERE player = "herb estes" | ### Context: CREATE TABLE table_name_51 (total_rebounds VARCHAR, player VARCHAR) ### Question: How many rebounds have a Player of herb estes? ### Answer: SELECT COUNT(total_rebounds) FROM table_name_51 WHERE player = "herb estes" |
What is the total of rebound averages with more than 98 games and a rank of 7? | CREATE TABLE table_name_16 (reb_avg INTEGER, games VARCHAR, rank VARCHAR) | SELECT SUM(reb_avg) FROM table_name_16 WHERE games > 98 AND rank = 7 | ### Context: CREATE TABLE table_name_16 (reb_avg INTEGER, games VARCHAR, rank VARCHAR) ### Question: What is the total of rebound averages with more than 98 games and a rank of 7? ### Answer: SELECT SUM(reb_avg) FROM table_name_16 WHERE games > 98 AND rank = 7 |
Can you tell me the Date that has the Team of golden state? | CREATE TABLE table_name_21 (date VARCHAR, team VARCHAR) | SELECT date FROM table_name_21 WHERE team = "golden state" | ### Context: CREATE TABLE table_name_21 (date VARCHAR, team VARCHAR) ### Question: Can you tell me the Date that has the Team of golden state? ### Answer: SELECT date FROM table_name_21 WHERE team = "golden state" |
Can you tell me the High assists that has the Date of november 25? | CREATE TABLE table_name_44 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_name_44 WHERE date = "november 25" | ### Context: CREATE TABLE table_name_44 (high_assists VARCHAR, date VARCHAR) ### Question: Can you tell me the High assists that has the Date of november 25? ### Answer: SELECT high_assists FROM table_name_44 WHERE date = "november 25" |
Can you tell me the Team that has the High rebounds of antawn jamison (10), and the Date of november 5? | CREATE TABLE table_name_91 (team VARCHAR, high_rebounds VARCHAR, date VARCHAR) | SELECT team FROM table_name_91 WHERE high_rebounds = "antawn jamison (10)" AND date = "november 5" | ### Context: CREATE TABLE table_name_91 (team VARCHAR, high_rebounds VARCHAR, date VARCHAR) ### Question: Can you tell me the Team that has the High rebounds of antawn jamison (10), and the Date of november 5? ### Answer: SELECT team FROM table_name_91 WHERE high_rebounds = "antawn jamison (10)" AND date = "november 5" |
Can you tell me the High rebounds that has the Date of november 5? | CREATE TABLE table_name_16 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_name_16 WHERE date = "november 5" | ### Context: CREATE TABLE table_name_16 (high_rebounds VARCHAR, date VARCHAR) ### Question: Can you tell me the High rebounds that has the Date of november 5? ### Answer: SELECT high_rebounds FROM table_name_16 WHERE date = "november 5" |
WHAT IS THE TEAM WITH astc round 1? | CREATE TABLE table_name_56 (team VARCHAR, series VARCHAR) | SELECT team FROM table_name_56 WHERE series = "astc round 1" | ### Context: CREATE TABLE table_name_56 (team VARCHAR, series VARCHAR) ### Question: WHAT IS THE TEAM WITH astc round 1? ### Answer: SELECT team FROM table_name_56 WHERE series = "astc round 1" |
WHAT IS THE WINNER WITH ATCC ROUND 6? | CREATE TABLE table_name_59 (winner VARCHAR, series VARCHAR) | SELECT winner FROM table_name_59 WHERE series = "atcc round 6" | ### Context: CREATE TABLE table_name_59 (winner VARCHAR, series VARCHAR) ### Question: WHAT IS THE WINNER WITH ATCC ROUND 6? ### Answer: SELECT winner FROM table_name_59 WHERE series = "atcc round 6" |
What was the highest attendance for the game where the record was 0-5 and the opponents scored more than 20 points? | CREATE TABLE table_name_85 (attendance INTEGER, record VARCHAR, opponents VARCHAR) | SELECT MAX(attendance) FROM table_name_85 WHERE record = "0-5" AND opponents > 20 | ### Context: CREATE TABLE table_name_85 (attendance INTEGER, record VARCHAR, opponents VARCHAR) ### Question: What was the highest attendance for the game where the record was 0-5 and the opponents scored more than 20 points? ### Answer: SELECT MAX(attendance) FROM table_name_85 WHERE record = "0-5" AND opponents > 20 |
What is the street address of Notre Dame Basilica? | CREATE TABLE table_name_74 (street_address VARCHAR, name VARCHAR) | SELECT street_address FROM table_name_74 WHERE name = "notre dame basilica" | ### Context: CREATE TABLE table_name_74 (street_address VARCHAR, name VARCHAR) ### Question: What is the street address of Notre Dame Basilica? ### Answer: SELECT street_address FROM table_name_74 WHERE name = "notre dame basilica" |
What is the Region, when the Catalog is SM 2965-05? | CREATE TABLE table_name_5 (region VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_5 WHERE catalog = "sm 2965-05" | ### Context: CREATE TABLE table_name_5 (region VARCHAR, catalog VARCHAR) ### Question: What is the Region, when the Catalog is SM 2965-05? ### Answer: SELECT region FROM table_name_5 WHERE catalog = "sm 2965-05" |
What is the Region, when the Catalog is 25AP 301? | CREATE TABLE table_name_61 (region VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_61 WHERE catalog = "25ap 301" | ### Context: CREATE TABLE table_name_61 (region VARCHAR, catalog VARCHAR) ### Question: What is the Region, when the Catalog is 25AP 301? ### Answer: SELECT region FROM table_name_61 WHERE catalog = "25ap 301" |
What is Date, when Catalog is EPC 81436? | CREATE TABLE table_name_97 (date VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_97 WHERE catalog = "epc 81436" | ### Context: CREATE TABLE table_name_97 (date VARCHAR, catalog VARCHAR) ### Question: What is Date, when Catalog is EPC 81436? ### Answer: SELECT date FROM table_name_97 WHERE catalog = "epc 81436" |
What is Label, when Format is Double CD? | CREATE TABLE table_name_33 (label VARCHAR, format VARCHAR) | SELECT label FROM table_name_33 WHERE format = "double cd" | ### Context: CREATE TABLE table_name_33 (label VARCHAR, format VARCHAR) ### Question: What is Label, when Format is Double CD? ### Answer: SELECT label FROM table_name_33 WHERE format = "double cd" |
What is Label, when Region is Japan? | CREATE TABLE table_name_40 (label VARCHAR, region VARCHAR) | SELECT label FROM table_name_40 WHERE region = "japan" | ### Context: CREATE TABLE table_name_40 (label VARCHAR, region VARCHAR) ### Question: What is Label, when Region is Japan? ### Answer: SELECT label FROM table_name_40 WHERE region = "japan" |
What is Format, when Region is United States? | CREATE TABLE table_name_11 (format VARCHAR, region VARCHAR) | SELECT format FROM table_name_11 WHERE region = "united states" | ### Context: CREATE TABLE table_name_11 (format VARCHAR, region VARCHAR) ### Question: What is Format, when Region is United States? ### Answer: SELECT format FROM table_name_11 WHERE region = "united states" |
What was the date of appointment for the manager of lecce when the previous manager's contract expired? | CREATE TABLE table_name_79 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR) | SELECT date_of_appointment FROM table_name_79 WHERE manner_of_departure = "contract expired" AND team = "lecce" | ### Context: CREATE TABLE table_name_79 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR) ### Question: What was the date of appointment for the manager of lecce when the previous manager's contract expired? ### Answer: SELECT date_of_appointment FROM table_name_79 WHERE manner_of_departure = "contract expired" AND team = "lecce" |
What was the manner of departure for the outgoing manager, davide ballardini? | CREATE TABLE table_name_92 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT manner_of_departure FROM table_name_92 WHERE outgoing_manager = "davide ballardini" | ### Context: CREATE TABLE table_name_92 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) ### Question: What was the manner of departure for the outgoing manager, davide ballardini? ### Answer: SELECT manner_of_departure FROM table_name_92 WHERE outgoing_manager = "davide ballardini" |
What was the manner of departure for the outgoing manager, giuseppe iachini? | CREATE TABLE table_name_77 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT manner_of_departure FROM table_name_77 WHERE outgoing_manager = "giuseppe iachini" | ### Context: CREATE TABLE table_name_77 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) ### Question: What was the manner of departure for the outgoing manager, giuseppe iachini? ### Answer: SELECT manner_of_departure FROM table_name_77 WHERE outgoing_manager = "giuseppe iachini" |
What is the date of appointment for the outgoing manager edoardo reja? | CREATE TABLE table_name_49 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) | SELECT date_of_appointment FROM table_name_49 WHERE outgoing_manager = "edoardo reja" | ### Context: CREATE TABLE table_name_49 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) ### Question: What is the date of appointment for the outgoing manager edoardo reja? ### Answer: SELECT date_of_appointment FROM table_name_49 WHERE outgoing_manager = "edoardo reja" |
At what event did he fight matt eckerle? | CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR) | SELECT event FROM table_name_55 WHERE opponent = "matt eckerle" | ### Context: CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR) ### Question: At what event did he fight matt eckerle? ### Answer: SELECT event FROM table_name_55 WHERE opponent = "matt eckerle" |
What is the highest Round that lasted 1:44? | CREATE TABLE table_name_94 (round INTEGER, time VARCHAR) | SELECT MAX(round) FROM table_name_94 WHERE time = "1:44" | ### Context: CREATE TABLE table_name_94 (round INTEGER, time VARCHAR) ### Question: What is the highest Round that lasted 1:44? ### Answer: SELECT MAX(round) FROM table_name_94 WHERE time = "1:44" |
What is the number for the interview in Illinois when the preliminary is less than 8.558? | CREATE TABLE table_name_51 (interview INTEGER, country VARCHAR, preliminary VARCHAR) | SELECT SUM(interview) FROM table_name_51 WHERE country = "illinois" AND preliminary < 8.558 | ### Context: CREATE TABLE table_name_51 (interview INTEGER, country VARCHAR, preliminary VARCHAR) ### Question: What is the number for the interview in Illinois when the preliminary is less than 8.558? ### Answer: SELECT SUM(interview) FROM table_name_51 WHERE country = "illinois" AND preliminary < 8.558 |
What is the name of the country with less than 9.033 for swimsuit, 8.611 for interview and preliminary is less than 8.87? | CREATE TABLE table_name_50 (country VARCHAR, preliminary VARCHAR, swimsuit VARCHAR, interview VARCHAR) | SELECT country FROM table_name_50 WHERE swimsuit < 9.033 AND interview = 8.611 AND preliminary < 8.87 | ### Context: CREATE TABLE table_name_50 (country VARCHAR, preliminary VARCHAR, swimsuit VARCHAR, interview VARCHAR) ### Question: What is the name of the country with less than 9.033 for swimsuit, 8.611 for interview and preliminary is less than 8.87? ### Answer: SELECT country FROM table_name_50 WHERE swimsuit < 9.033 AND interview = 8.611 AND preliminary < 8.87 |
What is the evening gown number when the average is more than 8.984 in Louisiana and the preliminary is more than 8.597? | CREATE TABLE table_name_60 (evening_gown VARCHAR, preliminary VARCHAR, average VARCHAR, country VARCHAR) | SELECT COUNT(evening_gown) FROM table_name_60 WHERE average > 8.984 AND country = "louisiana" AND preliminary > 8.597 | ### Context: CREATE TABLE table_name_60 (evening_gown VARCHAR, preliminary VARCHAR, average VARCHAR, country VARCHAR) ### Question: What is the evening gown number when the average is more than 8.984 in Louisiana and the preliminary is more than 8.597? ### Answer: SELECT COUNT(evening_gown) FROM table_name_60 WHERE average > 8.984 AND country = "louisiana" AND preliminary > 8.597 |
What is the interview number in Louisiana, and the swimsuit number is more than 9.1? | CREATE TABLE table_name_19 (interview VARCHAR, country VARCHAR, swimsuit VARCHAR) | SELECT COUNT(interview) FROM table_name_19 WHERE country = "louisiana" AND swimsuit > 9.1 | ### Context: CREATE TABLE table_name_19 (interview VARCHAR, country VARCHAR, swimsuit VARCHAR) ### Question: What is the interview number in Louisiana, and the swimsuit number is more than 9.1? ### Answer: SELECT COUNT(interview) FROM table_name_19 WHERE country = "louisiana" AND swimsuit > 9.1 |
What is the swimsuit number when the preliminary is 8.721, and the average is more than 8.781? | CREATE TABLE table_name_98 (swimsuit VARCHAR, preliminary VARCHAR, average VARCHAR) | SELECT COUNT(swimsuit) FROM table_name_98 WHERE preliminary = 8.721 AND average > 8.781 | ### Context: CREATE TABLE table_name_98 (swimsuit VARCHAR, preliminary VARCHAR, average VARCHAR) ### Question: What is the swimsuit number when the preliminary is 8.721, and the average is more than 8.781? ### Answer: SELECT COUNT(swimsuit) FROM table_name_98 WHERE preliminary = 8.721 AND average > 8.781 |
Where was the game played on 30 May 2004? | CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_6 WHERE date = "30 may 2004" | ### Context: CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR) ### Question: Where was the game played on 30 May 2004? ### Answer: SELECT venue FROM table_name_6 WHERE date = "30 may 2004" |
Who was Silva's Partner in the Amarante Tournament played on a Hard Surface? | CREATE TABLE table_name_35 (partner VARCHAR, surface VARCHAR, tournament VARCHAR) | SELECT partner FROM table_name_35 WHERE surface = "hard" AND tournament = "amarante" | ### Context: CREATE TABLE table_name_35 (partner VARCHAR, surface VARCHAR, tournament VARCHAR) ### Question: Who was Silva's Partner in the Amarante Tournament played on a Hard Surface? ### Answer: SELECT partner FROM table_name_35 WHERE surface = "hard" AND tournament = "amarante" |
Who was Silva's Partner in the match with a Score of 6–3, 7–6 (7–3)? | CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR) | SELECT partner FROM table_name_64 WHERE score = "6–3, 7–6 (7–3)" | ### Context: CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR) ### Question: Who was Silva's Partner in the match with a Score of 6–3, 7–6 (7–3)? ### Answer: SELECT partner FROM table_name_64 WHERE score = "6–3, 7–6 (7–3)" |
On what Date was the match with partner Kira Nagy? | CREATE TABLE table_name_77 (date VARCHAR, partner VARCHAR) | SELECT date FROM table_name_77 WHERE partner = "kira nagy" | ### Context: CREATE TABLE table_name_77 (date VARCHAR, partner VARCHAR) ### Question: On what Date was the match with partner Kira Nagy? ### Answer: SELECT date FROM table_name_77 WHERE partner = "kira nagy" |
What is the Date of the Vigo Tournament? | CREATE TABLE table_name_65 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_65 WHERE tournament = "vigo" | ### Context: CREATE TABLE table_name_65 (date VARCHAR, tournament VARCHAR) ### Question: What is the Date of the Vigo Tournament? ### Answer: SELECT date FROM table_name_65 WHERE tournament = "vigo" |
What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade? | CREATE TABLE table_name_33 (tournament VARCHAR, partner VARCHAR, opponent_in_the_final VARCHAR) | SELECT tournament FROM table_name_33 WHERE partner = "nicole thijssen" AND opponent_in_the_final = "nina bratchikova & frederica piedade" | ### Context: CREATE TABLE table_name_33 (tournament VARCHAR, partner VARCHAR, opponent_in_the_final VARCHAR) ### Question: What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade? ### Answer: SELECT tournament FROM table_name_33 WHERE partner = "nicole thijssen" AND opponent_in_the_final = "nina bratchikova & frederica piedade" |
What is Name, when State is "Jin"? | CREATE TABLE table_name_55 (name VARCHAR, state VARCHAR) | SELECT name FROM table_name_55 WHERE state = "jin" | ### Context: CREATE TABLE table_name_55 (name VARCHAR, state VARCHAR) ### Question: What is Name, when State is "Jin"? ### Answer: SELECT name FROM table_name_55 WHERE state = "jin" |
What is Name, when Royal House is "Ji", and when State is "Cai"? | CREATE TABLE table_name_93 (name VARCHAR, royal_house VARCHAR, state VARCHAR) | SELECT name FROM table_name_93 WHERE royal_house = "ji" AND state = "cai" | ### Context: CREATE TABLE table_name_93 (name VARCHAR, royal_house VARCHAR, state VARCHAR) ### Question: What is Name, when Royal House is "Ji", and when State is "Cai"? ### Answer: SELECT name FROM table_name_93 WHERE royal_house = "ji" AND state = "cai" |
Which Ratio has a Similar ISO A size of a3? | CREATE TABLE table_name_76 (ratio INTEGER, similar_iso_a_size VARCHAR) | SELECT AVG(ratio) FROM table_name_76 WHERE similar_iso_a_size = "a3" | ### Context: CREATE TABLE table_name_76 (ratio INTEGER, similar_iso_a_size VARCHAR) ### Question: Which Ratio has a Similar ISO A size of a3? ### Answer: SELECT AVG(ratio) FROM table_name_76 WHERE similar_iso_a_size = "a3" |
Which mm × mm has an in × in of 11 × 17? | CREATE TABLE table_name_7 (mm_×_mm VARCHAR, in_×_in VARCHAR) | SELECT mm_×_mm FROM table_name_7 WHERE in_×_in = "11 × 17" | ### Context: CREATE TABLE table_name_7 (mm_×_mm VARCHAR, in_×_in VARCHAR) ### Question: Which mm × mm has an in × in of 11 × 17? ### Answer: SELECT mm_×_mm FROM table_name_7 WHERE in_×_in = "11 × 17" |
Which Ratio has a Name of ansi e? | CREATE TABLE table_name_67 (ratio INTEGER, name VARCHAR) | SELECT MIN(ratio) FROM table_name_67 WHERE name = "ansi e" | ### Context: CREATE TABLE table_name_67 (ratio INTEGER, name VARCHAR) ### Question: Which Ratio has a Name of ansi e? ### Answer: SELECT MIN(ratio) FROM table_name_67 WHERE name = "ansi e" |
Which Ratio has an in × in of 17 × 22? | CREATE TABLE table_name_2 (ratio VARCHAR, in_×_in VARCHAR) | SELECT ratio FROM table_name_2 WHERE in_×_in = "17 × 22" | ### Context: CREATE TABLE table_name_2 (ratio VARCHAR, in_×_in VARCHAR) ### Question: Which Ratio has an in × in of 17 × 22? ### Answer: SELECT ratio FROM table_name_2 WHERE in_×_in = "17 × 22" |
What is the Distance of the 1945 Vuelta a Espana with 4A Stage? | CREATE TABLE table_name_20 (distance VARCHAR, stage VARCHAR) | SELECT distance FROM table_name_20 WHERE stage = "4a" | ### Context: CREATE TABLE table_name_20 (distance VARCHAR, stage VARCHAR) ### Question: What is the Distance of the 1945 Vuelta a Espana with 4A Stage? ### Answer: SELECT distance FROM table_name_20 WHERE stage = "4a" |
What earned has 5 for the rank? | CREATE TABLE table_name_21 (earned VARCHAR, rank VARCHAR) | SELECT earned FROM table_name_21 WHERE rank = 5 | ### Context: CREATE TABLE table_name_21 (earned VARCHAR, rank VARCHAR) ### Question: What earned has 5 for the rank? ### Answer: SELECT earned FROM table_name_21 WHERE rank = 5 |
What is the average earnings ($) that has meg mallon as the player, with a rank less than 9? | CREATE TABLE table_name_58 (earnings___ INTEGER, player VARCHAR, rank VARCHAR) | SELECT AVG(earnings___) AS $__ FROM table_name_58 WHERE player = "meg mallon" AND rank < 9 | ### Context: CREATE TABLE table_name_58 (earnings___ INTEGER, player VARCHAR, rank VARCHAR) ### Question: What is the average earnings ($) that has meg mallon as the player, with a rank less than 9? ### Answer: SELECT AVG(earnings___) AS $__ FROM table_name_58 WHERE player = "meg mallon" AND rank < 9 |
What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC? | CREATE TABLE table_name_85 (federal_excise_tax___cad INTEGER, minimum_tax_incl_sales_taxes__cad¢_l_ VARCHAR, total_excise_tax__cad¢_l_ VARCHAR, government VARCHAR) | SELECT AVG(federal_excise_tax___cad) AS ¢___l__ FROM table_name_85 WHERE total_excise_tax__cad¢_l_ > 33.2 AND government = "vancouver, bc" AND minimum_tax_incl_sales_taxes__cad¢_l_ < 41.01 | ### Context: CREATE TABLE table_name_85 (federal_excise_tax___cad INTEGER, minimum_tax_incl_sales_taxes__cad¢_l_ VARCHAR, total_excise_tax__cad¢_l_ VARCHAR, government VARCHAR) ### Question: What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC? ### Answer: SELECT AVG(federal_excise_tax___cad) AS ¢___l__ FROM table_name_85 WHERE total_excise_tax__cad¢_l_ > 33.2 AND government = "vancouver, bc" AND minimum_tax_incl_sales_taxes__cad¢_l_ < 41.01 |
What is the least minimum sales tax when the min tax is 105.7 and fed tax is more than 10? | CREATE TABLE table_name_27 (minimum_tax_incl_sales_taxes__cad INTEGER, min_tax__cad¢_us_gal_ VARCHAR, federal_excise_tax___cad¢___l__ VARCHAR) | SELECT MIN(minimum_tax_incl_sales_taxes__cad) AS ¢_l_ FROM table_name_27 WHERE min_tax__cad¢_us_gal_ = 105.7 AND federal_excise_tax___cad¢___l__ > 10 | ### Context: CREATE TABLE table_name_27 (minimum_tax_incl_sales_taxes__cad INTEGER, min_tax__cad¢_us_gal_ VARCHAR, federal_excise_tax___cad¢___l__ VARCHAR) ### Question: What is the least minimum sales tax when the min tax is 105.7 and fed tax is more than 10? ### Answer: SELECT MIN(minimum_tax_incl_sales_taxes__cad) AS ¢_l_ FROM table_name_27 WHERE min_tax__cad¢_us_gal_ = 105.7 AND federal_excise_tax___cad¢___l__ > 10 |
What is the 1991 when 1992 and 1990 are 1R? | CREATE TABLE table_name_69 (Id VARCHAR) | SELECT 1991 FROM table_name_69 WHERE 1992 = "1r" AND 1990 = "1r" | ### Context: CREATE TABLE table_name_69 (Id VARCHAR) ### Question: What is the 1991 when 1992 and 1990 are 1R? ### Answer: SELECT 1991 FROM table_name_69 WHERE 1992 = "1r" AND 1990 = "1r" |
What is the 1991 when 1990 is ATP Masters Series? | CREATE TABLE table_name_53 (Id VARCHAR) | SELECT 1991 FROM table_name_53 WHERE 1990 = "atp masters series" | ### Context: CREATE TABLE table_name_53 (Id VARCHAR) ### Question: What is the 1991 when 1990 is ATP Masters Series? ### Answer: SELECT 1991 FROM table_name_53 WHERE 1990 = "atp masters series" |
What is the 1995 when the 1991 is Grand Slams? | CREATE TABLE table_name_77 (Id VARCHAR) | SELECT 1995 FROM table_name_77 WHERE 1991 = "grand slams" | ### Context: CREATE TABLE table_name_77 (Id VARCHAR) ### Question: What is the 1995 when the 1991 is Grand Slams? ### Answer: SELECT 1995 FROM table_name_77 WHERE 1991 = "grand slams" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.