question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
What is the word form for the ALA-LC transliteration of muay bân? | CREATE TABLE table_name_79 (word_form VARCHAR, ala_lc VARCHAR) | SELECT word_form FROM table_name_79 WHERE ala_lc = "muay bân" | ### Context: CREATE TABLE table_name_79 (word_form VARCHAR, ala_lc VARCHAR) ### Question: What is the word form for the ALA-LC transliteration of muay bân? ### Answer: SELECT word_form FROM table_name_79 WHERE ala_lc = "muay bân" |
Name the loss when the record is 76-81 | CREATE TABLE table_name_1 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_1 WHERE record = "76-81" | ### Context: CREATE TABLE table_name_1 (loss VARCHAR, record VARCHAR) ### Question: Name the loss when the record is 76-81 ### Answer: SELECT loss FROM table_name_1 WHERE record = "76-81" |
Which average bronze had a silver greater than 2 and a gold larger than 7? | CREATE TABLE table_name_9 (bronze INTEGER, silver VARCHAR, gold VARCHAR) | SELECT AVG(bronze) FROM table_name_9 WHERE silver > 2 AND gold > 7 | ### Context: CREATE TABLE table_name_9 (bronze INTEGER, silver VARCHAR, gold VARCHAR) ### Question: Which average bronze had a silver greater than 2 and a gold larger than 7? ### Answer: SELECT AVG(bronze) FROM table_name_9 WHERE silver > 2 AND gold > 7 |
When the total was 11 and silver was greater than 4 what was the highest gold? | CREATE TABLE table_name_15 (gold INTEGER, total VARCHAR, silver VARCHAR) | SELECT MAX(gold) FROM table_name_15 WHERE total = 11 AND silver > 4 | ### Context: CREATE TABLE table_name_15 (gold INTEGER, total VARCHAR, silver VARCHAR) ### Question: When the total was 11 and silver was greater than 4 what was the highest gold? ### Answer: SELECT MAX(gold) FROM table_name_15 WHERE total = 11 AND silver > 4 |
How many bronze had a total less than 4 and gold bigger than 1? | CREATE TABLE table_name_43 (bronze VARCHAR, total VARCHAR, gold VARCHAR) | SELECT COUNT(bronze) FROM table_name_43 WHERE total < 4 AND gold > 1 | ### Context: CREATE TABLE table_name_43 (bronze VARCHAR, total VARCHAR, gold VARCHAR) ### Question: How many bronze had a total less than 4 and gold bigger than 1? ### Answer: SELECT COUNT(bronze) FROM table_name_43 WHERE total < 4 AND gold > 1 |
What is the enrollment associated with a capacity greater then 35,650? | CREATE TABLE table_name_46 (enrollment INTEGER, capacity INTEGER) | SELECT MIN(enrollment) FROM table_name_46 WHERE capacity > 35 OFFSET 650 | ### Context: CREATE TABLE table_name_46 (enrollment INTEGER, capacity INTEGER) ### Question: What is the enrollment associated with a capacity greater then 35,650? ### Answer: SELECT MIN(enrollment) FROM table_name_46 WHERE capacity > 35 OFFSET 650 |
Which Date has an Opposing Pitcher of jack morris, and an Inning of 4th? | CREATE TABLE table_name_88 (date VARCHAR, opposing_pitcher VARCHAR, inning VARCHAR) | SELECT date FROM table_name_88 WHERE opposing_pitcher = "jack morris" AND inning = "4th" | ### Context: CREATE TABLE table_name_88 (date VARCHAR, opposing_pitcher VARCHAR, inning VARCHAR) ### Question: Which Date has an Opposing Pitcher of jack morris, and an Inning of 4th? ### Answer: SELECT date FROM table_name_88 WHERE opposing_pitcher = "jack morris" AND inning = "4th" |
Which average Home Run has a Game of 89? | CREATE TABLE table_name_55 (home_run INTEGER, game VARCHAR) | SELECT AVG(home_run) FROM table_name_55 WHERE game = 89 | ### Context: CREATE TABLE table_name_55 (home_run INTEGER, game VARCHAR) ### Question: Which average Home Run has a Game of 89? ### Answer: SELECT AVG(home_run) FROM table_name_55 WHERE game = 89 |
Which team has a Home Run of 27? | CREATE TABLE table_name_18 (team VARCHAR, home_run VARCHAR) | SELECT team FROM table_name_18 WHERE home_run = 27 | ### Context: CREATE TABLE table_name_18 (team VARCHAR, home_run VARCHAR) ### Question: Which team has a Home Run of 27? ### Answer: SELECT team FROM table_name_18 WHERE home_run = 27 |
Which Assist/pass has a Score of 1-0, and a Goal of 5? | CREATE TABLE table_name_85 (assist_pass VARCHAR, score VARCHAR, goal VARCHAR) | SELECT assist_pass FROM table_name_85 WHERE score = "1-0" AND goal = "5" | ### Context: CREATE TABLE table_name_85 (assist_pass VARCHAR, score VARCHAR, goal VARCHAR) ### Question: Which Assist/pass has a Score of 1-0, and a Goal of 5? ### Answer: SELECT assist_pass FROM table_name_85 WHERE score = "1-0" AND goal = "5" |
Which Assist/pass has a Result of 6-2? | CREATE TABLE table_name_73 (assist_pass VARCHAR, result VARCHAR) | SELECT assist_pass FROM table_name_73 WHERE result = "6-2" | ### Context: CREATE TABLE table_name_73 (assist_pass VARCHAR, result VARCHAR) ### Question: Which Assist/pass has a Result of 6-2? ### Answer: SELECT assist_pass FROM table_name_73 WHERE result = "6-2" |
Which Assist/pass has a Goal of 5? | CREATE TABLE table_name_31 (assist_pass VARCHAR, goal VARCHAR) | SELECT assist_pass FROM table_name_31 WHERE goal = "5" | ### Context: CREATE TABLE table_name_31 (assist_pass VARCHAR, goal VARCHAR) ### Question: Which Assist/pass has a Goal of 5? ### Answer: SELECT assist_pass FROM table_name_31 WHERE goal = "5" |
Which location has a Goal of 2? | CREATE TABLE table_name_25 (location VARCHAR, goal VARCHAR) | SELECT location FROM table_name_25 WHERE goal = "2" | ### Context: CREATE TABLE table_name_25 (location VARCHAR, goal VARCHAR) ### Question: Which location has a Goal of 2? ### Answer: SELECT location FROM table_name_25 WHERE goal = "2" |
Which lineup has a Location of usa virginia beach? | CREATE TABLE table_name_95 (lineup VARCHAR, location VARCHAR) | SELECT lineup FROM table_name_95 WHERE location = "usa virginia beach" | ### Context: CREATE TABLE table_name_95 (lineup VARCHAR, location VARCHAR) ### Question: Which lineup has a Location of usa virginia beach? ### Answer: SELECT lineup FROM table_name_95 WHERE location = "usa virginia beach" |
Which date had a score of 5-1? | CREATE TABLE table_name_20 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_20 WHERE score = "5-1" | ### Context: CREATE TABLE table_name_20 (date VARCHAR, score VARCHAR) ### Question: Which date had a score of 5-1? ### Answer: SELECT date FROM table_name_20 WHERE score = "5-1" |
What result had a score of 2-1? | CREATE TABLE table_name_73 (result VARCHAR, score VARCHAR) | SELECT result FROM table_name_73 WHERE score = "2-1" | ### Context: CREATE TABLE table_name_73 (result VARCHAR, score VARCHAR) ### Question: What result had a score of 2-1? ### Answer: SELECT result FROM table_name_73 WHERE score = "2-1" |
Which date had a score of 3-2? | CREATE TABLE table_name_52 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_52 WHERE score = "3-2" | ### Context: CREATE TABLE table_name_52 (date VARCHAR, score VARCHAR) ### Question: Which date had a score of 3-2? ### Answer: SELECT date FROM table_name_52 WHERE score = "3-2" |
What is the oldest model Porsche v12 that has points less than or equal to 0. | CREATE TABLE table_name_98 (year INTEGER, engine VARCHAR, pts VARCHAR) | SELECT MIN(year) FROM table_name_98 WHERE engine = "porsche v12" AND pts < 0 | ### Context: CREATE TABLE table_name_98 (year INTEGER, engine VARCHAR, pts VARCHAR) ### Question: What is the oldest model Porsche v12 that has points less than or equal to 0. ### Answer: SELECT MIN(year) FROM table_name_98 WHERE engine = "porsche v12" AND pts < 0 |
Which design uses the theme alpine skiing? | CREATE TABLE table_name_50 (design VARCHAR, theme VARCHAR) | SELECT design FROM table_name_50 WHERE theme = "alpine skiing" | ### Context: CREATE TABLE table_name_50 (design VARCHAR, theme VARCHAR) ### Question: Which design uses the theme alpine skiing? ### Answer: SELECT design FROM table_name_50 WHERE theme = "alpine skiing" |
When did the Theme of bobsleigh release? | CREATE TABLE table_name_56 (date_of_issue VARCHAR, theme VARCHAR) | SELECT date_of_issue FROM table_name_56 WHERE theme = "bobsleigh" | ### Context: CREATE TABLE table_name_56 (date_of_issue VARCHAR, theme VARCHAR) ### Question: When did the Theme of bobsleigh release? ### Answer: SELECT date_of_issue FROM table_name_56 WHERE theme = "bobsleigh" |
What is the highest pts after 1952 with connaught type a? | CREATE TABLE table_name_79 (pts INTEGER, year VARCHAR, chassis VARCHAR) | SELECT MAX(pts) FROM table_name_79 WHERE year > 1952 AND chassis = "connaught type a" | ### Context: CREATE TABLE table_name_79 (pts INTEGER, year VARCHAR, chassis VARCHAR) ### Question: What is the highest pts after 1952 with connaught type a? ### Answer: SELECT MAX(pts) FROM table_name_79 WHERE year > 1952 AND chassis = "connaught type a" |
Who did the Chiefs play in Week 8? | CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_30 WHERE week = 8 | ### Context: CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR) ### Question: Who did the Chiefs play in Week 8? ### Answer: SELECT opponent FROM table_name_30 WHERE week = 8 |
On what surface was the 26 August 2001 tournament played? | CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_68 WHERE date = "26 august 2001" | ### Context: CREATE TABLE table_name_68 (surface VARCHAR, date VARCHAR) ### Question: On what surface was the 26 August 2001 tournament played? ### Answer: SELECT surface FROM table_name_68 WHERE date = "26 august 2001" |
What is the average capacity for 150 suites? | CREATE TABLE table_name_46 (capacity INTEGER, suites VARCHAR) | SELECT AVG(capacity) FROM table_name_46 WHERE suites = "150" | ### Context: CREATE TABLE table_name_46 (capacity INTEGER, suites VARCHAR) ### Question: What is the average capacity for 150 suites? ### Answer: SELECT AVG(capacity) FROM table_name_46 WHERE suites = "150" |
Where is the Eren Talu bidding project located? | CREATE TABLE table_name_30 (location VARCHAR, project VARCHAR) | SELECT location FROM table_name_30 WHERE project = "eren talu bidding project" | ### Context: CREATE TABLE table_name_30 (location VARCHAR, project VARCHAR) ### Question: Where is the Eren Talu bidding project located? ### Answer: SELECT location FROM table_name_30 WHERE project = "eren talu bidding project" |
Which location has a capacity larger than 52,000? | CREATE TABLE table_name_94 (location VARCHAR, capacity INTEGER) | SELECT location FROM table_name_94 WHERE capacity > 52 OFFSET 000 | ### Context: CREATE TABLE table_name_94 (location VARCHAR, capacity INTEGER) ### Question: Which location has a capacity larger than 52,000? ### Answer: SELECT location FROM table_name_94 WHERE capacity > 52 OFFSET 000 |
What is the highest capacity in Aslantepe in 2002-2005? | CREATE TABLE table_name_97 (capacity INTEGER, location VARCHAR, year VARCHAR) | SELECT MAX(capacity) FROM table_name_97 WHERE location = "aslantepe" AND year = "2002-2005" | ### Context: CREATE TABLE table_name_97 (capacity INTEGER, location VARCHAR, year VARCHAR) ### Question: What is the highest capacity in Aslantepe in 2002-2005? ### Answer: SELECT MAX(capacity) FROM table_name_97 WHERE location = "aslantepe" AND year = "2002-2005" |
What is the UNGEGN, when the Khmer is greater than ១០០០០០០០០? | CREATE TABLE table_name_40 (ungegn VARCHAR, khmer INTEGER) | SELECT ungegn FROM table_name_40 WHERE khmer > ១០០០០០០០០ | ### Context: CREATE TABLE table_name_40 (ungegn VARCHAR, khmer INTEGER) ### Question: What is the UNGEGN, when the Khmer is greater than ១០០០០០០០០? ### Answer: SELECT ungegn FROM table_name_40 WHERE khmer > ១០០០០០០០០ |
What is the Word Form, when the Khmer is greater than ១០០០០០, and the UNGEGN is (muŏy) dáb leăn? | CREATE TABLE table_name_39 (word_form VARCHAR, khmer VARCHAR, ungegn VARCHAR) | SELECT word_form FROM table_name_39 WHERE khmer > ១០០០០០ AND ungegn = "(muŏy) dáb leăn" | ### Context: CREATE TABLE table_name_39 (word_form VARCHAR, khmer VARCHAR, ungegn VARCHAR) ### Question: What is the Word Form, when the Khmer is greater than ១០០០០០, and the UNGEGN is (muŏy) dáb leăn? ### Answer: SELECT word_form FROM table_name_39 WHERE khmer > ១០០០០០ AND ungegn = "(muŏy) dáb leăn" |
What is the UNGEGN, when the Value is 10 000? | CREATE TABLE table_name_34 (ungegn VARCHAR, value VARCHAR) | SELECT ungegn FROM table_name_34 WHERE value = "10 000" | ### Context: CREATE TABLE table_name_34 (ungegn VARCHAR, value VARCHAR) ### Question: What is the UNGEGN, when the Value is 10 000? ### Answer: SELECT ungegn FROM table_name_34 WHERE value = "10 000" |
Name the 2008 for wta premier mandatory tournaments of 2007 | CREATE TABLE table_name_77 (Id VARCHAR) | SELECT 2008 FROM table_name_77 WHERE 2007 = "wta premier mandatory tournaments" | ### Context: CREATE TABLE table_name_77 (Id VARCHAR) ### Question: Name the 2008 for wta premier mandatory tournaments of 2007 ### Answer: SELECT 2008 FROM table_name_77 WHERE 2007 = "wta premier mandatory tournaments" |
Name the tournament of beijing | CREATE TABLE table_name_71 (tournament VARCHAR) | SELECT 2011 FROM table_name_71 WHERE tournament = "beijing" | ### Context: CREATE TABLE table_name_71 (tournament VARCHAR) ### Question: Name the tournament of beijing ### Answer: SELECT 2011 FROM table_name_71 WHERE tournament = "beijing" |
Name the 2009 for 2007 of 2r and tournament of wimbledon | CREATE TABLE table_name_35 (tournament VARCHAR) | SELECT 2009 FROM table_name_35 WHERE 2007 = "2r" AND tournament = "wimbledon" | ### Context: CREATE TABLE table_name_35 (tournament VARCHAR) ### Question: Name the 2009 for 2007 of 2r and tournament of wimbledon ### Answer: SELECT 2009 FROM table_name_35 WHERE 2007 = "2r" AND tournament = "wimbledon" |
Name the 2011 for 2010 of olympic games | CREATE TABLE table_name_64 (Id VARCHAR) | SELECT 2011 FROM table_name_64 WHERE 2010 = "olympic games" | ### Context: CREATE TABLE table_name_64 (Id VARCHAR) ### Question: Name the 2011 for 2010 of olympic games ### Answer: SELECT 2011 FROM table_name_64 WHERE 2010 = "olympic games" |
Name the 2011 for tokyo tournament | CREATE TABLE table_name_62 (tournament VARCHAR) | SELECT 2011 FROM table_name_62 WHERE tournament = "tokyo" | ### Context: CREATE TABLE table_name_62 (tournament VARCHAR) ### Question: Name the 2011 for tokyo tournament ### Answer: SELECT 2011 FROM table_name_62 WHERE tournament = "tokyo" |
Name the 2009 for wta premier mandatory tournaments | CREATE TABLE table_name_99 (tournament VARCHAR) | SELECT 2009 FROM table_name_99 WHERE tournament = "wta premier mandatory tournaments" | ### Context: CREATE TABLE table_name_99 (tournament VARCHAR) ### Question: Name the 2009 for wta premier mandatory tournaments ### Answer: SELECT 2009 FROM table_name_99 WHERE tournament = "wta premier mandatory tournaments" |
Which year did Ray Crawford the Kurtis Kraft 500g chassis? | CREATE TABLE table_name_70 (year VARCHAR, chassis VARCHAR) | SELECT year FROM table_name_70 WHERE chassis = "kurtis kraft 500g" | ### Context: CREATE TABLE table_name_70 (year VARCHAR, chassis VARCHAR) ### Question: Which year did Ray Crawford the Kurtis Kraft 500g chassis? ### Answer: SELECT year FROM table_name_70 WHERE chassis = "kurtis kraft 500g" |
What city had a july high below 84, and a january low of 34.3? | CREATE TABLE table_name_84 (city VARCHAR, july__avg_high_°f_ VARCHAR, january__avg_low_°f_ VARCHAR) | SELECT city FROM table_name_84 WHERE july__avg_high_°f_ < 84 AND january__avg_low_°f_ = "34.3" | ### Context: CREATE TABLE table_name_84 (city VARCHAR, july__avg_high_°f_ VARCHAR, january__avg_low_°f_ VARCHAR) ### Question: What city had a july high below 84, and a january low of 34.3? ### Answer: SELECT city FROM table_name_84 WHERE july__avg_high_°f_ < 84 AND january__avg_low_°f_ = "34.3" |
What is the july average low associated with a january average high of 30.4? | CREATE TABLE table_name_28 (july__avg_low_ VARCHAR, january__avg_high_°f_ VARCHAR) | SELECT COUNT(july__avg_low_) AS °f_ FROM table_name_28 WHERE january__avg_high_°f_ = "30.4" | ### Context: CREATE TABLE table_name_28 (july__avg_low_ VARCHAR, january__avg_high_°f_ VARCHAR) ### Question: What is the july average low associated with a january average high of 30.4? ### Answer: SELECT COUNT(july__avg_low_) AS °f_ FROM table_name_28 WHERE january__avg_high_°f_ = "30.4" |
Which class has an identifier of CBUA-FM? | CREATE TABLE table_name_50 (class VARCHAR, identifier VARCHAR) | SELECT class FROM table_name_50 WHERE identifier = "cbua-fm" | ### Context: CREATE TABLE table_name_50 (class VARCHAR, identifier VARCHAR) ### Question: Which class has an identifier of CBUA-FM? ### Answer: SELECT class FROM table_name_50 WHERE identifier = "cbua-fm" |
What is the city of license for the frequency 90.1 FM? | CREATE TABLE table_name_15 (city_of_license VARCHAR, frequency VARCHAR) | SELECT city_of_license FROM table_name_15 WHERE frequency = "90.1 fm" | ### Context: CREATE TABLE table_name_15 (city_of_license VARCHAR, frequency VARCHAR) ### Question: What is the city of license for the frequency 90.1 FM? ### Answer: SELECT city_of_license FROM table_name_15 WHERE frequency = "90.1 fm" |
What is the power when the city of license is Beaver Creek? | CREATE TABLE table_name_50 (power VARCHAR, city_of_license VARCHAR) | SELECT power FROM table_name_50 WHERE city_of_license = "beaver creek" | ### Context: CREATE TABLE table_name_50 (power VARCHAR, city_of_license VARCHAR) ### Question: What is the power when the city of license is Beaver Creek? ### Answer: SELECT power FROM table_name_50 WHERE city_of_license = "beaver creek" |
What is the city of license when the class is LP and the identifier is CBDK? | CREATE TABLE table_name_70 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR) | SELECT city_of_license FROM table_name_70 WHERE class = "lp" AND identifier = "cbdk" | ### Context: CREATE TABLE table_name_70 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR) ### Question: What is the city of license when the class is LP and the identifier is CBDK? ### Answer: SELECT city_of_license FROM table_name_70 WHERE class = "lp" AND identifier = "cbdk" |
What is the class when the frequency is 560 AM? | CREATE TABLE table_name_57 (class VARCHAR, frequency VARCHAR) | SELECT class FROM table_name_57 WHERE frequency = "560 am" | ### Context: CREATE TABLE table_name_57 (class VARCHAR, frequency VARCHAR) ### Question: What is the class when the frequency is 560 AM? ### Answer: SELECT class FROM table_name_57 WHERE frequency = "560 am" |
What are the smallest assets with a Company of piraeus bank, and a Revenue (US$ billion) smaller than 3.9? | CREATE TABLE table_name_16 (assets__us INTEGER, company VARCHAR, revenues__us$_billion_ VARCHAR) | SELECT MIN(assets__us) AS $_billion_ FROM table_name_16 WHERE company = "piraeus bank" AND revenues__us$_billion_ < 3.9 | ### Context: CREATE TABLE table_name_16 (assets__us INTEGER, company VARCHAR, revenues__us$_billion_ VARCHAR) ### Question: What are the smallest assets with a Company of piraeus bank, and a Revenue (US$ billion) smaller than 3.9? ### Answer: SELECT MIN(assets__us) AS $_billion_ FROM table_name_16 WHERE company = "piraeus bank" AND revenues__us$_billion_ < 3.9 |
What is the average market value with a revenue greater than 6.2, a Company of national bank of greece, and a Rank smaller than 1? | CREATE TABLE table_name_87 (market_value__us INTEGER, rank VARCHAR, revenues__us$_billion_ VARCHAR, company VARCHAR) | SELECT AVG(market_value__us) AS $_billion_ FROM table_name_87 WHERE revenues__us$_billion_ > 6.2 AND company = "national bank of greece" AND rank < 1 | ### Context: CREATE TABLE table_name_87 (market_value__us INTEGER, rank VARCHAR, revenues__us$_billion_ VARCHAR, company VARCHAR) ### Question: What is the average market value with a revenue greater than 6.2, a Company of national bank of greece, and a Rank smaller than 1? ### Answer: SELECT AVG(market_value__us) AS $_billion_ FROM table_name_87 WHERE revenues__us$_billion_ > 6.2 AND company = "national bank of greece" AND rank < 1 |
Which company has a market value greater than 1, Assets (US$ billion) smaller than 10.7, a Rank smaller than 10, and revenue (US$ billion) of 9.3? | CREATE TABLE table_name_41 (company VARCHAR, revenues__us$_billion_ VARCHAR, rank VARCHAR, market_value__us$_billion_ VARCHAR, assets__us$_billion_ VARCHAR) | SELECT company FROM table_name_41 WHERE market_value__us$_billion_ > 1 AND assets__us$_billion_ < 10.7 AND rank < 10 AND revenues__us$_billion_ = 9.3 | ### Context: CREATE TABLE table_name_41 (company VARCHAR, revenues__us$_billion_ VARCHAR, rank VARCHAR, market_value__us$_billion_ VARCHAR, assets__us$_billion_ VARCHAR) ### Question: Which company has a market value greater than 1, Assets (US$ billion) smaller than 10.7, a Rank smaller than 10, and revenue (US$ billion) of 9.3? ### Answer: SELECT company FROM table_name_41 WHERE market_value__us$_billion_ > 1 AND assets__us$_billion_ < 10.7 AND rank < 10 AND revenues__us$_billion_ = 9.3 |
Tell me the venue with result of eng by 6 wkts | CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR) | SELECT venue FROM table_name_72 WHERE result = "eng by 6 wkts" | ### Context: CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR) ### Question: Tell me the venue with result of eng by 6 wkts ### Answer: SELECT venue FROM table_name_72 WHERE result = "eng by 6 wkts" |
Name the Home captain for venue of the oval | CREATE TABLE table_name_14 (home_captain VARCHAR, venue VARCHAR) | SELECT home_captain FROM table_name_14 WHERE venue = "the oval" | ### Context: CREATE TABLE table_name_14 (home_captain VARCHAR, venue VARCHAR) ### Question: Name the Home captain for venue of the oval ### Answer: SELECT home_captain FROM table_name_14 WHERE venue = "the oval" |
Name the away captain with result of wi by 9 wkts | CREATE TABLE table_name_69 (away_captain VARCHAR, result VARCHAR) | SELECT away_captain FROM table_name_69 WHERE result = "wi by 9 wkts" | ### Context: CREATE TABLE table_name_69 (away_captain VARCHAR, result VARCHAR) ### Question: Name the away captain with result of wi by 9 wkts ### Answer: SELECT away_captain FROM table_name_69 WHERE result = "wi by 9 wkts" |
Name the venue for eng by 6 wkts | CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR) | SELECT venue FROM table_name_46 WHERE result = "eng by 6 wkts" | ### Context: CREATE TABLE table_name_46 (venue VARCHAR, result VARCHAR) ### Question: Name the venue for eng by 6 wkts ### Answer: SELECT venue FROM table_name_46 WHERE result = "eng by 6 wkts" |
What is the date of the last performance when the style is street dance and the name is George Maguire? | CREATE TABLE table_name_77 (last_performance VARCHAR, style VARCHAR, name VARCHAR) | SELECT last_performance FROM table_name_77 WHERE style = "street dance" AND name = "george maguire" | ### Context: CREATE TABLE table_name_77 (last_performance VARCHAR, style VARCHAR, name VARCHAR) ### Question: What is the date of the last performance when the style is street dance and the name is George Maguire? ### Answer: SELECT last_performance FROM table_name_77 WHERE style = "street dance" AND name = "george maguire" |
What is the date of the last performance for Liam Mower? | CREATE TABLE table_name_11 (last_performance VARCHAR, name VARCHAR) | SELECT last_performance FROM table_name_11 WHERE name = "liam mower" | ### Context: CREATE TABLE table_name_11 (last_performance VARCHAR, name VARCHAR) ### Question: What is the date of the last performance for Liam Mower? ### Answer: SELECT last_performance FROM table_name_11 WHERE name = "liam mower" |
How many points did the Weslake v12 get in 1966? | CREATE TABLE table_name_28 (points INTEGER, engine VARCHAR, year VARCHAR) | SELECT MAX(points) FROM table_name_28 WHERE engine = "weslake v12" AND year < 1966 | ### Context: CREATE TABLE table_name_28 (points INTEGER, engine VARCHAR, year VARCHAR) ### Question: How many points did the Weslake v12 get in 1966? ### Answer: SELECT MAX(points) FROM table_name_28 WHERE engine = "weslake v12" AND year < 1966 |
What was the name of the team in 1965 driving the Ferrari 158? | CREATE TABLE table_name_3 (entrant VARCHAR, year VARCHAR, chassis VARCHAR) | SELECT entrant FROM table_name_3 WHERE year = 1965 AND chassis = "ferrari 158" | ### Context: CREATE TABLE table_name_3 (entrant VARCHAR, year VARCHAR, chassis VARCHAR) ### Question: What was the name of the team in 1965 driving the Ferrari 158? ### Answer: SELECT entrant FROM table_name_3 WHERE year = 1965 AND chassis = "ferrari 158" |
What Chassis had a Weslake v12 in it? | CREATE TABLE table_name_30 (chassis VARCHAR, engine VARCHAR) | SELECT chassis FROM table_name_30 WHERE engine = "weslake v12" | ### Context: CREATE TABLE table_name_30 (chassis VARCHAR, engine VARCHAR) ### Question: What Chassis had a Weslake v12 in it? ### Answer: SELECT chassis FROM table_name_30 WHERE engine = "weslake v12" |
Name the copaxone with mitoxantrone of no and betaseron (beta-1b) of no | CREATE TABLE table_name_13 (copaxone VARCHAR, mitoxantrone VARCHAR, betaseron__beta_1b_ VARCHAR) | SELECT copaxone FROM table_name_13 WHERE mitoxantrone = "no" AND betaseron__beta_1b_ = "no" | ### Context: CREATE TABLE table_name_13 (copaxone VARCHAR, mitoxantrone VARCHAR, betaseron__beta_1b_ VARCHAR) ### Question: Name the copaxone with mitoxantrone of no and betaseron (beta-1b) of no ### Answer: SELECT copaxone FROM table_name_13 WHERE mitoxantrone = "no" AND betaseron__beta_1b_ = "no" |
Who has a career that has test larger than 41, catches over 33, and a total dismissals rate of 147? | CREATE TABLE table_name_46 (test_career VARCHAR, total_dismissals VARCHAR, tests VARCHAR, catches VARCHAR) | SELECT test_career FROM table_name_46 WHERE tests > 41 AND catches > 33 AND total_dismissals = 147 | ### Context: CREATE TABLE table_name_46 (test_career VARCHAR, total_dismissals VARCHAR, tests VARCHAR, catches VARCHAR) ### Question: Who has a career that has test larger than 41, catches over 33, and a total dismissals rate of 147? ### Answer: SELECT test_career FROM table_name_46 WHERE tests > 41 AND catches > 33 AND total_dismissals = 147 |
What is the average dismissals of 83 test and catches less than 33? | CREATE TABLE table_name_5 (total_dismissals INTEGER, tests VARCHAR, catches VARCHAR) | SELECT AVG(total_dismissals) FROM table_name_5 WHERE tests = 83 AND catches < 33 | ### Context: CREATE TABLE table_name_5 (total_dismissals INTEGER, tests VARCHAR, catches VARCHAR) ### Question: What is the average dismissals of 83 test and catches less than 33? ### Answer: SELECT AVG(total_dismissals) FROM table_name_5 WHERE tests = 83 AND catches < 33 |
Which winner has a points classification of Tony Rominger at stage 17? | CREATE TABLE table_name_72 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR) | SELECT winner FROM table_name_72 WHERE points_classification = "tony rominger" AND stage = "17" | ### Context: CREATE TABLE table_name_72 (winner VARCHAR, points_classification VARCHAR, stage VARCHAR) ### Question: Which winner has a points classification of Tony Rominger at stage 17? ### Answer: SELECT winner FROM table_name_72 WHERE points_classification = "tony rominger" AND stage = "17" |
Which stage has a mountains classification of Mariano Piccoli, a points classification of Mario Cipollini and was won by Laudelino Cubino? | CREATE TABLE table_name_93 (stage VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR) | SELECT stage FROM table_name_93 WHERE mountains_classification = "mariano piccoli" AND points_classification = "mario cipollini" AND winner = "laudelino cubino" | ### Context: CREATE TABLE table_name_93 (stage VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR) ### Question: Which stage has a mountains classification of Mariano Piccoli, a points classification of Mario Cipollini and was won by Laudelino Cubino? ### Answer: SELECT stage FROM table_name_93 WHERE mountains_classification = "mariano piccoli" AND points_classification = "mario cipollini" AND winner = "laudelino cubino" |
Who won stage 16? | CREATE TABLE table_name_87 (winner VARCHAR, stage VARCHAR) | SELECT winner FROM table_name_87 WHERE stage = "16" | ### Context: CREATE TABLE table_name_87 (winner VARCHAR, stage VARCHAR) ### Question: Who won stage 16? ### Answer: SELECT winner FROM table_name_87 WHERE stage = "16" |
Which mountains classification has a general classification of Tony Rominger and was won by Maurizio Fondriest? | CREATE TABLE table_name_70 (mountains_classification VARCHAR, general_classification VARCHAR, winner VARCHAR) | SELECT mountains_classification FROM table_name_70 WHERE general_classification = "tony rominger" AND winner = "maurizio fondriest" | ### Context: CREATE TABLE table_name_70 (mountains_classification VARCHAR, general_classification VARCHAR, winner VARCHAR) ### Question: Which mountains classification has a general classification of Tony Rominger and was won by Maurizio Fondriest? ### Answer: SELECT mountains_classification FROM table_name_70 WHERE general_classification = "tony rominger" AND winner = "maurizio fondriest" |
What is the general classification at stage 18 that has a points classification of Tony Rominger? | CREATE TABLE table_name_59 (general_classification VARCHAR, points_classification VARCHAR, stage VARCHAR) | SELECT general_classification FROM table_name_59 WHERE points_classification = "tony rominger" AND stage = "18" | ### Context: CREATE TABLE table_name_59 (general_classification VARCHAR, points_classification VARCHAR, stage VARCHAR) ### Question: What is the general classification at stage 18 that has a points classification of Tony Rominger? ### Answer: SELECT general_classification FROM table_name_59 WHERE points_classification = "tony rominger" AND stage = "18" |
Which stage has a mountains classification of Mariano Piccoli and was won by Giuseppe Citterio? | CREATE TABLE table_name_5 (stage VARCHAR, mountains_classification VARCHAR, winner VARCHAR) | SELECT stage FROM table_name_5 WHERE mountains_classification = "mariano piccoli" AND winner = "giuseppe citterio" | ### Context: CREATE TABLE table_name_5 (stage VARCHAR, mountains_classification VARCHAR, winner VARCHAR) ### Question: Which stage has a mountains classification of Mariano Piccoli and was won by Giuseppe Citterio? ### Answer: SELECT stage FROM table_name_5 WHERE mountains_classification = "mariano piccoli" AND winner = "giuseppe citterio" |
What is the year First elected when the Member is John Armitage? | CREATE TABLE table_name_6 (first_elected VARCHAR, member VARCHAR) | SELECT first_elected FROM table_name_6 WHERE member = "john armitage" | ### Context: CREATE TABLE table_name_6 (first_elected VARCHAR, member VARCHAR) ### Question: What is the year First elected when the Member is John Armitage? ### Answer: SELECT first_elected FROM table_name_6 WHERE member = "john armitage" |
Who is the Electorate, when the year for First elected is 1974, and when the Party is Country? | CREATE TABLE table_name_16 (electorate VARCHAR, first_elected VARCHAR, party VARCHAR) | SELECT electorate FROM table_name_16 WHERE first_elected = "1974" AND party = "country" | ### Context: CREATE TABLE table_name_16 (electorate VARCHAR, first_elected VARCHAR, party VARCHAR) ### Question: Who is the Electorate, when the year for First elected is 1974, and when the Party is Country? ### Answer: SELECT electorate FROM table_name_16 WHERE first_elected = "1974" AND party = "country" |
Who is the Member when the Party is Alp, and when the Electorate is Grey? | CREATE TABLE table_name_66 (member VARCHAR, party VARCHAR, electorate VARCHAR) | SELECT member FROM table_name_66 WHERE party = "alp" AND electorate = "grey" | ### Context: CREATE TABLE table_name_66 (member VARCHAR, party VARCHAR, electorate VARCHAR) ### Question: Who is the Member when the Party is Alp, and when the Electorate is Grey? ### Answer: SELECT member FROM table_name_66 WHERE party = "alp" AND electorate = "grey" |
What is the State, when the year First elected is 1966, and when the Member is Alan Jarman? | CREATE TABLE table_name_13 (state VARCHAR, first_elected VARCHAR, member VARCHAR) | SELECT state FROM table_name_13 WHERE first_elected = "1966" AND member = "alan jarman" | ### Context: CREATE TABLE table_name_13 (state VARCHAR, first_elected VARCHAR, member VARCHAR) ### Question: What is the State, when the year First elected is 1966, and when the Member is Alan Jarman? ### Answer: SELECT state FROM table_name_13 WHERE first_elected = "1966" AND member = "alan jarman" |
What is the year First Elected, when the Party is Alp, and when the State is qld? | CREATE TABLE table_name_17 (first_elected VARCHAR, party VARCHAR, state VARCHAR) | SELECT first_elected FROM table_name_17 WHERE party = "alp" AND state = "qld" | ### Context: CREATE TABLE table_name_17 (first_elected VARCHAR, party VARCHAR, state VARCHAR) ### Question: What is the year First Elected, when the Party is Alp, and when the State is qld? ### Answer: SELECT first_elected FROM table_name_17 WHERE party = "alp" AND state = "qld" |
What is the year First elected, when the State is vic, and when the Member is Hon Don Chipp? | CREATE TABLE table_name_21 (first_elected VARCHAR, state VARCHAR, member VARCHAR) | SELECT first_elected FROM table_name_21 WHERE state = "vic" AND member = "hon don chipp" | ### Context: CREATE TABLE table_name_21 (first_elected VARCHAR, state VARCHAR, member VARCHAR) ### Question: What is the year First elected, when the State is vic, and when the Member is Hon Don Chipp? ### Answer: SELECT first_elected FROM table_name_21 WHERE state = "vic" AND member = "hon don chipp" |
Which total number of starts has more than 2 wins and a money list rank greater than 1? | CREATE TABLE table_name_18 (starts VARCHAR, wins VARCHAR, money_list_rank VARCHAR) | SELECT COUNT(starts) FROM table_name_18 WHERE wins > 2 AND money_list_rank > 1 | ### Context: CREATE TABLE table_name_18 (starts VARCHAR, wins VARCHAR, money_list_rank VARCHAR) ### Question: Which total number of starts has more than 2 wins and a money list rank greater than 1? ### Answer: SELECT COUNT(starts) FROM table_name_18 WHERE wins > 2 AND money_list_rank > 1 |
What is the sum of Top 10 performances that have more than 2 wins and is higher than number 16 in the Top 25? | CREATE TABLE table_name_98 (top_10 INTEGER, wins VARCHAR, top_25 VARCHAR) | SELECT SUM(top_10) FROM table_name_98 WHERE wins > 2 AND top_25 < 16 | ### Context: CREATE TABLE table_name_98 (top_10 INTEGER, wins VARCHAR, top_25 VARCHAR) ### Question: What is the sum of Top 10 performances that have more than 2 wins and is higher than number 16 in the Top 25? ### Answer: SELECT SUM(top_10) FROM table_name_98 WHERE wins > 2 AND top_25 < 16 |
What is the greatest money list ranking that has a Top 25 higher than 2? | CREATE TABLE table_name_44 (money_list_rank INTEGER, top_25 INTEGER) | SELECT MAX(money_list_rank) FROM table_name_44 WHERE top_25 < 2 | ### Context: CREATE TABLE table_name_44 (money_list_rank INTEGER, top_25 INTEGER) ### Question: What is the greatest money list ranking that has a Top 25 higher than 2? ### Answer: SELECT MAX(money_list_rank) FROM table_name_44 WHERE top_25 < 2 |
What Away team had an Attendance of 3,395? | CREATE TABLE table_name_68 (away_team VARCHAR, attendance VARCHAR) | SELECT away_team FROM table_name_68 WHERE attendance = "3,395" | ### Context: CREATE TABLE table_name_68 (away_team VARCHAR, attendance VARCHAR) ### Question: What Away team had an Attendance of 3,395? ### Answer: SELECT away_team FROM table_name_68 WHERE attendance = "3,395" |
What Home team had an Attendance of 2,776? | CREATE TABLE table_name_12 (home_team VARCHAR, attendance VARCHAR) | SELECT home_team FROM table_name_12 WHERE attendance = "2,776" | ### Context: CREATE TABLE table_name_12 (home_team VARCHAR, attendance VARCHAR) ### Question: What Home team had an Attendance of 2,776? ### Answer: SELECT home_team FROM table_name_12 WHERE attendance = "2,776" |
Which engine has more than 1 point after 1981? | CREATE TABLE table_name_71 (engine VARCHAR, points VARCHAR, year VARCHAR) | SELECT engine FROM table_name_71 WHERE points > 1 AND year > 1981 | ### Context: CREATE TABLE table_name_71 (engine VARCHAR, points VARCHAR, year VARCHAR) ### Question: Which engine has more than 1 point after 1981? ### Answer: SELECT engine FROM table_name_71 WHERE points > 1 AND year > 1981 |
Which engine did Marlboro Team Alfa Romeo used with a chassis of alfa romeo 179? | CREATE TABLE table_name_99 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR) | SELECT engine FROM table_name_99 WHERE entrant = "marlboro team alfa romeo" AND chassis = "alfa romeo 179" | ### Context: CREATE TABLE table_name_99 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR) ### Question: Which engine did Marlboro Team Alfa Romeo used with a chassis of alfa romeo 179? ### Answer: SELECT engine FROM table_name_99 WHERE entrant = "marlboro team alfa romeo" AND chassis = "alfa romeo 179" |
When has a surface of road and an event of half marathon? | CREATE TABLE table_name_63 (date VARCHAR, surface VARCHAR, event VARCHAR) | SELECT date FROM table_name_63 WHERE surface = "road" AND event = "half marathon" | ### Context: CREATE TABLE table_name_63 (date VARCHAR, surface VARCHAR, event VARCHAR) ### Question: When has a surface of road and an event of half marathon? ### Answer: SELECT date FROM table_name_63 WHERE surface = "road" AND event = "half marathon" |
Which Surface has a Place of lappeenranta? | CREATE TABLE table_name_54 (surface VARCHAR, place VARCHAR) | SELECT surface FROM table_name_54 WHERE place = "lappeenranta" | ### Context: CREATE TABLE table_name_54 (surface VARCHAR, place VARCHAR) ### Question: Which Surface has a Place of lappeenranta? ### Answer: SELECT surface FROM table_name_54 WHERE place = "lappeenranta" |
Which Class Pos have Laps smaller than 304, and a Year after 2001? | CREATE TABLE table_name_79 (class VARCHAR, laps VARCHAR, year VARCHAR) | SELECT class AS pos FROM table_name_79 WHERE laps < 304 AND year > 2001 | ### Context: CREATE TABLE table_name_79 (class VARCHAR, laps VARCHAR, year VARCHAR) ### Question: Which Class Pos have Laps smaller than 304, and a Year after 2001? ### Answer: SELECT class AS pos FROM table_name_79 WHERE laps < 304 AND year > 2001 |
What is the lowest Laps that has a Year after 2002 with Alexander Frei Bruno Besson? | CREATE TABLE table_name_4 (laps INTEGER, year VARCHAR, co_drivers VARCHAR) | SELECT MIN(laps) FROM table_name_4 WHERE year > 2002 AND co_drivers = "alexander frei bruno besson" | ### Context: CREATE TABLE table_name_4 (laps INTEGER, year VARCHAR, co_drivers VARCHAR) ### Question: What is the lowest Laps that has a Year after 2002 with Alexander Frei Bruno Besson? ### Answer: SELECT MIN(laps) FROM table_name_4 WHERE year > 2002 AND co_drivers = "alexander frei bruno besson" |
How many people attended the score of w 7-6? | CREATE TABLE table_name_15 (crowd VARCHAR, score VARCHAR) | SELECT crowd FROM table_name_15 WHERE score = "w 7-6" | ### Context: CREATE TABLE table_name_15 (crowd VARCHAR, score VARCHAR) ### Question: How many people attended the score of w 7-6? ### Answer: SELECT crowd FROM table_name_15 WHERE score = "w 7-6" |
Who lost that has a score of w 4-3? | CREATE TABLE table_name_25 (loss VARCHAR, score VARCHAR) | SELECT loss FROM table_name_25 WHERE score = "w 4-3" | ### Context: CREATE TABLE table_name_25 (loss VARCHAR, score VARCHAR) ### Question: Who lost that has a score of w 4-3? ### Answer: SELECT loss FROM table_name_25 WHERE score = "w 4-3" |
Loss of schrom happened on what date? | CREATE TABLE table_name_39 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_39 WHERE loss = "schrom" | ### Context: CREATE TABLE table_name_39 (date VARCHAR, loss VARCHAR) ### Question: Loss of schrom happened on what date? ### Answer: SELECT date FROM table_name_39 WHERE loss = "schrom" |
Opponent of @mil, and a Record of 45-16 happened on what date? | CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR, record VARCHAR) | SELECT date FROM table_name_95 WHERE opponent = "@mil" AND record = "45-16" | ### Context: CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: Opponent of @mil, and a Record of 45-16 happened on what date? ### Answer: SELECT date FROM table_name_95 WHERE opponent = "@mil" AND record = "45-16" |
Loss of willis has what record? | CREATE TABLE table_name_52 (record VARCHAR, loss VARCHAR) | SELECT record FROM table_name_52 WHERE loss = "willis" | ### Context: CREATE TABLE table_name_52 (record VARCHAR, loss VARCHAR) ### Question: Loss of willis has what record? ### Answer: SELECT record FROM table_name_52 WHERE loss = "willis" |
Loss of wilcox, and a Date of jun 18 had what opponent? | CREATE TABLE table_name_95 (opponent VARCHAR, loss VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_95 WHERE loss = "wilcox" AND date = "jun 18" | ### Context: CREATE TABLE table_name_95 (opponent VARCHAR, loss VARCHAR, date VARCHAR) ### Question: Loss of wilcox, and a Date of jun 18 had what opponent? ### Answer: SELECT opponent FROM table_name_95 WHERE loss = "wilcox" AND date = "jun 18" |
Name the to par for score of 74-74-74-71=293 | CREATE TABLE table_name_64 (to_par VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_64 WHERE score = 74 - 74 - 74 - 71 = 293 | ### Context: CREATE TABLE table_name_64 (to_par VARCHAR, score VARCHAR) ### Question: Name the to par for score of 74-74-74-71=293 ### Answer: SELECT to_par FROM table_name_64 WHERE score = 74 - 74 - 74 - 71 = 293 |
Name the player for 68-68-75-74=285 | CREATE TABLE table_name_69 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_69 WHERE score = 68 - 68 - 75 - 74 = 285 | ### Context: CREATE TABLE table_name_69 (player VARCHAR, score VARCHAR) ### Question: Name the player for 68-68-75-74=285 ### Answer: SELECT player FROM table_name_69 WHERE score = 68 - 68 - 75 - 74 = 285 |
Name the to par for gene kunes | CREATE TABLE table_name_39 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_39 WHERE player = "gene kunes" | ### Context: CREATE TABLE table_name_39 (to_par VARCHAR, player VARCHAR) ### Question: Name the to par for gene kunes ### Answer: SELECT to_par FROM table_name_39 WHERE player = "gene kunes" |
What is the average Points for a year before 1955? | CREATE TABLE table_name_68 (points INTEGER, year INTEGER) | SELECT AVG(points) FROM table_name_68 WHERE year < 1955 | ### Context: CREATE TABLE table_name_68 (points INTEGER, year INTEGER) ### Question: What is the average Points for a year before 1955? ### Answer: SELECT AVG(points) FROM table_name_68 WHERE year < 1955 |
What is the total year with a Team of scuderia ferrari, an Engine of ferrari 106 2.5 l4, and more than 12 points? | CREATE TABLE table_name_4 (year INTEGER, points VARCHAR, team VARCHAR, engine VARCHAR) | SELECT SUM(year) FROM table_name_4 WHERE team = "scuderia ferrari" AND engine = "ferrari 106 2.5 l4" AND points > 12 | ### Context: CREATE TABLE table_name_4 (year INTEGER, points VARCHAR, team VARCHAR, engine VARCHAR) ### Question: What is the total year with a Team of scuderia ferrari, an Engine of ferrari 106 2.5 l4, and more than 12 points? ### Answer: SELECT SUM(year) FROM table_name_4 WHERE team = "scuderia ferrari" AND engine = "ferrari 106 2.5 l4" AND points > 12 |
How many wins has a podiums greater than 1 and 9 as the races with a season after 1984? | CREATE TABLE table_name_13 (wins VARCHAR, season VARCHAR, podiums VARCHAR, races VARCHAR) | SELECT COUNT(wins) FROM table_name_13 WHERE podiums > 1 AND races = 9 AND season > 1984 | ### Context: CREATE TABLE table_name_13 (wins VARCHAR, season VARCHAR, podiums VARCHAR, races VARCHAR) ### Question: How many wins has a podiums greater than 1 and 9 as the races with a season after 1984? ### Answer: SELECT COUNT(wins) FROM table_name_13 WHERE podiums > 1 AND races = 9 AND season > 1984 |
What is the highest Podiums with 0 as wins, and a season later than 1985? | CREATE TABLE table_name_31 (podiums INTEGER, wins VARCHAR, season VARCHAR) | SELECT MAX(podiums) FROM table_name_31 WHERE wins = 0 AND season > 1985 | ### Context: CREATE TABLE table_name_31 (podiums INTEGER, wins VARCHAR, season VARCHAR) ### Question: What is the highest Podiums with 0 as wins, and a season later than 1985? ### Answer: SELECT MAX(podiums) FROM table_name_31 WHERE wins = 0 AND season > 1985 |
What was the Top Gear budget in March 2013? | CREATE TABLE table_name_39 (budget VARCHAR, month_ VARCHAR, _year VARCHAR) | SELECT budget FROM table_name_39 WHERE month_ & _year = "march 2013" | ### Context: CREATE TABLE table_name_39 (budget VARCHAR, month_ VARCHAR, _year VARCHAR) ### Question: What was the Top Gear budget in March 2013? ### Answer: SELECT budget FROM table_name_39 WHERE month_ & _year = "march 2013" |
Which episode of Top Gear had a budget of £7,000? | CREATE TABLE table_name_35 (episode VARCHAR, budget VARCHAR) | SELECT episode FROM table_name_35 WHERE budget = "£7,000" | ### Context: CREATE TABLE table_name_35 (episode VARCHAR, budget VARCHAR) ### Question: Which episode of Top Gear had a budget of £7,000? ### Answer: SELECT episode FROM table_name_35 WHERE budget = "£7,000" |
Which month and year held the Bolivia Special title? | CREATE TABLE table_name_18 (month_ VARCHAR, _year VARCHAR, title VARCHAR) | SELECT month_ & _year FROM table_name_18 WHERE title = "bolivia special" | ### Context: CREATE TABLE table_name_18 (month_ VARCHAR, _year VARCHAR, title VARCHAR) ### Question: Which month and year held the Bolivia Special title? ### Answer: SELECT month_ & _year FROM table_name_18 WHERE title = "bolivia special" |
Which team has a right wing position listed? | CREATE TABLE table_name_8 (college_junior_club_team VARCHAR, position VARCHAR) | SELECT college_junior_club_team FROM table_name_8 WHERE position = "right wing" | ### Context: CREATE TABLE table_name_8 (college_junior_club_team VARCHAR, position VARCHAR) ### Question: Which team has a right wing position listed? ### Answer: SELECT college_junior_club_team FROM table_name_8 WHERE position = "right wing" |
What position is the player that is from Canada and on the Boston Bruins | CREATE TABLE table_name_51 (position VARCHAR, nationality VARCHAR, nhl_team VARCHAR) | SELECT position FROM table_name_51 WHERE nationality = "canada" AND nhl_team = "boston bruins" | ### Context: CREATE TABLE table_name_51 (position VARCHAR, nationality VARCHAR, nhl_team VARCHAR) ### Question: What position is the player that is from Canada and on the Boston Bruins ### Answer: SELECT position FROM table_name_51 WHERE nationality = "canada" AND nhl_team = "boston bruins" |
Subsets and Splits