question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the museum name located in Rudyard?
CREATE TABLE table_name_52 (name VARCHAR, town_city VARCHAR)
SELECT name FROM table_name_52 WHERE town_city = "rudyard"
### Context: CREATE TABLE table_name_52 (name VARCHAR, town_city VARCHAR) ### Question: What is the museum name located in Rudyard? ### Answer: SELECT name FROM table_name_52 WHERE town_city = "rudyard"
What is the region that the Blaine County Museum is located in?
CREATE TABLE table_name_43 (region VARCHAR, name VARCHAR)
SELECT region FROM table_name_43 WHERE name = "blaine county museum"
### Context: CREATE TABLE table_name_43 (region VARCHAR, name VARCHAR) ### Question: What is the region that the Blaine County Museum is located in? ### Answer: SELECT region FROM table_name_43 WHERE name = "blaine county museum"
What Tournament had a Score of 6–3, 2–6, 6–3?
CREATE TABLE table_name_13 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_13 WHERE score = "6–3, 2–6, 6–3"
### Context: CREATE TABLE table_name_13 (tournament VARCHAR, score VARCHAR) ### Question: What Tournament had a Score of 6–3, 2–6, 6–3? ### Answer: SELECT tournament FROM table_name_13 WHERE score = "6–3, 2–6, 6–3"
What Partner had a Score of 6–3, 2–6, 6–3?
CREATE TABLE table_name_31 (partner VARCHAR, score VARCHAR)
SELECT partner FROM table_name_31 WHERE score = "6–3, 2–6, 6–3"
### Context: CREATE TABLE table_name_31 (partner VARCHAR, score VARCHAR) ### Question: What Partner had a Score of 6–3, 2–6, 6–3? ### Answer: SELECT partner FROM table_name_31 WHERE score = "6–3, 2–6, 6–3"
Who were the Opponents in the match on a Hard Surface with Catherine Suire as Partner and Outcome of runner-up?
CREATE TABLE table_name_6 (opponents VARCHAR, partner VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT opponents FROM table_name_6 WHERE outcome = "runner-up" AND surface = "hard" AND partner = "catherine suire"
### Context: CREATE TABLE table_name_6 (opponents VARCHAR, partner VARCHAR, outcome VARCHAR, surface VARCHAR) ### Question: Who were the Opponents in the match on a Hard Surface with Catherine Suire as Partner and Outcome of runner-up? ### Answer: SELECT opponents FROM table_name_6 WHERE outcome = "runner-up" AND surface = "hard" AND partner = "catherine suire"
Who was the visiting team when the record was 6–12–5–1?
CREATE TABLE table_name_4 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_4 WHERE record = "6–12–5–1"
### Context: CREATE TABLE table_name_4 (visitor VARCHAR, record VARCHAR) ### Question: Who was the visiting team when the record was 6–12–5–1? ### Answer: SELECT visitor FROM table_name_4 WHERE record = "6–12–5–1"
Who was the home team when the record was 21–45–8–5?
CREATE TABLE table_name_56 (home VARCHAR, record VARCHAR)
SELECT home FROM table_name_56 WHERE record = "21–45–8–5"
### Context: CREATE TABLE table_name_56 (home VARCHAR, record VARCHAR) ### Question: Who was the home team when the record was 21–45–8–5? ### Answer: SELECT home FROM table_name_56 WHERE record = "21–45–8–5"
Which of the attributes has is cancelable and an answer of yes for bubbles?
CREATE TABLE table_name_15 (attribute VARCHAR, cancelable VARCHAR, bubbles VARCHAR)
SELECT attribute FROM table_name_15 WHERE cancelable = "yes" AND bubbles = "yes"
### Context: CREATE TABLE table_name_15 (attribute VARCHAR, cancelable VARCHAR, bubbles VARCHAR) ### Question: Which of the attributes has is cancelable and an answer of yes for bubbles? ### Answer: SELECT attribute FROM table_name_15 WHERE cancelable = "yes" AND bubbles = "yes"
Which bubbles has an atribute of onlostpointercapture?
CREATE TABLE table_name_87 (bubbles VARCHAR, attribute VARCHAR)
SELECT bubbles FROM table_name_87 WHERE attribute = "onlostpointercapture"
### Context: CREATE TABLE table_name_87 (bubbles VARCHAR, attribute VARCHAR) ### Question: Which bubbles has an atribute of onlostpointercapture? ### Answer: SELECT bubbles FROM table_name_87 WHERE attribute = "onlostpointercapture"
For the attribute of onpointerout, what is the cancelable?
CREATE TABLE table_name_75 (cancelable VARCHAR, attribute VARCHAR)
SELECT cancelable FROM table_name_75 WHERE attribute = "onpointerout"
### Context: CREATE TABLE table_name_75 (cancelable VARCHAR, attribute VARCHAR) ### Question: For the attribute of onpointerout, what is the cancelable? ### Answer: SELECT cancelable FROM table_name_75 WHERE attribute = "onpointerout"
Which bubble have a cancelable of yes and an attribute of onpointerdown?
CREATE TABLE table_name_58 (bubbles VARCHAR, cancelable VARCHAR, attribute VARCHAR)
SELECT bubbles FROM table_name_58 WHERE cancelable = "yes" AND attribute = "onpointerdown"
### Context: CREATE TABLE table_name_58 (bubbles VARCHAR, cancelable VARCHAR, attribute VARCHAR) ### Question: Which bubble have a cancelable of yes and an attribute of onpointerdown? ### Answer: SELECT bubbles FROM table_name_58 WHERE cancelable = "yes" AND attribute = "onpointerdown"
What's the highest grid of Ronnie Bremer, who had more than 18 points?
CREATE TABLE table_name_91 (grid INTEGER, driver VARCHAR, points VARCHAR)
SELECT MAX(grid) FROM table_name_91 WHERE driver = "ronnie bremer" AND points > 18
### Context: CREATE TABLE table_name_91 (grid INTEGER, driver VARCHAR, points VARCHAR) ### Question: What's the highest grid of Ronnie Bremer, who had more than 18 points? ### Answer: SELECT MAX(grid) FROM table_name_91 WHERE driver = "ronnie bremer" AND points > 18
What are the most points Lap 70 had with a grid larger than 16?
CREATE TABLE table_name_71 (points INTEGER, laps VARCHAR, grid VARCHAR)
SELECT MAX(points) FROM table_name_71 WHERE laps = 70 AND grid > 16
### Context: CREATE TABLE table_name_71 (points INTEGER, laps VARCHAR, grid VARCHAR) ### Question: What are the most points Lap 70 had with a grid larger than 16? ### Answer: SELECT MAX(points) FROM table_name_71 WHERE laps = 70 AND grid > 16
What is the name of the track in Holland?
CREATE TABLE table_name_2 (track VARCHAR, city VARCHAR)
SELECT track FROM table_name_2 WHERE city = "holland"
### Context: CREATE TABLE table_name_2 (track VARCHAR, city VARCHAR) ### Question: What is the name of the track in Holland? ### Answer: SELECT track FROM table_name_2 WHERE city = "holland"
What is the track in Washington state?
CREATE TABLE table_name_83 (track VARCHAR, state VARCHAR)
SELECT track FROM table_name_83 WHERE state = "washington"
### Context: CREATE TABLE table_name_83 (track VARCHAR, state VARCHAR) ### Question: What is the track in Washington state? ### Answer: SELECT track FROM table_name_83 WHERE state = "washington"
What is the city the track of manzanita speedway is in?
CREATE TABLE table_name_89 (city VARCHAR, track VARCHAR)
SELECT city FROM table_name_89 WHERE track = "manzanita speedway"
### Context: CREATE TABLE table_name_89 (city VARCHAR, track VARCHAR) ### Question: What is the city the track of manzanita speedway is in? ### Answer: SELECT city FROM table_name_89 WHERE track = "manzanita speedway"
What is the surface of the track at the indianapolis speedrome?
CREATE TABLE table_name_2 (surface VARCHAR, track VARCHAR)
SELECT surface FROM table_name_2 WHERE track = "indianapolis speedrome"
### Context: CREATE TABLE table_name_2 (surface VARCHAR, track VARCHAR) ### Question: What is the surface of the track at the indianapolis speedrome? ### Answer: SELECT surface FROM table_name_2 WHERE track = "indianapolis speedrome"
What is the surface for the riverhead raceway?
CREATE TABLE table_name_84 (surface VARCHAR, track VARCHAR)
SELECT surface FROM table_name_84 WHERE track = "riverhead raceway"
### Context: CREATE TABLE table_name_84 (surface VARCHAR, track VARCHAR) ### Question: What is the surface for the riverhead raceway? ### Answer: SELECT surface FROM table_name_84 WHERE track = "riverhead raceway"
What city is the indianapolis speedrome in?
CREATE TABLE table_name_21 (city VARCHAR, track VARCHAR)
SELECT city FROM table_name_21 WHERE track = "indianapolis speedrome"
### Context: CREATE TABLE table_name_21 (city VARCHAR, track VARCHAR) ### Question: What city is the indianapolis speedrome in? ### Answer: SELECT city FROM table_name_21 WHERE track = "indianapolis speedrome"
What is the IUPAC name for chloroform?
CREATE TABLE table_name_44 (iupac_name VARCHAR, common_name VARCHAR)
SELECT iupac_name FROM table_name_44 WHERE common_name = "chloroform"
### Context: CREATE TABLE table_name_44 (iupac_name VARCHAR, common_name VARCHAR) ### Question: What is the IUPAC name for chloroform? ### Answer: SELECT iupac_name FROM table_name_44 WHERE common_name = "chloroform"
What is the SZDSZ percentage with an MSZP of 25% on 25/2/2009?
CREATE TABLE table_name_8 (szdsz VARCHAR, mszp VARCHAR, date VARCHAR)
SELECT szdsz FROM table_name_8 WHERE mszp = "25%" AND date = "25/2/2009"
### Context: CREATE TABLE table_name_8 (szdsz VARCHAR, mszp VARCHAR, date VARCHAR) ### Question: What is the SZDSZ percentage with an MSZP of 25% on 25/2/2009? ### Answer: SELECT szdsz FROM table_name_8 WHERE mszp = "25%" AND date = "25/2/2009"
What percentage of others have an SZDSZ of 4% and a Fidesz of 60%?
CREATE TABLE table_name_10 (others VARCHAR, szdsz VARCHAR, fidesz VARCHAR)
SELECT others FROM table_name_10 WHERE szdsz = "4%" AND fidesz = "60%"
### Context: CREATE TABLE table_name_10 (others VARCHAR, szdsz VARCHAR, fidesz VARCHAR) ### Question: What percentage of others have an SZDSZ of 4% and a Fidesz of 60%? ### Answer: SELECT others FROM table_name_10 WHERE szdsz = "4%" AND fidesz = "60%"
What is the percentage of others with a Fidesz of 62% and a Jobbik of 4%?
CREATE TABLE table_name_93 (others VARCHAR, fidesz VARCHAR, jobbik VARCHAR)
SELECT others FROM table_name_93 WHERE fidesz = "62%" AND jobbik = "4%"
### Context: CREATE TABLE table_name_93 (others VARCHAR, fidesz VARCHAR, jobbik VARCHAR) ### Question: What is the percentage of others with a Fidesz of 62% and a Jobbik of 4%? ### Answer: SELECT others FROM table_name_93 WHERE fidesz = "62%" AND jobbik = "4%"
On what date do others have 5% with an SZDSZ of 5%?
CREATE TABLE table_name_14 (date VARCHAR, others VARCHAR, szdsz VARCHAR)
SELECT date FROM table_name_14 WHERE others = "5%" AND szdsz = "5%"
### Context: CREATE TABLE table_name_14 (date VARCHAR, others VARCHAR, szdsz VARCHAR) ### Question: On what date do others have 5% with an SZDSZ of 5%? ### Answer: SELECT date FROM table_name_14 WHERE others = "5%" AND szdsz = "5%"
What is the SZDSZ percentage with a Jobbik of 5% and a Fidesz of 68%?
CREATE TABLE table_name_60 (szdsz VARCHAR, jobbik VARCHAR, fidesz VARCHAR)
SELECT szdsz FROM table_name_60 WHERE jobbik = "5%" AND fidesz = "68%"
### Context: CREATE TABLE table_name_60 (szdsz VARCHAR, jobbik VARCHAR, fidesz VARCHAR) ### Question: What is the SZDSZ percentage with a Jobbik of 5% and a Fidesz of 68%? ### Answer: SELECT szdsz FROM table_name_60 WHERE jobbik = "5%" AND fidesz = "68%"
What is the Jobbik percentage with a Fidesz of 61% and others of 2%?
CREATE TABLE table_name_41 (jobbik VARCHAR, fidesz VARCHAR, others VARCHAR)
SELECT jobbik FROM table_name_41 WHERE fidesz = "61%" AND others = "2%"
### Context: CREATE TABLE table_name_41 (jobbik VARCHAR, fidesz VARCHAR, others VARCHAR) ### Question: What is the Jobbik percentage with a Fidesz of 61% and others of 2%? ### Answer: SELECT jobbik FROM table_name_41 WHERE fidesz = "61%" AND others = "2%"
What's listed for the Turnout % with a Ngilu of 3,429?
CREATE TABLE table_name_11 (turnout__percentage VARCHAR, ngilu VARCHAR)
SELECT turnout__percentage FROM table_name_11 WHERE ngilu = "3,429"
### Context: CREATE TABLE table_name_11 (turnout__percentage VARCHAR, ngilu VARCHAR) ### Question: What's listed for the Turnout % with a Ngilu of 3,429? ### Answer: SELECT turnout__percentage FROM table_name_11 WHERE ngilu = "3,429"
What's listed for the Turnout % with a Raila of 519,180?
CREATE TABLE table_name_70 (turnout__percentage VARCHAR, raila VARCHAR)
SELECT turnout__percentage FROM table_name_70 WHERE raila = "519,180"
### Context: CREATE TABLE table_name_70 (turnout__percentage VARCHAR, raila VARCHAR) ### Question: What's listed for the Turnout % with a Raila of 519,180? ### Answer: SELECT turnout__percentage FROM table_name_70 WHERE raila = "519,180"
What's listed for the Turnout % with a Ngilu of 30,535?
CREATE TABLE table_name_32 (turnout__percentage VARCHAR, ngilu VARCHAR)
SELECT turnout__percentage FROM table_name_32 WHERE ngilu = "30,535"
### Context: CREATE TABLE table_name_32 (turnout__percentage VARCHAR, ngilu VARCHAR) ### Question: What's listed for the Turnout % with a Ngilu of 30,535? ### Answer: SELECT turnout__percentage FROM table_name_32 WHERE ngilu = "30,535"
What's listed for the Registered Voters with a Ngilu of 3,429?
CREATE TABLE table_name_68 (registered_voters VARCHAR, ngilu VARCHAR)
SELECT registered_voters FROM table_name_68 WHERE ngilu = "3,429"
### Context: CREATE TABLE table_name_68 (registered_voters VARCHAR, ngilu VARCHAR) ### Question: What's listed for the Registered Voters with a Ngilu of 3,429? ### Answer: SELECT registered_voters FROM table_name_68 WHERE ngilu = "3,429"
What is listed for the Province with a Wamalwa of 4,431?
CREATE TABLE table_name_82 (province VARCHAR, wamalwa VARCHAR)
SELECT province FROM table_name_82 WHERE wamalwa = "4,431"
### Context: CREATE TABLE table_name_82 (province VARCHAR, wamalwa VARCHAR) ### Question: What is listed for the Province with a Wamalwa of 4,431? ### Answer: SELECT province FROM table_name_82 WHERE wamalwa = "4,431"
What's listed for the Wamalwa that has a Turnout % of 55.9%?
CREATE TABLE table_name_32 (wamalwa VARCHAR, turnout__percentage VARCHAR)
SELECT wamalwa FROM table_name_32 WHERE turnout__percentage = "55.9%"
### Context: CREATE TABLE table_name_32 (wamalwa VARCHAR, turnout__percentage VARCHAR) ### Question: What's listed for the Wamalwa that has a Turnout % of 55.9%? ### Answer: SELECT wamalwa FROM table_name_32 WHERE turnout__percentage = "55.9%"
What were the average partial failures when the rocket was Ariane 5?
CREATE TABLE table_name_87 (partial_failures INTEGER, rocket VARCHAR)
SELECT AVG(partial_failures) FROM table_name_87 WHERE rocket = "ariane 5"
### Context: CREATE TABLE table_name_87 (partial_failures INTEGER, rocket VARCHAR) ### Question: What were the average partial failures when the rocket was Ariane 5? ### Answer: SELECT AVG(partial_failures) FROM table_name_87 WHERE rocket = "ariane 5"
What are average launches with 0 failures, rocket of Soyuz, and less than 12 successes?
CREATE TABLE table_name_3 (launches INTEGER, successes VARCHAR, failures VARCHAR, rocket VARCHAR)
SELECT AVG(launches) FROM table_name_3 WHERE failures = 0 AND rocket = "soyuz" AND successes < 12
### Context: CREATE TABLE table_name_3 (launches INTEGER, successes VARCHAR, failures VARCHAR, rocket VARCHAR) ### Question: What are average launches with 0 failures, rocket of Soyuz, and less than 12 successes? ### Answer: SELECT AVG(launches) FROM table_name_3 WHERE failures = 0 AND rocket = "soyuz" AND successes < 12
What is the sum of launches with Long March 3 and 0 failures?
CREATE TABLE table_name_4 (launches INTEGER, rocket VARCHAR, failures VARCHAR)
SELECT SUM(launches) FROM table_name_4 WHERE rocket = "long march 3" AND failures > 0
### Context: CREATE TABLE table_name_4 (launches INTEGER, rocket VARCHAR, failures VARCHAR) ### Question: What is the sum of launches with Long March 3 and 0 failures? ### Answer: SELECT SUM(launches) FROM table_name_4 WHERE rocket = "long march 3" AND failures > 0
What is the least amount of failures with 1 launch and 0 partial failures?
CREATE TABLE table_name_28 (failures INTEGER, launches VARCHAR, partial_failures VARCHAR)
SELECT MIN(failures) FROM table_name_28 WHERE launches = 1 AND partial_failures < 0
### Context: CREATE TABLE table_name_28 (failures INTEGER, launches VARCHAR, partial_failures VARCHAR) ### Question: What is the least amount of failures with 1 launch and 0 partial failures? ### Answer: SELECT MIN(failures) FROM table_name_28 WHERE launches = 1 AND partial_failures < 0
What were the average launches for Ariane 5 and 0 partial failures?
CREATE TABLE table_name_63 (launches INTEGER, rocket VARCHAR, partial_failures VARCHAR)
SELECT AVG(launches) FROM table_name_63 WHERE rocket = "ariane 5" AND partial_failures < 0
### Context: CREATE TABLE table_name_63 (launches INTEGER, rocket VARCHAR, partial_failures VARCHAR) ### Question: What were the average launches for Ariane 5 and 0 partial failures? ### Answer: SELECT AVG(launches) FROM table_name_63 WHERE rocket = "ariane 5" AND partial_failures < 0
What was the race of the jockey in na group in 4th place?
CREATE TABLE table_name_15 (race VARCHAR, group VARCHAR, result VARCHAR)
SELECT race FROM table_name_15 WHERE group = "na" AND result = "4th"
### Context: CREATE TABLE table_name_15 (race VARCHAR, group VARCHAR, result VARCHAR) ### Question: What was the race of the jockey in na group in 4th place? ### Answer: SELECT race FROM table_name_15 WHERE group = "na" AND result = "4th"
How far did p. carbery run to get 2nd?
CREATE TABLE table_name_67 (distance VARCHAR, jockey VARCHAR, result VARCHAR)
SELECT distance FROM table_name_67 WHERE jockey = "p. carbery" AND result = "2nd"
### Context: CREATE TABLE table_name_67 (distance VARCHAR, jockey VARCHAR, result VARCHAR) ### Question: How far did p. carbery run to get 2nd? ### Answer: SELECT distance FROM table_name_67 WHERE jockey = "p. carbery" AND result = "2nd"
What is the Removal that has a Trim of xe (2009)?
CREATE TABLE table_name_32 (transmission VARCHAR, trim VARCHAR)
SELECT transmission FROM table_name_32 WHERE trim = "xe (2009)"
### Context: CREATE TABLE table_name_32 (transmission VARCHAR, trim VARCHAR) ### Question: What is the Removal that has a Trim of xe (2009)? ### Answer: SELECT transmission FROM table_name_32 WHERE trim = "xe (2009)"
What is the Torque that has a Power of hp (kw), and a Trim of xr (2009)? Question 6
CREATE TABLE table_name_18 (torque VARCHAR, power VARCHAR, trim VARCHAR)
SELECT torque FROM table_name_18 WHERE power = "hp (kw)" AND trim = "xr (2009)"
### Context: CREATE TABLE table_name_18 (torque VARCHAR, power VARCHAR, trim VARCHAR) ### Question: What is the Torque that has a Power of hp (kw), and a Trim of xr (2009)? Question 6 ### Answer: SELECT torque FROM table_name_18 WHERE power = "hp (kw)" AND trim = "xr (2009)"
Which Round is the lowest one that has a College/Junior/Club Team (League) of oshawa generals (oha), and a Player of bob kelly?
CREATE TABLE table_name_83 (round INTEGER, college_junior_club_team__league_ VARCHAR, player VARCHAR)
SELECT MIN(round) FROM table_name_83 WHERE college_junior_club_team__league_ = "oshawa generals (oha)" AND player = "bob kelly"
### Context: CREATE TABLE table_name_83 (round INTEGER, college_junior_club_team__league_ VARCHAR, player VARCHAR) ### Question: Which Round is the lowest one that has a College/Junior/Club Team (League) of oshawa generals (oha), and a Player of bob kelly? ### Answer: SELECT MIN(round) FROM table_name_83 WHERE college_junior_club_team__league_ = "oshawa generals (oha)" AND player = "bob kelly"
What surface was used when she played with Remi Tezuka?
CREATE TABLE table_name_76 (surface VARCHAR, partner VARCHAR)
SELECT surface FROM table_name_76 WHERE partner = "remi tezuka"
### Context: CREATE TABLE table_name_76 (surface VARCHAR, partner VARCHAR) ### Question: What surface was used when she played with Remi Tezuka? ### Answer: SELECT surface FROM table_name_76 WHERE partner = "remi tezuka"
What Results has the Record of 28-12?
CREATE TABLE table_name_94 (results VARCHAR, record VARCHAR)
SELECT results FROM table_name_94 WHERE record = "28-12"
### Context: CREATE TABLE table_name_94 (results VARCHAR, record VARCHAR) ### Question: What Results has the Record of 28-12? ### Answer: SELECT results FROM table_name_94 WHERE record = "28-12"
What Results has a Seed #12 and a Year that's smaller than 1996
CREATE TABLE table_name_36 (results VARCHAR, seed VARCHAR, year VARCHAR)
SELECT results FROM table_name_36 WHERE seed = "#12" AND year < 1996
### Context: CREATE TABLE table_name_36 (results VARCHAR, seed VARCHAR, year VARCHAR) ### Question: What Results has a Seed #12 and a Year that's smaller than 1996 ### Answer: SELECT results FROM table_name_36 WHERE seed = "#12" AND year < 1996
What's the highest Year with the Record of 18-12?
CREATE TABLE table_name_23 (year INTEGER, record VARCHAR)
SELECT MAX(year) FROM table_name_23 WHERE record = "18-12"
### Context: CREATE TABLE table_name_23 (year INTEGER, record VARCHAR) ### Question: What's the highest Year with the Record of 18-12? ### Answer: SELECT MAX(year) FROM table_name_23 WHERE record = "18-12"
What's the highest Year with the Region of Southeast?
CREATE TABLE table_name_11 (year INTEGER, region VARCHAR)
SELECT MAX(year) FROM table_name_11 WHERE region = "southeast"
### Context: CREATE TABLE table_name_11 (year INTEGER, region VARCHAR) ### Question: What's the highest Year with the Region of Southeast? ### Answer: SELECT MAX(year) FROM table_name_11 WHERE region = "southeast"
What Record has a Year that's larger than 2012?
CREATE TABLE table_name_11 (record VARCHAR, year INTEGER)
SELECT record FROM table_name_11 WHERE year > 2012
### Context: CREATE TABLE table_name_11 (record VARCHAR, year INTEGER) ### Question: What Record has a Year that's larger than 2012? ### Answer: SELECT record FROM table_name_11 WHERE year > 2012
What is the Laker's record when they played against Kansas City Kings?
CREATE TABLE table_name_84 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_84 WHERE opponent = "kansas city kings"
### Context: CREATE TABLE table_name_84 (record VARCHAR, opponent VARCHAR) ### Question: What is the Laker's record when they played against Kansas City Kings? ### Answer: SELECT record FROM table_name_84 WHERE opponent = "kansas city kings"
Name the pronunciation for ε‚³
CREATE TABLE table_name_83 (pronunciation_a VARCHAR, word VARCHAR)
SELECT pronunciation_a FROM table_name_83 WHERE word = "ε‚³"
### Context: CREATE TABLE table_name_83 (pronunciation_a VARCHAR, word VARCHAR) ### Question: Name the pronunciation for ε‚³ ### Answer: SELECT pronunciation_a FROM table_name_83 WHERE word = "ε‚³"
Name the pronunciation for meaning of king
CREATE TABLE table_name_85 (pronunciation_a VARCHAR, meaning_a VARCHAR)
SELECT pronunciation_a FROM table_name_85 WHERE meaning_a = "king"
### Context: CREATE TABLE table_name_85 (pronunciation_a VARCHAR, meaning_a VARCHAR) ### Question: Name the pronunciation for meaning of king ### Answer: SELECT pronunciation_a FROM table_name_85 WHERE meaning_a = "king"
Name the word with pronunciation b of *sɨks
CREATE TABLE table_name_55 (word VARCHAR, pronunciation_b VARCHAR)
SELECT word FROM table_name_55 WHERE pronunciation_b = "*sɨks"
### Context: CREATE TABLE table_name_55 (word VARCHAR, pronunciation_b VARCHAR) ### Question: Name the word with pronunciation b of *sɨks ### Answer: SELECT word FROM table_name_55 WHERE pronunciation_b = "*sɨks"
Name the pronunciation for meaning b of border, frontier
CREATE TABLE table_name_64 (pronunciation_b VARCHAR, meaning_b VARCHAR)
SELECT pronunciation_b FROM table_name_64 WHERE meaning_b = "border, frontier"
### Context: CREATE TABLE table_name_64 (pronunciation_b VARCHAR, meaning_b VARCHAR) ### Question: Name the pronunciation for meaning b of border, frontier ### Answer: SELECT pronunciation_b FROM table_name_64 WHERE meaning_b = "border, frontier"
Name the pronunciation b for meaning of grind
CREATE TABLE table_name_56 (pronunciation_b VARCHAR, meaning_a VARCHAR)
SELECT pronunciation_b FROM table_name_56 WHERE meaning_a = "grind"
### Context: CREATE TABLE table_name_56 (pronunciation_b VARCHAR, meaning_a VARCHAR) ### Question: Name the pronunciation b for meaning of grind ### Answer: SELECT pronunciation_b FROM table_name_56 WHERE meaning_a = "grind"
What is the 2008 value that was 2nd in 2006?
CREATE TABLE table_name_87 (Id VARCHAR)
SELECT 2008 FROM table_name_87 WHERE 2006 = "2nd"
### Context: CREATE TABLE table_name_87 (Id VARCHAR) ### Question: What is the 2008 value that was 2nd in 2006? ### Answer: SELECT 2008 FROM table_name_87 WHERE 2006 = "2nd"
What is the average total that is 1st in 2010?
CREATE TABLE table_name_8 (total INTEGER)
SELECT AVG(total) FROM table_name_8 WHERE 2010 = "1st"
### Context: CREATE TABLE table_name_8 (total INTEGER) ### Question: What is the average total that is 1st in 2010? ### Answer: SELECT AVG(total) FROM table_name_8 WHERE 2010 = "1st"
What is the 2008 value with a 7 in 2010?
CREATE TABLE table_name_94 (Id VARCHAR)
SELECT 2008 FROM table_name_94 WHERE 2010 = "7"
### Context: CREATE TABLE table_name_94 (Id VARCHAR) ### Question: What is the 2008 value with a 7 in 2010? ### Answer: SELECT 2008 FROM table_name_94 WHERE 2010 = "7"
What is the Location for the woodburn dragstrip?
CREATE TABLE table_name_12 (location VARCHAR, name VARCHAR)
SELECT location FROM table_name_12 WHERE name = "woodburn dragstrip"
### Context: CREATE TABLE table_name_12 (location VARCHAR, name VARCHAR) ### Question: What is the Location for the woodburn dragstrip? ### Answer: SELECT location FROM table_name_12 WHERE name = "woodburn dragstrip"
What State has an Opened (closing date if defunct) that shows 1960?
CREATE TABLE table_name_28 (state VARCHAR, opened__closing_date_if_defunct_ VARCHAR)
SELECT state FROM table_name_28 WHERE opened__closing_date_if_defunct_ = "1960"
### Context: CREATE TABLE table_name_28 (state VARCHAR, opened__closing_date_if_defunct_ VARCHAR) ### Question: What State has an Opened (closing date if defunct) that shows 1960? ### Answer: SELECT state FROM table_name_28 WHERE opened__closing_date_if_defunct_ = "1960"
What is the Location for the route 66 raceway?
CREATE TABLE table_name_70 (location VARCHAR, name VARCHAR)
SELECT location FROM table_name_70 WHERE name = "route 66 raceway"
### Context: CREATE TABLE table_name_70 (location VARCHAR, name VARCHAR) ### Question: What is the Location for the route 66 raceway? ### Answer: SELECT location FROM table_name_70 WHERE name = "route 66 raceway"
What is the Location for the newington international airport?
CREATE TABLE table_name_6 (location VARCHAR, name VARCHAR)
SELECT location FROM table_name_6 WHERE name = "newington international airport"
### Context: CREATE TABLE table_name_6 (location VARCHAR, name VARCHAR) ### Question: What is the Location for the newington international airport? ### Answer: SELECT location FROM table_name_6 WHERE name = "newington international airport"
What is the Name with an Opened (closing date if defunct) of 1995 and has a Length of miles (m), in Illinois?
CREATE TABLE table_name_9 (name VARCHAR, state VARCHAR, opened__closing_date_if_defunct_ VARCHAR, length VARCHAR)
SELECT name FROM table_name_9 WHERE opened__closing_date_if_defunct_ = "1995" AND length = "miles (m)" AND state = "illinois"
### Context: CREATE TABLE table_name_9 (name VARCHAR, state VARCHAR, opened__closing_date_if_defunct_ VARCHAR, length VARCHAR) ### Question: What is the Name with an Opened (closing date if defunct) of 1995 and has a Length of miles (m), in Illinois? ### Answer: SELECT name FROM table_name_9 WHERE opened__closing_date_if_defunct_ = "1995" AND length = "miles (m)" AND state = "illinois"
What is the Score with an Opponent that is amanda brown brenda remilton?
CREATE TABLE table_name_45 (score VARCHAR, opponents VARCHAR)
SELECT score FROM table_name_45 WHERE opponents = "amanda brown brenda remilton"
### Context: CREATE TABLE table_name_45 (score VARCHAR, opponents VARCHAR) ### Question: What is the Score with an Opponent that is amanda brown brenda remilton? ### Answer: SELECT score FROM table_name_45 WHERE opponents = "amanda brown brenda remilton"
What is the Score with an Outcome of runner-up, and a Partner that is elizabeth little?
CREATE TABLE table_name_1 (score VARCHAR, outcome VARCHAR, partner VARCHAR)
SELECT score FROM table_name_1 WHERE outcome = "runner-up" AND partner = "elizabeth little"
### Context: CREATE TABLE table_name_1 (score VARCHAR, outcome VARCHAR, partner VARCHAR) ### Question: What is the Score with an Outcome of runner-up, and a Partner that is elizabeth little? ### Answer: SELECT score FROM table_name_1 WHERE outcome = "runner-up" AND partner = "elizabeth little"
Who was the pitcher on June 8, 1961?
CREATE TABLE table_name_88 (pitcher VARCHAR, date VARCHAR)
SELECT pitcher FROM table_name_88 WHERE date = "june 8, 1961"
### Context: CREATE TABLE table_name_88 (pitcher VARCHAR, date VARCHAR) ### Question: Who was the pitcher on June 8, 1961? ### Answer: SELECT pitcher FROM table_name_88 WHERE date = "june 8, 1961"
What team had the record asscoiated with the 9th inning?
CREATE TABLE table_name_54 (team VARCHAR, inn VARCHAR)
SELECT team FROM table_name_54 WHERE inn = "9th"
### Context: CREATE TABLE table_name_54 (team VARCHAR, inn VARCHAR) ### Question: What team had the record asscoiated with the 9th inning? ### Answer: SELECT team FROM table_name_54 WHERE inn = "9th"
In what venue did the Boston Red Sox play in?
CREATE TABLE table_name_49 (venue VARCHAR, team VARCHAR)
SELECT venue FROM table_name_49 WHERE team = "boston red sox"
### Context: CREATE TABLE table_name_49 (venue VARCHAR, team VARCHAR) ### Question: In what venue did the Boston Red Sox play in? ### Answer: SELECT venue FROM table_name_49 WHERE team = "boston red sox"
Who was the pitcher with the record recorded in the 7th inning?
CREATE TABLE table_name_55 (pitcher VARCHAR, inn VARCHAR)
SELECT pitcher FROM table_name_55 WHERE inn = "7th"
### Context: CREATE TABLE table_name_55 (pitcher VARCHAR, inn VARCHAR) ### Question: Who was the pitcher with the record recorded in the 7th inning? ### Answer: SELECT pitcher FROM table_name_55 WHERE inn = "7th"
When David E. Finley was the incumbent what was the result?
CREATE TABLE table_name_8 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_8 WHERE incumbent = "david e. finley"
### Context: CREATE TABLE table_name_8 (result VARCHAR, incumbent VARCHAR) ### Question: When David E. Finley was the incumbent what was the result? ### Answer: SELECT result FROM table_name_8 WHERE incumbent = "david e. finley"
When someone was first elected in 1898 what was the result?
CREATE TABLE table_name_53 (result VARCHAR, first_elected VARCHAR)
SELECT result FROM table_name_53 WHERE first_elected = "1898"
### Context: CREATE TABLE table_name_53 (result VARCHAR, first_elected VARCHAR) ### Question: When someone was first elected in 1898 what was the result? ### Answer: SELECT result FROM table_name_53 WHERE first_elected = "1898"
What party has an incumbent of Stanyarne Wilson?
CREATE TABLE table_name_86 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_name_86 WHERE incumbent = "stanyarne wilson"
### Context: CREATE TABLE table_name_86 (party VARCHAR, incumbent VARCHAR) ### Question: What party has an incumbent of Stanyarne Wilson? ### Answer: SELECT party FROM table_name_86 WHERE incumbent = "stanyarne wilson"
When the incumbent was William Elliott, what was the result?
CREATE TABLE table_name_75 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_name_75 WHERE incumbent = "william elliott"
### Context: CREATE TABLE table_name_75 (result VARCHAR, incumbent VARCHAR) ### Question: When the incumbent was William Elliott, what was the result? ### Answer: SELECT result FROM table_name_75 WHERE incumbent = "william elliott"
Score of 2-1, and a Competition of pl, and a Date of december 22, 2006 had what opponents?
CREATE TABLE table_name_84 (opponents VARCHAR, date VARCHAR, score VARCHAR, competition VARCHAR)
SELECT opponents FROM table_name_84 WHERE score = "2-1" AND competition = "pl" AND date = "december 22, 2006"
### Context: CREATE TABLE table_name_84 (opponents VARCHAR, date VARCHAR, score VARCHAR, competition VARCHAR) ### Question: Score of 2-1, and a Competition of pl, and a Date of december 22, 2006 had what opponents? ### Answer: SELECT opponents FROM table_name_84 WHERE score = "2-1" AND competition = "pl" AND date = "december 22, 2006"
Date of april 3, 2007 had what score?
CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_2 WHERE date = "april 3, 2007"
### Context: CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR) ### Question: Date of april 3, 2007 had what score? ### Answer: SELECT score FROM table_name_2 WHERE date = "april 3, 2007"
Competition of pl, and a Score of 1-1, and a Opponents of kelantan had what date?
CREATE TABLE table_name_5 (date VARCHAR, opponents VARCHAR, competition VARCHAR, score VARCHAR)
SELECT date FROM table_name_5 WHERE competition = "pl" AND score = "1-1" AND opponents = "kelantan"
### Context: CREATE TABLE table_name_5 (date VARCHAR, opponents VARCHAR, competition VARCHAR, score VARCHAR) ### Question: Competition of pl, and a Score of 1-1, and a Opponents of kelantan had what date? ### Answer: SELECT date FROM table_name_5 WHERE competition = "pl" AND score = "1-1" AND opponents = "kelantan"
Venue of klfa stadium, cheras, and a Score of 3-3 had what competition?
CREATE TABLE table_name_71 (competition VARCHAR, venue VARCHAR, score VARCHAR)
SELECT competition FROM table_name_71 WHERE venue = "klfa stadium, cheras" AND score = "3-3"
### Context: CREATE TABLE table_name_71 (competition VARCHAR, venue VARCHAR, score VARCHAR) ### Question: Venue of klfa stadium, cheras, and a Score of 3-3 had what competition? ### Answer: SELECT competition FROM table_name_71 WHERE venue = "klfa stadium, cheras" AND score = "3-3"
Opponents of police, and a Venue of selayang municipal council stadium had what date?
CREATE TABLE table_name_35 (date VARCHAR, opponents VARCHAR, venue VARCHAR)
SELECT date FROM table_name_35 WHERE opponents = "police" AND venue = "selayang municipal council stadium"
### Context: CREATE TABLE table_name_35 (date VARCHAR, opponents VARCHAR, venue VARCHAR) ### Question: Opponents of police, and a Venue of selayang municipal council stadium had what date? ### Answer: SELECT date FROM table_name_35 WHERE opponents = "police" AND venue = "selayang municipal council stadium"
Competition of fa cup rd 1 had what venue?
CREATE TABLE table_name_69 (venue VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_69 WHERE competition = "fa cup rd 1"
### Context: CREATE TABLE table_name_69 (venue VARCHAR, competition VARCHAR) ### Question: Competition of fa cup rd 1 had what venue? ### Answer: SELECT venue FROM table_name_69 WHERE competition = "fa cup rd 1"
Who was the visiting team on January 27?
CREATE TABLE table_name_24 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_24 WHERE date = "january 27"
### Context: CREATE TABLE table_name_24 (visitor VARCHAR, date VARCHAR) ### Question: Who was the visiting team on January 27? ### Answer: SELECT visitor FROM table_name_24 WHERE date = "january 27"
What is the home team that played on February 25?
CREATE TABLE table_name_43 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_43 WHERE date = "february 25"
### Context: CREATE TABLE table_name_43 (home VARCHAR, date VARCHAR) ### Question: What is the home team that played on February 25? ### Answer: SELECT home FROM table_name_43 WHERE date = "february 25"
Name the date with chicago visiting
CREATE TABLE table_name_64 (date VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_64 WHERE visitor = "chicago"
### Context: CREATE TABLE table_name_64 (date VARCHAR, visitor VARCHAR) ### Question: Name the date with chicago visiting ### Answer: SELECT date FROM table_name_64 WHERE visitor = "chicago"
Name the home with chicago visiting
CREATE TABLE table_name_76 (home VARCHAR, visitor VARCHAR)
SELECT home FROM table_name_76 WHERE visitor = "chicago"
### Context: CREATE TABLE table_name_76 (home VARCHAR, visitor VARCHAR) ### Question: Name the home with chicago visiting ### Answer: SELECT home FROM table_name_76 WHERE visitor = "chicago"
What is the highest number of apps of the player with more than 63 goals and an avge of 0.45?
CREATE TABLE table_name_55 (apps INTEGER, goals VARCHAR, avge VARCHAR)
SELECT MAX(apps) FROM table_name_55 WHERE goals > 63 AND avge = 0.45
### Context: CREATE TABLE table_name_55 (apps INTEGER, goals VARCHAR, avge VARCHAR) ### Question: What is the highest number of apps of the player with more than 63 goals and an avge of 0.45? ### Answer: SELECT MAX(apps) FROM table_name_55 WHERE goals > 63 AND avge = 0.45
What is the total avge of John Hall, who has less than 63 goals?
CREATE TABLE table_name_25 (avge VARCHAR, name VARCHAR, goals VARCHAR)
SELECT COUNT(avge) FROM table_name_25 WHERE name = "john hall" AND goals < 63
### Context: CREATE TABLE table_name_25 (avge VARCHAR, name VARCHAR, goals VARCHAR) ### Question: What is the total avge of John Hall, who has less than 63 goals? ### Answer: SELECT COUNT(avge) FROM table_name_25 WHERE name = "john hall" AND goals < 63
When did Kim Thompson win with 278 score?
CREATE TABLE table_name_87 (year INTEGER, score VARCHAR, champion VARCHAR)
SELECT SUM(year) FROM table_name_87 WHERE score = "278" AND champion = "kim thompson"
### Context: CREATE TABLE table_name_87 (year INTEGER, score VARCHAR, champion VARCHAR) ### Question: When did Kim Thompson win with 278 score? ### Answer: SELECT SUM(year) FROM table_name_87 WHERE score = "278" AND champion = "kim thompson"
Where did Steve Gotsche win?
CREATE TABLE table_name_26 (venue VARCHAR, champion VARCHAR)
SELECT venue FROM table_name_26 WHERE champion = "steve gotsche"
### Context: CREATE TABLE table_name_26 (venue VARCHAR, champion VARCHAR) ### Question: Where did Steve Gotsche win? ### Answer: SELECT venue FROM table_name_26 WHERE champion = "steve gotsche"
What is the sum of Rank with a build year earlier than 2007 for the howard johnson hotel bucharest?
CREATE TABLE table_name_39 (rank INTEGER, built VARCHAR, building VARCHAR)
SELECT SUM(rank) FROM table_name_39 WHERE built < 2007 AND building = "howard johnson hotel bucharest"
### Context: CREATE TABLE table_name_39 (rank INTEGER, built VARCHAR, building VARCHAR) ### Question: What is the sum of Rank with a build year earlier than 2007 for the howard johnson hotel bucharest? ### Answer: SELECT SUM(rank) FROM table_name_39 WHERE built < 2007 AND building = "howard johnson hotel bucharest"
What is the Height (m/ft) for bucharest Built in 2009, and a Rank of 13?
CREATE TABLE table_name_47 (height__m_ft_ VARCHAR, rank VARCHAR, city VARCHAR, built VARCHAR)
SELECT height__m_ft_ FROM table_name_47 WHERE city = "bucharest" AND built = 2009 AND rank = 13
### Context: CREATE TABLE table_name_47 (height__m_ft_ VARCHAR, rank VARCHAR, city VARCHAR, built VARCHAR) ### Question: What is the Height (m/ft) for bucharest Built in 2009, and a Rank of 13? ### Answer: SELECT height__m_ft_ FROM table_name_47 WHERE city = "bucharest" AND built = 2009 AND rank = 13
What city is the bucharest tower center (btc) located in?
CREATE TABLE table_name_47 (city VARCHAR, building VARCHAR)
SELECT city FROM table_name_47 WHERE building = "bucharest tower center (btc)"
### Context: CREATE TABLE table_name_47 (city VARCHAR, building VARCHAR) ### Question: What city is the bucharest tower center (btc) located in? ### Answer: SELECT city FROM table_name_47 WHERE building = "bucharest tower center (btc)"
What is the name of the building in Bucharest with a rank of less than 12?
CREATE TABLE table_name_90 (building VARCHAR, city VARCHAR, rank VARCHAR)
SELECT building FROM table_name_90 WHERE city = "bucharest" AND rank < 12
### Context: CREATE TABLE table_name_90 (building VARCHAR, city VARCHAR, rank VARCHAR) ### Question: What is the name of the building in Bucharest with a rank of less than 12? ### Answer: SELECT building FROM table_name_90 WHERE city = "bucharest" AND rank < 12
What city was the building built in 1988?
CREATE TABLE table_name_93 (city VARCHAR, built VARCHAR)
SELECT city FROM table_name_93 WHERE built = 1988
### Context: CREATE TABLE table_name_93 (city VARCHAR, built VARCHAR) ### Question: What city was the building built in 1988? ### Answer: SELECT city FROM table_name_93 WHERE built = 1988
What is the score of the Boston Bruins game from April 11?
CREATE TABLE table_name_39 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_39 WHERE home = "boston bruins" AND date = "april 11"
### Context: CREATE TABLE table_name_39 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: What is the score of the Boston Bruins game from April 11? ### Answer: SELECT score FROM table_name_39 WHERE home = "boston bruins" AND date = "april 11"
What is the record of the Hartford Whalers home team with the April 13 game date?
CREATE TABLE table_name_7 (record VARCHAR, home VARCHAR, date VARCHAR)
SELECT record FROM table_name_7 WHERE home = "hartford whalers" AND date = "april 13"
### Context: CREATE TABLE table_name_7 (record VARCHAR, home VARCHAR, date VARCHAR) ### Question: What is the record of the Hartford Whalers home team with the April 13 game date? ### Answer: SELECT record FROM table_name_7 WHERE home = "hartford whalers" AND date = "april 13"
What is the score of the visiting Hartford Whalers game from April 11?
CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT score FROM table_name_8 WHERE visitor = "hartford whalers" AND date = "april 11"
### Context: CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What is the score of the visiting Hartford Whalers game from April 11? ### Answer: SELECT score FROM table_name_8 WHERE visitor = "hartford whalers" AND date = "april 11"
Which Passengers have Carriers of air canada?
CREATE TABLE table_name_65 (passengers VARCHAR, carriers VARCHAR)
SELECT passengers FROM table_name_65 WHERE carriers = "air canada"
### Context: CREATE TABLE table_name_65 (passengers VARCHAR, carriers VARCHAR) ### Question: Which Passengers have Carriers of air canada? ### Answer: SELECT passengers FROM table_name_65 WHERE carriers = "air canada"
Which Metropolitan area has an Airport of toronto pearson international airport?
CREATE TABLE table_name_94 (metropolitan_area VARCHAR, airport VARCHAR)
SELECT metropolitan_area FROM table_name_94 WHERE airport = "toronto pearson international airport"
### Context: CREATE TABLE table_name_94 (metropolitan_area VARCHAR, airport VARCHAR) ### Question: Which Metropolitan area has an Airport of toronto pearson international airport? ### Answer: SELECT metropolitan_area FROM table_name_94 WHERE airport = "toronto pearson international airport"
What is the link for january 31 – february 3, 2011?
CREATE TABLE table_name_64 (link VARCHAR, date_of_polling VARCHAR)
SELECT link FROM table_name_64 WHERE date_of_polling = "january 31 – february 3, 2011"
### Context: CREATE TABLE table_name_64 (link VARCHAR, date_of_polling VARCHAR) ### Question: What is the link for january 31 – february 3, 2011? ### Answer: SELECT link FROM table_name_64 WHERE date_of_polling = "january 31 – february 3, 2011"
On what date of polling was the Polling Firm forum research with 7 green and less than 30 liberals?
CREATE TABLE table_name_2 (date_of_polling VARCHAR, liberal VARCHAR, polling_firm VARCHAR, green VARCHAR)
SELECT date_of_polling FROM table_name_2 WHERE polling_firm = "forum research" AND green = 7 AND liberal < 30
### Context: CREATE TABLE table_name_2 (date_of_polling VARCHAR, liberal VARCHAR, polling_firm VARCHAR, green VARCHAR) ### Question: On what date of polling was the Polling Firm forum research with 7 green and less than 30 liberals? ### Answer: SELECT date_of_polling FROM table_name_2 WHERE polling_firm = "forum research" AND green = 7 AND liberal < 30
Which september 26–28, 2011 polling firm had a Link of html, less than 36 liberals, and less than 8 green?
CREATE TABLE table_name_96 (polling_firm VARCHAR, date_of_polling VARCHAR, green VARCHAR, link VARCHAR, liberal VARCHAR)
SELECT polling_firm FROM table_name_96 WHERE link = "html" AND liberal < 36 AND green < 8 AND date_of_polling = "september 26–28, 2011"
### Context: CREATE TABLE table_name_96 (polling_firm VARCHAR, date_of_polling VARCHAR, green VARCHAR, link VARCHAR, liberal VARCHAR) ### Question: Which september 26–28, 2011 polling firm had a Link of html, less than 36 liberals, and less than 8 green? ### Answer: SELECT polling_firm FROM table_name_96 WHERE link = "html" AND liberal < 36 AND green < 8 AND date_of_polling = "september 26–28, 2011"
What june 21–22, 2011 polling has green smaller than 13?
CREATE TABLE table_name_89 (polling_firm VARCHAR, green VARCHAR, date_of_polling VARCHAR)
SELECT polling_firm FROM table_name_89 WHERE green < 13 AND date_of_polling = "june 21–22, 2011"
### Context: CREATE TABLE table_name_89 (polling_firm VARCHAR, green VARCHAR, date_of_polling VARCHAR) ### Question: What june 21–22, 2011 polling has green smaller than 13? ### Answer: SELECT polling_firm FROM table_name_89 WHERE green < 13 AND date_of_polling = "june 21–22, 2011"