combined_text stringlengths 106 1.05k |
|---|
###question:what is the record when the opponent is jeff williams?###answer:SELECT record FROM table_name_37 WHERE opponent = "jeff williams"###context:CREATE TABLE table_name_37 (record 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"###context:CREATE TABLE table_name_97 (method VARCHAR, round VARCHAR, opponent VARCHAR) |
###question:what is the location when the time is 3:15?###answer:SELECT location FROM table_name_7 WHERE time = "3:15"###context:CREATE TABLE table_name_7 (location 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"###context:CREATE TABLE table_name_41 (record VARCHAR, round VARCHAR, time 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"###context:CREATE TABLE table_name_24 (record VARCHAR, event VARCHAR, opponent VARCHAR) |
###question:How much money did Ben Crenshaw earn?###answer:SELECT money___$__ FROM table_name_58 WHERE player = "ben crenshaw"###context:CREATE TABLE table_name_58 (money___$__ VARCHAR, player VARCHAR) |
###question:what is the competition when the score is 2-1?###answer:SELECT competition FROM table_name_28 WHERE score = "2-1"###context:CREATE TABLE table_name_28 (competition VARCHAR, score 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"###context:CREATE TABLE table_name_15 (venue VARCHAR, score VARCHAR, date 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"###context:CREATE TABLE table_name_66 (venue VARCHAR, competition 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"###context:CREATE TABLE table_name_35 (competition VARCHAR, date 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"###context:CREATE TABLE table_name_25 (week VARCHAR, opponent VARCHAR) |
###question:Which Home has an Away of hispano?###answer:SELECT home FROM table_name_62 WHERE away = "hispano"###context:CREATE TABLE table_name_62 (home VARCHAR, away 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"###context:CREATE TABLE table_name_1 (engine VARCHAR, entrant VARCHAR, points VARCHAR) |
###question:Which Chassis has 4 points?###answer:SELECT chassis FROM table_name_32 WHERE points = "4"###context:CREATE TABLE table_name_32 (chassis VARCHAR, points 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"###context:CREATE TABLE table_name_64 (opponent VARCHAR, year VARCHAR, score 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"###context:CREATE TABLE table_name_3 (year INTEGER, surface VARCHAR, opponent VARCHAR) |
###question:What is Surface, when Championship is Australian Open?###answer:SELECT surface FROM table_name_49 WHERE championship = "australian open"###context:CREATE TABLE table_name_49 (surface VARCHAR, championship 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"###context:CREATE TABLE table_name_63 (outcome VARCHAR, opponent VARCHAR, score 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"###context:CREATE TABLE table_name_47 (series VARCHAR, released_by VARCHAR, release_date VARCHAR) |
###question:WHAT IS THE EPISODE NUMBER THAT HAS 28 DVD?###answer: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 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"###context:CREATE TABLE table_name_58 (episode_no VARCHAR, region_no VARCHAR, no_of_dvds 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"###context:CREATE TABLE table_name_20 (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"###context:CREATE TABLE table_name_79 (duration VARCHAR, test_flight 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"###context:CREATE TABLE table_name_52 (date VARCHAR, comment VARCHAR, duration VARCHAR) |
###question:What is Crew, when Date is July 26, 1977?###answer:SELECT crew FROM table_name_61 WHERE date = "july 26, 1977"###context:CREATE TABLE table_name_61 (crew VARCHAR, date 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"###context:CREATE TABLE table_name_83 (years VARCHAR, nationality VARCHAR, position VARCHAR) |
###question:What is Nationality, when Years is 1979?###answer:SELECT nationality FROM table_name_73 WHERE years = "1979"###context:CREATE TABLE table_name_73 (nationality VARCHAR, years VARCHAR) |
###question:WHAT SCORE HAS A TIME OF 18:27?###answer:SELECT score FROM table_name_95 WHERE time = "18:27"###context:CREATE TABLE table_name_95 (score VARCHAR, time VARCHAR) |
###question:WHAT GOAL HAS A TIME OF 39:37?###answer:SELECT goal FROM table_name_45 WHERE time = "39:37"###context:CREATE TABLE table_name_45 (goal VARCHAR, time 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"###context:CREATE TABLE table_name_39 (electorate VARCHAR, member VARCHAR, party VARCHAR, stat... |
###question:What is Term of Office, when Member is "Dominic Costa"?###answer: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 State, when Member is "Gil Duthie"?###answer:SELECT state FROM table_name_6 WHERE member = "gil duthie"###context:CREATE TABLE table_name_6 (state VARCHAR, member 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"###context:CREATE TABLE table_name_90 (attendance VARCHAR, venue VARCHAR, score VARCHAR) |
###question:What season did the Rangers win?###answer:SELECT season FROM table_name_1 WHERE winner = "rangers"###context:CREATE TABLE table_name_1 (season VARCHAR, winner 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"###context:CREATE TABLE table_name_48 (score VARCHAR, runner_up 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"###context:CREATE TABLE table_name_15 (venue VARCHAR, runner_up VARCHAR, winner VARCHAR) |
###question:what is the country for the 1972 winter olympics?###answer: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 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"###context:CREATE TABLE table_name_45 (winter_olympics VARCHAR, 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"###context:CREATE TABLE table_name_39 (winter_olympics INTEGER, fis_nordic_world_ski_championships 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"###context:CREATE TABLE table_name_5 (winter_olympics INTEGER, country VARCHAR, holmenkollen VARCH... |
###question:what is the date when the away team is newport county?###answer:SELECT date FROM table_name_98 WHERE away_team = "newport county"###context:CREATE TABLE table_name_98 (date VARCHAR, away_team 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###context:CREATE TABLE table_name_20 (games VARCHAR, goals 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"###context:CREATE TABLE table_name_4 (goals INTEGER, club VARCHAR, points VARCHAR, assists 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###context:CREATE TABLE table_name_29 (points INTEGER, player VARCHAR, goals VARCHAR) |
###question:Which province is Parun in?###answer:SELECT province FROM table_name_98 WHERE centers = "parun"###context:CREATE TABLE table_name_98 (province VARCHAR, centers VARCHAR) |
###question:In which category is Frank Scarabino a pilot?###answer:SELECT category FROM table_name_33 WHERE pilot = "frank scarabino"###context:CREATE TABLE table_name_33 (category VARCHAR, 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"###context:CREATE TABLE table_name_43 (speed__km_h_ INTEGER, pilot 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"###context:CREATE TABLE table_name_11 (team_1 VARCHAR, season VARCHAR, score 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###context:CREATE TABLE table_name_5 (venue VARCHAR, score VARCHAR, season 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"###context:CREATE TABLE table_name_95 (season INTEGER, team_2 VARCHAR) |
###question:Which years have a rank less than 2?###answer:SELECT years FROM table_name_88 WHERE rank < 2###context:CREATE TABLE table_name_88 (years VARCHAR, rank INTEGER) |
###question:How many games have rebounds larger than 1048?###answer: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 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###context:CREATE TABLE table_name_5 (total_rebounds VARCHAR, player VARCHAR, rank VARCHAR) |
###question:How many rebounds have a Player of herb estes?###answer:SELECT COUNT(total_rebounds) FROM table_name_51 WHERE player = "herb estes"###context:CREATE TABLE table_name_51 (total_rebounds VARCHAR, player 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###context:CREATE TABLE table_name_16 (reb_avg INTEGER, games VARCHAR, rank 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"###context:CREATE TABLE table_name_21 (date VARCHAR, team 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"###context:CREATE TABLE table_name_44 (high_assists 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"###context:CREATE TABLE table_name_91 (team VARCHAR, 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"###context:CREATE TABLE table_name_16 (high_rebounds VARCHAR, date VARCHAR) |
###question:WHAT IS THE TEAM WITH astc round 1?###answer: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 WINNER WITH ATCC ROUND 6?###answer:SELECT winner FROM table_name_59 WHERE series = "atcc round 6"###context:CREATE TABLE table_name_59 (winner VARCHAR, series 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###context:CREATE TABLE table_name_85 (attendance INTEGER, record VARCHAR, opponents VARCHAR) |
###question:What is the street address of Notre Dame Basilica?###answer: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 Region, when the Catalog is SM 2965-05?###answer: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 25AP 301?###answer:SELECT region FROM table_name_61 WHERE catalog = "25ap 301"###context:CREATE TABLE table_name_61 (region VARCHAR, catalog VARCHAR) |
###question:What is Date, when Catalog is EPC 81436?###answer:SELECT date FROM table_name_97 WHERE catalog = "epc 81436"###context:CREATE TABLE table_name_97 (date VARCHAR, catalog VARCHAR) |
###question:What is Label, when Format is Double CD?###answer: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 Region is Japan?###answer:SELECT label FROM table_name_40 WHERE region = "japan"###context:CREATE TABLE table_name_40 (label VARCHAR, region VARCHAR) |
###question:What is Format, when Region is United States?###answer:SELECT format FROM table_name_11 WHERE region = "united states"###context:CREATE TABLE table_name_11 (format VARCHAR, region 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"###context:CREATE TABLE table_name_79 (date_of_appointment VARCHAR, manner_of_depart... |
###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"###context:CREATE TABLE table_name_92 (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"###context:CREATE TABLE table_name_77 (manner_of_departure 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"###context:CREATE TABLE table_name_49 (date_of_appointment VARCHAR, outgoing_manager VARCHAR) |
###question:At what event did he fight matt eckerle?###answer:SELECT event FROM table_name_55 WHERE opponent = "matt eckerle"###context:CREATE TABLE table_name_55 (event VARCHAR, opponent VARCHAR) |
###question:What is the highest Round that lasted 1:44?###answer: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 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###context:CREATE TABLE table_name_51 (interview INTEGER, country VARCHAR, preliminary 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###context:CREATE TABLE table_name_50 (country VARCHAR, preliminary 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###context:CREATE TABLE table_name_60 (evening_gown 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###context:CREATE TABLE table_name_19 (interview VARCHAR, country VARCHAR, swimsuit 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###context:CREATE TABLE table_name_98 (swimsuit VARCHAR, preliminary VARCHAR, average VARCHAR) |
###question:Where was the game played on 30 May 2004?###answer:SELECT venue FROM table_name_6 WHERE date = "30 may 2004"###context:CREATE TABLE table_name_6 (venue VARCHAR, date 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"###context:CREATE TABLE table_name_35 (partner VARCHAR, surface VARCHAR, tournament 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)"###context:CREATE TABLE table_name_64 (partner VARCHAR, score VARCHAR) |
###question:On what Date was the match with partner Kira Nagy?###answer:SELECT date FROM table_name_77 WHERE partner = "kira nagy"###context:CREATE TABLE table_name_77 (date VARCHAR, partner VARCHAR) |
###question:What is the Date of the Vigo Tournament?###answer:SELECT date FROM table_name_65 WHERE tournament = "vigo"###context:CREATE TABLE table_name_65 (date VARCHAR, tournament 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"###context:CREATE TABLE table_name_33 (tou... |
###question:What is Name, when State is "Jin"?###answer:SELECT name FROM table_name_55 WHERE state = "jin"###context:CREATE TABLE table_name_55 (name 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"###context:CREATE TABLE table_name_93 (name VARCHAR, royal_house VARCHAR, state 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"###context:CREATE TABLE table_name_76 (ratio INTEGER, similar_iso_a_size 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"###context:CREATE TABLE table_name_7 (mm_×_mm VARCHAR, in_×_in VARCHAR) |
###question:Which Ratio has a Name of ansi e?###answer: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 an in × in of 17 × 22?###answer:SELECT ratio FROM table_name_2 WHERE in_×_in = "17 × 22"###context:CREATE TABLE table_name_2 (ratio VARCHAR, in_×_in 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"###context:CREATE TABLE table_name_20 (distance VARCHAR, stage VARCHAR) |
###question:What earned has 5 for the rank?###answer:SELECT earned FROM table_name_21 WHERE rank = 5###context:CREATE TABLE table_name_21 (earned 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###context:CREATE TABLE table_name_58 (earnings___ INTEGER, player VARCHAR, rank 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_ <... |
###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###context:CREATE TABLE table_name_27 (minimum_tax_incl_sal... |
###question:What is the 1991 when 1992 and 1990 are 1R?###answer: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 1990 is ATP Masters Series?###answer:SELECT 1991 FROM table_name_53 WHERE 1990 = "atp masters series"###context:CREATE TABLE table_name_53 (Id VARCHAR) |
###question:What is the 1995 when the 1991 is Grand Slams?###answer:SELECT 1995 FROM table_name_77 WHERE 1991 = "grand slams"###context:CREATE TABLE table_name_77 (Id VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.