question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
when the points for is 139 is points difference? | CREATE TABLE table_20396710_1 (points_difference VARCHAR, points_for VARCHAR) | SELECT COUNT(points_difference) FROM table_20396710_1 WHERE points_for = "139" | ### Context: CREATE TABLE table_20396710_1 (points_difference VARCHAR, points_for VARCHAR) ### Question: when the points for is 139 is points difference? ### Answer: SELECT COUNT(points_difference) FROM table_20396710_1 WHERE points_for = "139" |
when points against is points again, which are the drawn? | CREATE TABLE table_20396710_1 (drawn VARCHAR) | SELECT drawn FROM table_20396710_1 WHERE "points_against" = "points_against" | ### Context: CREATE TABLE table_20396710_1 (drawn VARCHAR) ### Question: when points against is points again, which are the drawn? ### Answer: SELECT drawn FROM table_20396710_1 WHERE "points_against" = "points_against" |
when points for is 39 what is the total number of drawn | CREATE TABLE table_20396710_1 (drawn VARCHAR, points_for VARCHAR) | SELECT drawn FROM table_20396710_1 WHERE points_for = "39" | ### Context: CREATE TABLE table_20396710_1 (drawn VARCHAR, points_for VARCHAR) ### Question: when points for is 39 what is the total number of drawn ### Answer: SELECT drawn FROM table_20396710_1 WHERE points_for = "39" |
what is the mccain % where obama got 19.3% | CREATE TABLE table_20424014_1 (mccain__percentage VARCHAR, obama__percentage VARCHAR) | SELECT mccain__percentage FROM table_20424014_1 WHERE obama__percentage = "19.3%" | ### Context: CREATE TABLE table_20424014_1 (mccain__percentage VARCHAR, obama__percentage VARCHAR) ### Question: what is the mccain % where obama got 19.3% ### Answer: SELECT mccain__percentage FROM table_20424014_1 WHERE obama__percentage = "19.3%" |
what is the highest mccain # where obama got 33.7% | CREATE TABLE table_20424014_1 (mccain__number INTEGER, obama__percentage VARCHAR) | SELECT MAX(mccain__number) FROM table_20424014_1 WHERE obama__percentage = "33.7%" | ### Context: CREATE TABLE table_20424014_1 (mccain__number INTEGER, obama__percentage VARCHAR) ### Question: what is the highest mccain # where obama got 33.7% ### Answer: SELECT MAX(mccain__number) FROM table_20424014_1 WHERE obama__percentage = "33.7%" |
where did obama get 39.8% | CREATE TABLE table_20424014_1 (county VARCHAR, obama__percentage VARCHAR) | SELECT county FROM table_20424014_1 WHERE obama__percentage = "39.8%" | ### Context: CREATE TABLE table_20424014_1 (county VARCHAR, obama__percentage VARCHAR) ### Question: where did obama get 39.8% ### Answer: SELECT county FROM table_20424014_1 WHERE obama__percentage = "39.8%" |
what is the obama # in carson city | CREATE TABLE table_20424014_1 (obama__number VARCHAR, county VARCHAR) | SELECT obama__number FROM table_20424014_1 WHERE county = "Carson City" | ### Context: CREATE TABLE table_20424014_1 (obama__number VARCHAR, county VARCHAR) ### Question: what is the obama # in carson city ### Answer: SELECT obama__number FROM table_20424014_1 WHERE county = "Carson City" |
where did obama get 41.3% | CREATE TABLE table_20424014_1 (county VARCHAR, obama__percentage VARCHAR) | SELECT county FROM table_20424014_1 WHERE obama__percentage = "41.3%" | ### Context: CREATE TABLE table_20424014_1 (county VARCHAR, obama__percentage VARCHAR) ### Question: where did obama get 41.3% ### Answer: SELECT county FROM table_20424014_1 WHERE obama__percentage = "41.3%" |
Name the number of season for team bruichladdich | CREATE TABLE table_20398823_1 (season VARCHAR, team VARCHAR) | SELECT COUNT(season) FROM table_20398823_1 WHERE team = "team Bruichladdich" | ### Context: CREATE TABLE table_20398823_1 (season VARCHAR, team VARCHAR) ### Question: Name the number of season for team bruichladdich ### Answer: SELECT COUNT(season) FROM table_20398823_1 WHERE team = "team Bruichladdich" |
Name the least podiums for 49 points | CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR) | SELECT MIN(podiums) FROM table_20398823_1 WHERE points = "49" | ### Context: CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR) ### Question: Name the least podiums for 49 points ### Answer: SELECT MIN(podiums) FROM table_20398823_1 WHERE points = "49" |
Name the least f/laps | CREATE TABLE table_20398823_1 (f_laps INTEGER) | SELECT MIN(f_laps) FROM table_20398823_1 | ### Context: CREATE TABLE table_20398823_1 (f_laps INTEGER) ### Question: Name the least f/laps ### Answer: SELECT MIN(f_laps) FROM table_20398823_1 |
Namet he season for wins being 0 and 20 races | CREATE TABLE table_20398823_1 (season VARCHAR, wins VARCHAR, races VARCHAR) | SELECT season FROM table_20398823_1 WHERE wins = 0 AND races = 20 | ### Context: CREATE TABLE table_20398823_1 (season VARCHAR, wins VARCHAR, races VARCHAR) ### Question: Namet he season for wins being 0 and 20 races ### Answer: SELECT season FROM table_20398823_1 WHERE wins = 0 AND races = 20 |
Name the least podiums for 0 wins and 2005 season for 321 points | CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR, wins VARCHAR, season VARCHAR) | SELECT MIN(podiums) FROM table_20398823_1 WHERE wins = 0 AND season = 2005 AND points = "321" | ### Context: CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR, wins VARCHAR, season VARCHAR) ### Question: Name the least podiums for 0 wins and 2005 season for 321 points ### Answer: SELECT MIN(podiums) FROM table_20398823_1 WHERE wins = 0 AND season = 2005 AND points = "321" |
What is the Spanish title of the film whose title used in nomination was Ogu and Mampato in Rapa Nui? | CREATE TABLE table_20404716_1 (spanish_title VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT spanish_title FROM table_20404716_1 WHERE film_title_used_in_nomination = "Ogu and Mampato in Rapa Nui" | ### Context: CREATE TABLE table_20404716_1 (spanish_title VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: What is the Spanish title of the film whose title used in nomination was Ogu and Mampato in Rapa Nui? ### Answer: SELECT spanish_title FROM table_20404716_1 WHERE film_title_used_in_nomination = "Ogu... |
Who was the director of the film that was not nominated and had the Spanish title of play? | CREATE TABLE table_20404716_1 (director VARCHAR, result VARCHAR, spanish_title VARCHAR) | SELECT director FROM table_20404716_1 WHERE result = "Not Nominated" AND spanish_title = "Play" | ### Context: CREATE TABLE table_20404716_1 (director VARCHAR, result VARCHAR, spanish_title VARCHAR) ### Question: Who was the director of the film that was not nominated and had the Spanish title of play? ### Answer: SELECT director FROM table_20404716_1 WHERE result = "Not Nominated" AND spanish_title = "Play" |
How many couples have an average of 25.3? | CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR) | SELECT COUNT(couple) FROM table_20424140_3 WHERE average = "25.3" | ### Context: CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR) ### Question: How many couples have an average of 25.3? ### Answer: SELECT COUNT(couple) FROM table_20424140_3 WHERE average = "25.3" |
How many different numbers of total dances are there for the couple ranked at number 6? | CREATE TABLE table_20424140_3 (number_of_dances VARCHAR, place VARCHAR) | SELECT COUNT(number_of_dances) FROM table_20424140_3 WHERE place = 6 | ### Context: CREATE TABLE table_20424140_3 (number_of_dances VARCHAR, place VARCHAR) ### Question: How many different numbers of total dances are there for the couple ranked at number 6? ### Answer: SELECT COUNT(number_of_dances) FROM table_20424140_3 WHERE place = 6 |
What couple has an average of 17.2? | CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR) | SELECT couple FROM table_20424140_3 WHERE average = "17.2" | ### Context: CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR) ### Question: What couple has an average of 17.2? ### Answer: SELECT couple FROM table_20424140_3 WHERE average = "17.2" |
What's the minimal number of dances a couple has danced? | CREATE TABLE table_20424140_3 (number_of_dances INTEGER) | SELECT MIN(number_of_dances) FROM table_20424140_3 | ### Context: CREATE TABLE table_20424140_3 (number_of_dances INTEGER) ### Question: What's the minimal number of dances a couple has danced? ### Answer: SELECT MIN(number_of_dances) FROM table_20424140_3 |
What's the highest number a couple has ranked at? | CREATE TABLE table_20424140_3 (place INTEGER) | SELECT MAX(place) FROM table_20424140_3 | ### Context: CREATE TABLE table_20424140_3 (place INTEGER) ### Question: What's the highest number a couple has ranked at? ### Answer: SELECT MAX(place) FROM table_20424140_3 |
How many crops were damaged when the public property damage was 1,03,049.60? | CREATE TABLE table_20403667_2 (crop_damaged__in_lakh_inr__ VARCHAR, public_property_damaged__in_lakh_inr__ VARCHAR) | SELECT crop_damaged__in_lakh_inr__ FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = "1,03,049.60" | ### Context: CREATE TABLE table_20403667_2 (crop_damaged__in_lakh_inr__ VARCHAR, public_property_damaged__in_lakh_inr__ VARCHAR) ### Question: How many crops were damaged when the public property damage was 1,03,049.60? ### Answer: SELECT crop_damaged__in_lakh_inr__ FROM table_20403667_2 WHERE public_property_damaged__... |
What is the panchayat when the public property damage was 1,03,049.60 | CREATE TABLE table_20403667_2 (panchayat INTEGER, public_property_damaged__in_lakh_inr__ VARCHAR) | SELECT MAX(panchayat) FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = "1,03,049.60" | ### Context: CREATE TABLE table_20403667_2 (panchayat INTEGER, public_property_damaged__in_lakh_inr__ VARCHAR) ### Question: What is the panchayat when the public property damage was 1,03,049.60 ### Answer: SELECT MAX(panchayat) FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = "1,03,049.60" |
What is the largest village that had 103279 houses affected? | CREATE TABLE table_20403667_2 (village INTEGER, house_affected VARCHAR) | SELECT MAX(village) FROM table_20403667_2 WHERE house_affected = 103279 | ### Context: CREATE TABLE table_20403667_2 (village INTEGER, house_affected VARCHAR) ### Question: What is the largest village that had 103279 houses affected? ### Answer: SELECT MAX(village) FROM table_20403667_2 WHERE house_affected = 103279 |
What is the smallest district that had 33.25 in animals | CREATE TABLE table_20403667_2 (district INTEGER, animal__in_lakh__ VARCHAR) | SELECT MIN(district) FROM table_20403667_2 WHERE animal__in_lakh__ = "33.25" | ### Context: CREATE TABLE table_20403667_2 (district INTEGER, animal__in_lakh__ VARCHAR) ### Question: What is the smallest district that had 33.25 in animals ### Answer: SELECT MIN(district) FROM table_20403667_2 WHERE animal__in_lakh__ = "33.25" |
How many districts had crib damage of 1,164.50? | CREATE TABLE table_20403667_2 (district VARCHAR, crop_damaged__in_lakh_inr__ VARCHAR) | SELECT COUNT(district) FROM table_20403667_2 WHERE crop_damaged__in_lakh_inr__ = "1,164.50" | ### Context: CREATE TABLE table_20403667_2 (district VARCHAR, crop_damaged__in_lakh_inr__ VARCHAR) ### Question: How many districts had crib damage of 1,164.50? ### Answer: SELECT COUNT(district) FROM table_20403667_2 WHERE crop_damaged__in_lakh_inr__ = "1,164.50" |
Where did Obama get 37.1%? | CREATE TABLE table_20453681_1 (county VARCHAR, obama_percentage VARCHAR) | SELECT county FROM table_20453681_1 WHERE obama_percentage = "37.1%" | ### Context: CREATE TABLE table_20453681_1 (county VARCHAR, obama_percentage VARCHAR) ### Question: Where did Obama get 37.1%? ### Answer: SELECT county FROM table_20453681_1 WHERE obama_percentage = "37.1%" |
What's the county where McCain got 60.6% and Obama got 37.3%? | CREATE TABLE table_20453681_1 (county VARCHAR, mccain_percentage VARCHAR, obama_percentage VARCHAR) | SELECT county FROM table_20453681_1 WHERE mccain_percentage = "60.6%" AND obama_percentage = "37.3%" | ### Context: CREATE TABLE table_20453681_1 (county VARCHAR, mccain_percentage VARCHAR, obama_percentage VARCHAR) ### Question: What's the county where McCain got 60.6% and Obama got 37.3%? ### Answer: SELECT county FROM table_20453681_1 WHERE mccain_percentage = "60.6%" AND obama_percentage = "37.3%" |
What's the number of McCain votes in the county where Obama got 35.7% and others got 1.9% of the votes? | CREATE TABLE table_20453681_1 (mccain_number INTEGER, obama_percentage VARCHAR, others_percentage VARCHAR) | SELECT MIN(mccain_number) FROM table_20453681_1 WHERE obama_percentage = "35.7%" AND others_percentage = "1.9%" | ### Context: CREATE TABLE table_20453681_1 (mccain_number INTEGER, obama_percentage VARCHAR, others_percentage VARCHAR) ### Question: What's the number of McCain votes in the county where Obama got 35.7% and others got 1.9% of the votes? ### Answer: SELECT MIN(mccain_number) FROM table_20453681_1 WHERE obama_percentage... |
How many votes did Obama get in Geauga? | CREATE TABLE table_20453681_1 (obama_number VARCHAR, county VARCHAR) | SELECT obama_number FROM table_20453681_1 WHERE county = "Geauga" | ### Context: CREATE TABLE table_20453681_1 (obama_number VARCHAR, county VARCHAR) ### Question: How many votes did Obama get in Geauga? ### Answer: SELECT obama_number FROM table_20453681_1 WHERE county = "Geauga" |
How many people voted for others in the county where McCain got 65.5% of the votes? | CREATE TABLE table_20453681_1 (others VARCHAR, mccain_percentage VARCHAR) | SELECT others FROM table_20453681_1 WHERE mccain_percentage = "65.5%" | ### Context: CREATE TABLE table_20453681_1 (others VARCHAR, mccain_percentage VARCHAR) ### Question: How many people voted for others in the county where McCain got 65.5% of the votes? ### Answer: SELECT others FROM table_20453681_1 WHERE mccain_percentage = "65.5%" |
What is Phil Taylor's 3-dart average? | CREATE TABLE table_20463779_22 (player VARCHAR) | SELECT 3 AS _dart_average FROM table_20463779_22 WHERE player = "Phil Taylor" | ### Context: CREATE TABLE table_20463779_22 (player VARCHAR) ### Question: What is Phil Taylor's 3-dart average? ### Answer: SELECT 3 AS _dart_average FROM table_20463779_22 WHERE player = "Phil Taylor" |
Who is the guest 3 in the show where guest 4 is Jill Douglas? | CREATE TABLE table_20466963_4 (guest_3 VARCHAR, guest_4 VARCHAR) | SELECT guest_3 FROM table_20466963_4 WHERE guest_4 = "Jill Douglas" | ### Context: CREATE TABLE table_20466963_4 (guest_3 VARCHAR, guest_4 VARCHAR) ### Question: Who is the guest 3 in the show where guest 4 is Jill Douglas? ### Answer: SELECT guest_3 FROM table_20466963_4 WHERE guest_4 = "Jill Douglas" |
Who is the guest 2 in the episode where guest 4 is Iyare Igiehon and guest 3 is John Oliver? | CREATE TABLE table_20466963_4 (guest_2 VARCHAR, guest_4 VARCHAR, guest_3 VARCHAR) | SELECT guest_2 FROM table_20466963_4 WHERE guest_4 = "Iyare Igiehon" AND guest_3 = "John Oliver" | ### Context: CREATE TABLE table_20466963_4 (guest_2 VARCHAR, guest_4 VARCHAR, guest_3 VARCHAR) ### Question: Who is the guest 2 in the episode where guest 4 is Iyare Igiehon and guest 3 is John Oliver? ### Answer: SELECT guest_2 FROM table_20466963_4 WHERE guest_4 = "Iyare Igiehon" AND guest_3 = "John Oliver" |
Who is the guest 1 in the episode where guest 4 is Jill Douglas? | CREATE TABLE table_20466963_4 (guest_1 VARCHAR, guest_4 VARCHAR) | SELECT guest_1 FROM table_20466963_4 WHERE guest_4 = "Jill Douglas" | ### Context: CREATE TABLE table_20466963_4 (guest_1 VARCHAR, guest_4 VARCHAR) ### Question: Who is the guest 1 in the episode where guest 4 is Jill Douglas? ### Answer: SELECT guest_1 FROM table_20466963_4 WHERE guest_4 = "Jill Douglas" |
How many dates are associated with a guest 4 being Jim Jeffries (debut)? | CREATE TABLE table_20466963_4 (date VARCHAR, guest_4 VARCHAR) | SELECT COUNT(date) FROM table_20466963_4 WHERE guest_4 = "Jim Jeffries (debut)" | ### Context: CREATE TABLE table_20466963_4 (date VARCHAR, guest_4 VARCHAR) ### Question: How many dates are associated with a guest 4 being Jim Jeffries (debut)? ### Answer: SELECT COUNT(date) FROM table_20466963_4 WHERE guest_4 = "Jim Jeffries (debut)" |
What is the date of the episode in which the presenter is Johnny Vaughan? | CREATE TABLE table_20466963_4 (date VARCHAR, presenter VARCHAR) | SELECT date FROM table_20466963_4 WHERE presenter = "Johnny Vaughan" | ### Context: CREATE TABLE table_20466963_4 (date VARCHAR, presenter VARCHAR) ### Question: What is the date of the episode in which the presenter is Johnny Vaughan? ### Answer: SELECT date FROM table_20466963_4 WHERE presenter = "Johnny Vaughan" |
Name the guest 4 for 8 december | CREATE TABLE table_20466963_13 (guest_4 VARCHAR, date VARCHAR) | SELECT guest_4 FROM table_20466963_13 WHERE date = "8 December" | ### Context: CREATE TABLE table_20466963_13 (guest_4 VARCHAR, date VARCHAR) ### Question: Name the guest 4 for 8 december ### Answer: SELECT guest_4 FROM table_20466963_13 WHERE date = "8 December" |
Name the guest 4 for steve lamacq | CREATE TABLE table_20466963_13 (guest_4 VARCHAR, guest_2 VARCHAR) | SELECT guest_4 FROM table_20466963_13 WHERE guest_2 = "Steve Lamacq" | ### Context: CREATE TABLE table_20466963_13 (guest_4 VARCHAR, guest_2 VARCHAR) ### Question: Name the guest 4 for steve lamacq ### Answer: SELECT guest_4 FROM table_20466963_13 WHERE guest_2 = "Steve Lamacq" |
Name the guest 2 for colin murray 6 april | CREATE TABLE table_20466963_13 (guest_2 VARCHAR, presenter VARCHAR, date VARCHAR) | SELECT COUNT(guest_2) FROM table_20466963_13 WHERE presenter = "Colin Murray" AND date = "6 April" | ### Context: CREATE TABLE table_20466963_13 (guest_2 VARCHAR, presenter VARCHAR, date VARCHAR) ### Question: Name the guest 2 for colin murray 6 april ### Answer: SELECT COUNT(guest_2) FROM table_20466963_13 WHERE presenter = "Colin Murray" AND date = "6 April" |
Name the presenter 11 may | CREATE TABLE table_20466963_13 (presenter VARCHAR, date VARCHAR) | SELECT presenter FROM table_20466963_13 WHERE date = "11 May" | ### Context: CREATE TABLE table_20466963_13 (presenter VARCHAR, date VARCHAR) ### Question: Name the presenter 11 may ### Answer: SELECT presenter FROM table_20466963_13 WHERE date = "11 May" |
Name the guest 3 for iyare igiehon | CREATE TABLE table_20466963_13 (guest_3 VARCHAR, guest_2 VARCHAR) | SELECT guest_3 FROM table_20466963_13 WHERE guest_2 = "Iyare Igiehon" | ### Context: CREATE TABLE table_20466963_13 (guest_3 VARCHAR, guest_2 VARCHAR) ### Question: Name the guest 3 for iyare igiehon ### Answer: SELECT guest_3 FROM table_20466963_13 WHERE guest_2 = "Iyare Igiehon" |
How many seasons featured 29 conversions? | CREATE TABLE table_20505342_1 (penalties VARCHAR, conversions VARCHAR) | SELECT COUNT(penalties) FROM table_20505342_1 WHERE conversions = 29 | ### Context: CREATE TABLE table_20505342_1 (penalties VARCHAR, conversions VARCHAR) ### Question: How many seasons featured 29 conversions? ### Answer: SELECT COUNT(penalties) FROM table_20505342_1 WHERE conversions = 29 |
Lowest number of drop goals? | CREATE TABLE table_20505342_1 (drop_goals INTEGER) | SELECT MIN(drop_goals) FROM table_20505342_1 | ### Context: CREATE TABLE table_20505342_1 (drop_goals INTEGER) ### Question: Lowest number of drop goals? ### Answer: SELECT MIN(drop_goals) FROM table_20505342_1 |
What is the point total for the season with 2 drop goals? | CREATE TABLE table_20505342_1 (total_points INTEGER, drop_goals VARCHAR) | SELECT MIN(total_points) FROM table_20505342_1 WHERE drop_goals = 2 | ### Context: CREATE TABLE table_20505342_1 (total_points INTEGER, drop_goals VARCHAR) ### Question: What is the point total for the season with 2 drop goals? ### Answer: SELECT MIN(total_points) FROM table_20505342_1 WHERE drop_goals = 2 |
Name the most obama number for mccain being 38.86% | CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_percentage VARCHAR) | SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_percentage = "38.86%" | ### Context: CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_percentage VARCHAR) ### Question: Name the most obama number for mccain being 38.86% ### Answer: SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_percentage = "38.86%" |
Name the most abama number for mccain being 29266 | CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_number VARCHAR) | SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_number = 29266 | ### Context: CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_number VARCHAR) ### Question: Name the most abama number for mccain being 29266 ### Answer: SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_number = 29266 |
Name the county for mccain being 38.78% | CREATE TABLE table_20468206_1 (county VARCHAR, mccain_percentage VARCHAR) | SELECT county FROM table_20468206_1 WHERE mccain_percentage = "38.78%" | ### Context: CREATE TABLE table_20468206_1 (county VARCHAR, mccain_percentage VARCHAR) ### Question: Name the county for mccain being 38.78% ### Answer: SELECT county FROM table_20468206_1 WHERE mccain_percentage = "38.78%" |
In how many counties di McCain win 41.62% of the vote? | CREATE TABLE table_20524090_1 (county VARCHAR, mccain_percentage VARCHAR) | SELECT COUNT(county) FROM table_20524090_1 WHERE mccain_percentage = "41.62%" | ### Context: CREATE TABLE table_20524090_1 (county VARCHAR, mccain_percentage VARCHAR) ### Question: In how many counties di McCain win 41.62% of the vote? ### Answer: SELECT COUNT(county) FROM table_20524090_1 WHERE mccain_percentage = "41.62%" |
What percentage of the vote did McCain win in Waynesboro (city)? | CREATE TABLE table_20524090_1 (mccain_percentage VARCHAR, county VARCHAR) | SELECT mccain_percentage FROM table_20524090_1 WHERE county = "Waynesboro (city)" | ### Context: CREATE TABLE table_20524090_1 (mccain_percentage VARCHAR, county VARCHAR) ### Question: What percentage of the vote did McCain win in Waynesboro (city)? ### Answer: SELECT mccain_percentage FROM table_20524090_1 WHERE county = "Waynesboro (city)" |
What was Obama's percentage in those places where McCain's percentage was 55.46%? | CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, mccain_percentage VARCHAR) | SELECT obama_percentage FROM table_20524090_1 WHERE mccain_percentage = "55.46%" | ### Context: CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, mccain_percentage VARCHAR) ### Question: What was Obama's percentage in those places where McCain's percentage was 55.46%? ### Answer: SELECT obama_percentage FROM table_20524090_1 WHERE mccain_percentage = "55.46%" |
What was Obama's percentage in the county of Alleghany? | CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR) | SELECT obama_percentage FROM table_20524090_1 WHERE county = "Alleghany" | ### Context: CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR) ### Question: What was Obama's percentage in the county of Alleghany? ### Answer: SELECT obama_percentage FROM table_20524090_1 WHERE county = "Alleghany" |
What was Obama's percentage in the county of Surry? | CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR) | SELECT obama_percentage FROM table_20524090_1 WHERE county = "Surry" | ### Context: CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR) ### Question: What was Obama's percentage in the county of Surry? ### Answer: SELECT obama_percentage FROM table_20524090_1 WHERE county = "Surry" |
How many percent of the votes in Debaca did McCain get? | CREATE TABLE table_20539826_1 (mccain_percentage VARCHAR, county VARCHAR) | SELECT mccain_percentage FROM table_20539826_1 WHERE county = "DeBaca" | ### Context: CREATE TABLE table_20539826_1 (mccain_percentage VARCHAR, county VARCHAR) ### Question: How many percent of the votes in Debaca did McCain get? ### Answer: SELECT mccain_percentage FROM table_20539826_1 WHERE county = "DeBaca" |
What percentage of the votes did Obama get in the county where 3909 people voted in total? | CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, total VARCHAR) | SELECT obama_percentage FROM table_20539826_1 WHERE total = 3909 | ### Context: CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, total VARCHAR) ### Question: What percentage of the votes did Obama get in the county where 3909 people voted in total? ### Answer: SELECT obama_percentage FROM table_20539826_1 WHERE total = 3909 |
What percentage of the votes did Obama get in the county where McCain got 3648 votes? | CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, mccain_number VARCHAR) | SELECT obama_percentage FROM table_20539826_1 WHERE mccain_number = 3648 | ### Context: CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, mccain_number VARCHAR) ### Question: What percentage of the votes did Obama get in the county where McCain got 3648 votes? ### Answer: SELECT obama_percentage FROM table_20539826_1 WHERE mccain_number = 3648 |
Who was the winner when the SEC team LSU played? | CREATE TABLE table_20540006_6 (winner VARCHAR, sec_team VARCHAR) | SELECT winner FROM table_20540006_6 WHERE sec_team = "LSU" | ### Context: CREATE TABLE table_20540006_6 (winner VARCHAR, sec_team VARCHAR) ### Question: Who was the winner when the SEC team LSU played? ### Answer: SELECT winner FROM table_20540006_6 WHERE sec_team = "LSU" |
What was the attendance for the game when the challenge leader was at Big East (4-2)? | CREATE TABLE table_20540006_6 (attendance INTEGER, challenge_leader VARCHAR) | SELECT MAX(attendance) FROM table_20540006_6 WHERE challenge_leader = "Big East (4-2)" | ### Context: CREATE TABLE table_20540006_6 (attendance INTEGER, challenge_leader VARCHAR) ### Question: What was the attendance for the game when the challenge leader was at Big East (4-2)? ### Answer: SELECT MAX(attendance) FROM table_20540006_6 WHERE challenge_leader = "Big East (4-2)" |
What suumer team was James Lomangino from St. John's on? | CREATE TABLE table_20589703_2 (summer_team VARCHAR, college VARCHAR, player VARCHAR) | SELECT summer_team FROM table_20589703_2 WHERE college = "St. John's" AND player = "James Lomangino" | ### Context: CREATE TABLE table_20589703_2 (summer_team VARCHAR, college VARCHAR, player VARCHAR) ### Question: What suumer team was James Lomangino from St. John's on? ### Answer: SELECT summer_team FROM table_20589703_2 WHERE college = "St. John's" AND player = "James Lomangino" |
In what draft round in 2012 did a player from Rio Hondo get drafted? | CREATE TABLE table_20589703_2 (draft_round VARCHAR, college VARCHAR, draft_year VARCHAR) | SELECT draft_round FROM table_20589703_2 WHERE college = "Rio Hondo" AND draft_year = 2012 | ### Context: CREATE TABLE table_20589703_2 (draft_round VARCHAR, college VARCHAR, draft_year VARCHAR) ### Question: In what draft round in 2012 did a player from Rio Hondo get drafted? ### Answer: SELECT draft_round FROM table_20589703_2 WHERE college = "Rio Hondo" AND draft_year = 2012 |
What college did Aaron Slegers attend? | CREATE TABLE table_20589703_2 (college VARCHAR, player VARCHAR) | SELECT college FROM table_20589703_2 WHERE player = "Aaron Slegers" | ### Context: CREATE TABLE table_20589703_2 (college VARCHAR, player VARCHAR) ### Question: What college did Aaron Slegers attend? ### Answer: SELECT college FROM table_20589703_2 WHERE player = "Aaron Slegers" |
What are the statuses of the platelet counts for the conditions where the prothrombin time and partial thromboblastin time is unaffected? | CREATE TABLE table_20592988_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR) | SELECT platelet_count FROM table_20592988_1 WHERE prothrombin_time = "Unaffected" AND partial_thromboplastin_time = "Unaffected" | ### Context: CREATE TABLE table_20592988_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR) ### Question: What are the statuses of the platelet counts for the conditions where the prothrombin time and partial thromboblastin time is unaffected? ### Answer: SELECT platelet_count FR... |
What is the status of partial thromboplastin times for conditions where the platelet count is decreased? | CREATE TABLE table_20592988_1 (partial_thromboplastin_time VARCHAR, platelet_count VARCHAR) | SELECT partial_thromboplastin_time FROM table_20592988_1 WHERE platelet_count = "Decreased" | ### Context: CREATE TABLE table_20592988_1 (partial_thromboplastin_time VARCHAR, platelet_count VARCHAR) ### Question: What is the status of partial thromboplastin times for conditions where the platelet count is decreased? ### Answer: SELECT partial_thromboplastin_time FROM table_20592988_1 WHERE platelet_count = "De... |
In what conditions are both the platelet count and prothrombin time unaffected? | CREATE TABLE table_20592988_1 (condition VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR) | SELECT condition FROM table_20592988_1 WHERE platelet_count = "Unaffected" AND prothrombin_time = "Unaffected" | ### Context: CREATE TABLE table_20592988_1 (condition VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR) ### Question: In what conditions are both the platelet count and prothrombin time unaffected? ### Answer: SELECT condition FROM table_20592988_1 WHERE platelet_count = "Unaffected" AND prothrombin_time = "U... |
What is the status of bleeding time for thrombocytopenia? | CREATE TABLE table_20592988_1 (bleeding_time VARCHAR, condition VARCHAR) | SELECT bleeding_time FROM table_20592988_1 WHERE condition = "Thrombocytopenia" | ### Context: CREATE TABLE table_20592988_1 (bleeding_time VARCHAR, condition VARCHAR) ### Question: What is the status of bleeding time for thrombocytopenia? ### Answer: SELECT bleeding_time FROM table_20592988_1 WHERE condition = "Thrombocytopenia" |
What is the status of platelet counts for conditions where bleeding time is prolonged and partial thromboplastin time is unaffected? | CREATE TABLE table_20592988_1 (platelet_count VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR) | SELECT platelet_count FROM table_20592988_1 WHERE bleeding_time = "Prolonged" AND partial_thromboplastin_time = "Unaffected" | ### Context: CREATE TABLE table_20592988_1 (platelet_count VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR) ### Question: What is the status of platelet counts for conditions where bleeding time is prolonged and partial thromboplastin time is unaffected? ### Answer: SELECT platelet_count FROM table... |
Which players made exactly 8 cuts? | CREATE TABLE table_20590020_2 (player VARCHAR, cuts_made VARCHAR) | SELECT player FROM table_20590020_2 WHERE cuts_made = 8 | ### Context: CREATE TABLE table_20590020_2 (player VARCHAR, cuts_made VARCHAR) ### Question: Which players made exactly 8 cuts? ### Answer: SELECT player FROM table_20590020_2 WHERE cuts_made = 8 |
What is the total number of entries for Leif Olson? | CREATE TABLE table_20590020_2 (starts VARCHAR, player VARCHAR) | SELECT COUNT(starts) FROM table_20590020_2 WHERE player = "Leif Olson" | ### Context: CREATE TABLE table_20590020_2 (starts VARCHAR, player VARCHAR) ### Question: What is the total number of entries for Leif Olson? ### Answer: SELECT COUNT(starts) FROM table_20590020_2 WHERE player = "Leif Olson" |
What is the total number of players who had a money list rank of 96? | CREATE TABLE table_20590020_2 (best_finish VARCHAR, money_list_rank VARCHAR) | SELECT COUNT(best_finish) FROM table_20590020_2 WHERE money_list_rank = 96 | ### Context: CREATE TABLE table_20590020_2 (best_finish VARCHAR, money_list_rank VARCHAR) ### Question: What is the total number of players who had a money list rank of 96? ### Answer: SELECT COUNT(best_finish) FROM table_20590020_2 WHERE money_list_rank = 96 |
what is the name for br no. 60501 | CREATE TABLE table_20595642_2 (name VARCHAR, br_no VARCHAR) | SELECT name FROM table_20595642_2 WHERE br_no = 60501 | ### Context: CREATE TABLE table_20595642_2 (name VARCHAR, br_no VARCHAR) ### Question: what is the name for br no. 60501 ### Answer: SELECT name FROM table_20595642_2 WHERE br_no = 60501 |
When 23% scott mcadams (d) what are the dates administered? | CREATE TABLE table_20597634_3 (dates_administered VARCHAR, scott_mcadams__d_ VARCHAR) | SELECT dates_administered FROM table_20597634_3 WHERE scott_mcadams__d_ = "23%" | ### Context: CREATE TABLE table_20597634_3 (dates_administered VARCHAR, scott_mcadams__d_ VARCHAR) ### Question: When 23% scott mcadams (d) what are the dates administered? ### Answer: SELECT dates_administered FROM table_20597634_3 WHERE scott_mcadams__d_ = "23%" |
When 30% is scott mcadams (d) percentage how many poll sources are there? | CREATE TABLE table_20597634_3 (poll_source VARCHAR, scott_mcadams__d_ VARCHAR) | SELECT COUNT(poll_source) FROM table_20597634_3 WHERE scott_mcadams__d_ = "30%" | ### Context: CREATE TABLE table_20597634_3 (poll_source VARCHAR, scott_mcadams__d_ VARCHAR) ### Question: When 30% is scott mcadams (d) percentage how many poll sources are there? ### Answer: SELECT COUNT(poll_source) FROM table_20597634_3 WHERE scott_mcadams__d_ = "30%" |
Name the revenue for eps being 1.19 | CREATE TABLE table_20614109_1 (revenue__ INTEGER, earnings_per_share__€_ VARCHAR) | SELECT MAX(revenue__) AS €million_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.19" | ### Context: CREATE TABLE table_20614109_1 (revenue__ INTEGER, earnings_per_share__€_ VARCHAR) ### Question: Name the revenue for eps being 1.19 ### Answer: SELECT MAX(revenue__) AS €million_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.19" |
Name the net profit for eps beign 1.19 | CREATE TABLE table_20614109_1 (net_profit__€m_ VARCHAR, earnings_per_share__€_ VARCHAR) | SELECT net_profit__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.19" | ### Context: CREATE TABLE table_20614109_1 (net_profit__€m_ VARCHAR, earnings_per_share__€_ VARCHAR) ### Question: Name the net profit for eps beign 1.19 ### Answer: SELECT net_profit__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.19" |
Name the ebit for eps being 1.78 | CREATE TABLE table_20614109_1 (earnings_before_interest_and_taxes__€m_ VARCHAR, earnings_per_share__€_ VARCHAR) | SELECT earnings_before_interest_and_taxes__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.78" | ### Context: CREATE TABLE table_20614109_1 (earnings_before_interest_and_taxes__€m_ VARCHAR, earnings_per_share__€_ VARCHAR) ### Question: Name the ebit for eps being 1.78 ### Answer: SELECT earnings_before_interest_and_taxes__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.78" |
How many different production codes does the episode directed by Dominic Polcino have? | CREATE TABLE table_20613292_1 (production_code VARCHAR, directed_by VARCHAR) | SELECT COUNT(production_code) FROM table_20613292_1 WHERE directed_by = "Dominic Polcino" | ### Context: CREATE TABLE table_20613292_1 (production_code VARCHAR, directed_by VARCHAR) ### Question: How many different production codes does the episode directed by Dominic Polcino have? ### Answer: SELECT COUNT(production_code) FROM table_20613292_1 WHERE directed_by = "Dominic Polcino" |
What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire? | CREATE TABLE table_20613292_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR) | SELECT production_code FROM table_20613292_1 WHERE written_by = "Kirker Butler" AND directed_by = "Dan Povenmire" | ### Context: CREATE TABLE table_20613292_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR) ### Question: What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire? ### Answer: SELECT production_code FROM table_20613292_1 WHERE written_by = "Kirker Butler" AND di... |
What was the weight in kg when the jockey was B. York? | CREATE TABLE table_2062148_2 (weight__kg_ VARCHAR, jockey VARCHAR) | SELECT weight__kg_ FROM table_2062148_2 WHERE jockey = "B. York" | ### Context: CREATE TABLE table_2062148_2 (weight__kg_ VARCHAR, jockey VARCHAR) ### Question: What was the weight in kg when the jockey was B. York? ### Answer: SELECT weight__kg_ FROM table_2062148_2 WHERE jockey = "B. York" |
What was the result of the race where the jockey was J. Marshall? | CREATE TABLE table_2062148_2 (result VARCHAR, jockey VARCHAR) | SELECT result FROM table_2062148_2 WHERE jockey = "J. Marshall" | ### Context: CREATE TABLE table_2062148_2 (result VARCHAR, jockey VARCHAR) ### Question: What was the result of the race where the jockey was J. Marshall? ### Answer: SELECT result FROM table_2062148_2 WHERE jockey = "J. Marshall" |
Name the most weight | CREATE TABLE table_2062148_4 (weight__kg_ INTEGER) | SELECT MAX(weight__kg_) FROM table_2062148_4 | ### Context: CREATE TABLE table_2062148_4 (weight__kg_ INTEGER) ### Question: Name the most weight ### Answer: SELECT MAX(weight__kg_) FROM table_2062148_4 |
Name the date for moonee valley | CREATE TABLE table_2062148_4 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_2062148_4 WHERE venue = "Moonee Valley" | ### Context: CREATE TABLE table_2062148_4 (date VARCHAR, venue VARCHAR) ### Question: Name the date for moonee valley ### Answer: SELECT date FROM table_2062148_4 WHERE venue = "Moonee Valley" |
What group was the Hollindale Stakes in? | CREATE TABLE table_2062148_3 (group VARCHAR, race VARCHAR) | SELECT group FROM table_2062148_3 WHERE race = "Hollindale Stakes" | ### Context: CREATE TABLE table_2062148_3 (group VARCHAR, race VARCHAR) ### Question: What group was the Hollindale Stakes in? ### Answer: SELECT group FROM table_2062148_3 WHERE race = "Hollindale Stakes" |
What race has a distance of 1200 m? | CREATE TABLE table_2062148_3 (race VARCHAR, distance VARCHAR) | SELECT race FROM table_2062148_3 WHERE distance = "1200 m" | ### Context: CREATE TABLE table_2062148_3 (race VARCHAR, distance VARCHAR) ### Question: What race has a distance of 1200 m? ### Answer: SELECT race FROM table_2062148_3 WHERE distance = "1200 m" |
What was the result for the time of 1-26.21? | CREATE TABLE table_20626467_1 (result VARCHAR, time VARCHAR) | SELECT result FROM table_20626467_1 WHERE time = "1-26.21" | ### Context: CREATE TABLE table_20626467_1 (result VARCHAR, time VARCHAR) ### Question: What was the result for the time of 1-26.21? ### Answer: SELECT result FROM table_20626467_1 WHERE time = "1-26.21" |
Who was the jockey in group 1 at the 1400m distance at randwick? | CREATE TABLE table_20626467_1 (jockey VARCHAR, distance VARCHAR, class VARCHAR, venue VARCHAR) | SELECT jockey FROM table_20626467_1 WHERE class = "Group 1" AND venue = "Randwick" AND distance = "1400m" | ### Context: CREATE TABLE table_20626467_1 (jockey VARCHAR, distance VARCHAR, class VARCHAR, venue VARCHAR) ### Question: Who was the jockey in group 1 at the 1400m distance at randwick? ### Answer: SELECT jockey FROM table_20626467_1 WHERE class = "Group 1" AND venue = "Randwick" AND distance = "1400m" |
What class was the 2nd - portillo? | CREATE TABLE table_20626467_1 (class VARCHAR, winner_2nd VARCHAR) | SELECT class FROM table_20626467_1 WHERE winner_2nd = "2nd - Portillo" | ### Context: CREATE TABLE table_20626467_1 (class VARCHAR, winner_2nd VARCHAR) ### Question: What class was the 2nd - portillo? ### Answer: SELECT class FROM table_20626467_1 WHERE winner_2nd = "2nd - Portillo" |
What time for the entrant weighing 54.4kg? | CREATE TABLE table_20626467_1 (time VARCHAR, weight__kg_ VARCHAR) | SELECT time FROM table_20626467_1 WHERE weight__kg_ = "54.4kg" | ### Context: CREATE TABLE table_20626467_1 (time VARCHAR, weight__kg_ VARCHAR) ### Question: What time for the entrant weighing 54.4kg? ### Answer: SELECT time FROM table_20626467_1 WHERE weight__kg_ = "54.4kg" |
What is every entry for epoch if periselene is 5,454.925? | CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR) | SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "5,454.925" | ### Context: CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR) ### Question: What is every entry for epoch if periselene is 5,454.925? ### Answer: SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "5,454.925" |
What is every entry for epoch if periselene is 2,291.250? | CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR) | SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "2,291.250" | ### Context: CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR) ### Question: What is every entry for epoch if periselene is 2,291.250? ### Answer: SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "2,291.250" |
What is every value of period when eccentricity is 0.583085? | CREATE TABLE table_206217_2 (period__h_ VARCHAR, eccentricity VARCHAR) | SELECT period__h_ FROM table_206217_2 WHERE eccentricity = "0.583085" | ### Context: CREATE TABLE table_206217_2 (period__h_ VARCHAR, eccentricity VARCHAR) ### Question: What is every value of period when eccentricity is 0.583085? ### Answer: SELECT period__h_ FROM table_206217_2 WHERE eccentricity = "0.583085" |
What is every value of epoch if inclination is 90.063603? | CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, inclination__deg___to_moon_equator_ VARCHAR) | SELECT epoch__utc_ FROM table_206217_2 WHERE inclination__deg___to_moon_equator_ = "90.063603" | ### Context: CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, inclination__deg___to_moon_equator_ VARCHAR) ### Question: What is every value of epoch if inclination is 90.063603? ### Answer: SELECT epoch__utc_ FROM table_206217_2 WHERE inclination__deg___to_moon_equator_ = "90.063603" |
What is every value for periselene if period is 4.947432? | CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, period__h_ VARCHAR) | SELECT periselene__km_ FROM table_206217_2 WHERE period__h_ = "4.947432" | ### Context: CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, period__h_ VARCHAR) ### Question: What is every value for periselene if period is 4.947432? ### Answer: SELECT periselene__km_ FROM table_206217_2 WHERE period__h_ = "4.947432" |
How many values of periselene when epoch is November 15, 2004, 17:47:12.1? | CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, epoch__utc_ VARCHAR) | SELECT COUNT(periselene__km_) FROM table_206217_2 WHERE epoch__utc_ = "November 15, 2004, 17:47:12.1" | ### Context: CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, epoch__utc_ VARCHAR) ### Question: How many values of periselene when epoch is November 15, 2004, 17:47:12.1? ### Answer: SELECT COUNT(periselene__km_) FROM table_206217_2 WHERE epoch__utc_ = "November 15, 2004, 17:47:12.1" |
How many times did the Bruins play Tennessee? | CREATE TABLE table_20630665_1 (result VARCHAR, opponent VARCHAR) | SELECT COUNT(result) FROM table_20630665_1 WHERE opponent = "Tennessee" | ### Context: CREATE TABLE table_20630665_1 (result VARCHAR, opponent VARCHAR) ### Question: How many times did the Bruins play Tennessee? ### Answer: SELECT COUNT(result) FROM table_20630665_1 WHERE opponent = "Tennessee" |
What is the current tournament name for the event in Tampa? | CREATE TABLE table_20630462_1 (also_currently_known_as VARCHAR, tournament VARCHAR) | SELECT also_currently_known_as FROM table_20630462_1 WHERE tournament = "Tampa" | ### Context: CREATE TABLE table_20630462_1 (also_currently_known_as VARCHAR, tournament VARCHAR) ### Question: What is the current tournament name for the event in Tampa? ### Answer: SELECT also_currently_known_as FROM table_20630462_1 WHERE tournament = "Tampa" |
What is the tier IV year for the tournament held in Tampa? | CREATE TABLE table_20630462_1 (tier_iv_in VARCHAR, tournament VARCHAR) | SELECT tier_iv_in FROM table_20630462_1 WHERE tournament = "Tampa" | ### Context: CREATE TABLE table_20630462_1 (tier_iv_in VARCHAR, tournament VARCHAR) ### Question: What is the tier IV year for the tournament held in Tampa? ### Answer: SELECT tier_iv_in FROM table_20630462_1 WHERE tournament = "Tampa" |
What is the most years that tournaments held in Rome have lasted? | CREATE TABLE table_20630462_1 (years INTEGER, tournament VARCHAR) | SELECT MAX(years) FROM table_20630462_1 WHERE tournament = "Rome" | ### Context: CREATE TABLE table_20630462_1 (years INTEGER, tournament VARCHAR) ### Question: What is the most years that tournaments held in Rome have lasted? ### Answer: SELECT MAX(years) FROM table_20630462_1 WHERE tournament = "Rome" |
What is the city location of the tournament currently known as the Medibank International Sydney? | CREATE TABLE table_20630462_1 (city_s_ VARCHAR, also_currently_known_as VARCHAR) | SELECT city_s_ FROM table_20630462_1 WHERE also_currently_known_as = "Medibank International Sydney" | ### Context: CREATE TABLE table_20630462_1 (city_s_ VARCHAR, also_currently_known_as VARCHAR) ### Question: What is the city location of the tournament currently known as the Medibank International Sydney? ### Answer: SELECT city_s_ FROM table_20630462_1 WHERE also_currently_known_as = "Medibank International Sydney" |
How many different shareholders have 2.39 % of capital? | CREATE TABLE table_206359_1 (shareholder_name VARCHAR, _percentage_of_capital VARCHAR) | SELECT COUNT(shareholder_name) FROM table_206359_1 WHERE _percentage_of_capital = "2.39" | ### Context: CREATE TABLE table_206359_1 (shareholder_name VARCHAR, _percentage_of_capital VARCHAR) ### Question: How many different shareholders have 2.39 % of capital? ### Answer: SELECT COUNT(shareholder_name) FROM table_206359_1 WHERE _percentage_of_capital = "2.39" |
What shareholders have 0 A shares? | CREATE TABLE table_206359_1 (shareholder_name VARCHAR, a_shares VARCHAR) | SELECT shareholder_name FROM table_206359_1 WHERE a_shares = 0 | ### Context: CREATE TABLE table_206359_1 (shareholder_name VARCHAR, a_shares VARCHAR) ### Question: What shareholders have 0 A shares? ### Answer: SELECT shareholder_name FROM table_206359_1 WHERE a_shares = 0 |
What percentage of votes does the shareholder with 78.19% of capital have? | CREATE TABLE table_206359_1 (_percentage_of_votes VARCHAR, _percentage_of_capital VARCHAR) | SELECT _percentage_of_votes FROM table_206359_1 WHERE _percentage_of_capital = "78.19" | ### Context: CREATE TABLE table_206359_1 (_percentage_of_votes VARCHAR, _percentage_of_capital VARCHAR) ### Question: What percentage of votes does the shareholder with 78.19% of capital have? ### Answer: SELECT _percentage_of_votes FROM table_206359_1 WHERE _percentage_of_capital = "78.19" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.