question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the average rank of a nation that had 219,721 in 2012?
CREATE TABLE table_name_6 (rank INTEGER)
SELECT AVG(rank) FROM table_name_6 WHERE 2012 = 219 OFFSET 721
### Context: CREATE TABLE table_name_6 (rank INTEGER) ### Question: What is the average rank of a nation that had 219,721 in 2012? ### Answer: SELECT AVG(rank) FROM table_name_6 WHERE 2012 = 219 OFFSET 721
In what Round was Pick 138?
CREATE TABLE table_name_93 (round INTEGER, pick VARCHAR)
SELECT SUM(round) FROM table_name_93 WHERE pick = 138
### Context: CREATE TABLE table_name_93 (round INTEGER, pick VARCHAR) ### Question: In what Round was Pick 138? ### Answer: SELECT SUM(round) FROM table_name_93 WHERE pick = 138
What is John Crawford's Nationality?
CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_47 WHERE player = "john crawford"
### Context: CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR) ### Question: What is John Crawford's Nationality? ### Answer: SELECT nationality FROM table_name_47 WHERE player = "john crawford"
What is the ERP W for K236AM?
CREATE TABLE table_name_22 (erp_w VARCHAR, call_sign VARCHAR)
SELECT erp_w FROM table_name_22 WHERE call_sign = "k236am"
### Context: CREATE TABLE table_name_22 (erp_w VARCHAR, call_sign VARCHAR) ### Question: What is the ERP W for K236AM? ### Answer: SELECT erp_w FROM table_name_22 WHERE call_sign = "k236am"
What is the average frequency in MHz for stations with an ERP W of 170?
CREATE TABLE table_name_54 (frequency_mhz INTEGER, erp_w VARCHAR)
SELECT AVG(frequency_mhz) FROM table_name_54 WHERE erp_w = 170
### Context: CREATE TABLE table_name_54 (frequency_mhz INTEGER, erp_w VARCHAR) ### Question: What is the average frequency in MHz for stations with an ERP W of 170? ### Answer: SELECT AVG(frequency_mhz) FROM table_name_54 WHERE erp_w = 170
What is K236AM's lowest frequency in MHz?
CREATE TABLE table_name_51 (frequency_mhz INTEGER, call_sign VARCHAR)
SELECT MIN(frequency_mhz) FROM table_name_51 WHERE call_sign = "k236am"
### Context: CREATE TABLE table_name_51 (frequency_mhz INTEGER, call_sign VARCHAR) ### Question: What is K236AM's lowest frequency in MHz? ### Answer: SELECT MIN(frequency_mhz) FROM table_name_51 WHERE call_sign = "k236am"
What class is assigned to frequencies lower than 90.5?
CREATE TABLE table_name_49 (class VARCHAR, frequency_mhz INTEGER)
SELECT class FROM table_name_49 WHERE frequency_mhz < 90.5
### Context: CREATE TABLE table_name_49 (class VARCHAR, frequency_mhz INTEGER) ### Question: What class is assigned to frequencies lower than 90.5? ### Answer: SELECT class FROM table_name_49 WHERE frequency_mhz < 90.5
What class is assigned to frequencies larger than 89.3 with an ERP W of 250?
CREATE TABLE table_name_60 (class VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
SELECT class FROM table_name_60 WHERE frequency_mhz > 89.3 AND erp_w = 250
### Context: CREATE TABLE table_name_60 (class VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) ### Question: What class is assigned to frequencies larger than 89.3 with an ERP W of 250? ### Answer: SELECT class FROM table_name_60 WHERE frequency_mhz > 89.3 AND erp_w = 250
What did st. louis score at home?
CREATE TABLE table_name_11 (score VARCHAR, home VARCHAR)
SELECT score FROM table_name_11 WHERE home = "st. louis"
### Context: CREATE TABLE table_name_11 (score VARCHAR, home VARCHAR) ### Question: What did st. louis score at home? ### Answer: SELECT score FROM table_name_11 WHERE home = "st. louis"
What was the result of the game on week 1?
CREATE TABLE table_name_4 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_4 WHERE week = 1
### Context: CREATE TABLE table_name_4 (result VARCHAR, week VARCHAR) ### Question: What was the result of the game on week 1? ### Answer: SELECT result FROM table_name_4 WHERE week = 1
What is the record of the game on week 13?
CREATE TABLE table_name_34 (record VARCHAR, week VARCHAR)
SELECT record FROM table_name_34 WHERE week = 13
### Context: CREATE TABLE table_name_34 (record VARCHAR, week VARCHAR) ### Question: What is the record of the game on week 13? ### Answer: SELECT record FROM table_name_34 WHERE week = 13
Texas Rate smaller than 32.9, and a U.S. Rate larger than 5.6 is what highest killeen rate?
CREATE TABLE table_name_89 (killeen_rate INTEGER, texas_rate VARCHAR, us_rate VARCHAR)
SELECT MAX(killeen_rate) FROM table_name_89 WHERE texas_rate < 32.9 AND us_rate > 5.6
### Context: CREATE TABLE table_name_89 (killeen_rate INTEGER, texas_rate VARCHAR, us_rate VARCHAR) ### Question: Texas Rate smaller than 32.9, and a U.S. Rate larger than 5.6 is what highest killeen rate? ### Answer: SELECT MAX(killeen_rate) FROM table_name_89 WHERE texas_rate < 32.9 AND us_rate > 5.6
Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate?
CREATE TABLE table_name_8 (killeen_rate INTEGER, crime VARCHAR, texas_rate VARCHAR, reported_offenses VARCHAR, us_rate VARCHAR)
SELECT SUM(killeen_rate) FROM table_name_8 WHERE reported_offenses > 216 AND us_rate < 3274 AND texas_rate < 2688.9 AND crime = "violent crime"
### Context: CREATE TABLE table_name_8 (killeen_rate INTEGER, crime VARCHAR, texas_rate VARCHAR, reported_offenses VARCHAR, us_rate VARCHAR) ### Question: Reported Offenses larger than 216, and a U.S. Rate smaller than 3274, and a Texas Rate smaller than 2688.9, and a Crime of violent crime has what killeen rate? ### Answer: SELECT SUM(killeen_rate) FROM table_name_8 WHERE reported_offenses > 216 AND us_rate < 3274 AND texas_rate < 2688.9 AND crime = "violent crime"
Killeen Rate of 511.6, and a Texas Rate smaller than 314.4 is the lowest reported offenses?
CREATE TABLE table_name_96 (reported_offenses INTEGER, killeen_rate VARCHAR, texas_rate VARCHAR)
SELECT MIN(reported_offenses) FROM table_name_96 WHERE killeen_rate = 511.6 AND texas_rate < 314.4
### Context: CREATE TABLE table_name_96 (reported_offenses INTEGER, killeen_rate VARCHAR, texas_rate VARCHAR) ### Question: Killeen Rate of 511.6, and a Texas Rate smaller than 314.4 is the lowest reported offenses? ### Answer: SELECT MIN(reported_offenses) FROM table_name_96 WHERE killeen_rate = 511.6 AND texas_rate < 314.4
Tell me the type for category of mouse and attribute of ondblclick
CREATE TABLE table_name_49 (type VARCHAR, category VARCHAR, attribute VARCHAR)
SELECT type FROM table_name_49 WHERE category = "mouse" AND attribute = "ondblclick"
### Context: CREATE TABLE table_name_49 (type VARCHAR, category VARCHAR, attribute VARCHAR) ### Question: Tell me the type for category of mouse and attribute of ondblclick ### Answer: SELECT type FROM table_name_49 WHERE category = "mouse" AND attribute = "ondblclick"
Name the type with cancelable of no and attribute of ondragend
CREATE TABLE table_name_79 (type VARCHAR, cancelable VARCHAR, attribute VARCHAR)
SELECT type FROM table_name_79 WHERE cancelable = "no" AND attribute = "ondragend"
### Context: CREATE TABLE table_name_79 (type VARCHAR, cancelable VARCHAR, attribute VARCHAR) ### Question: Name the type with cancelable of no and attribute of ondragend ### Answer: SELECT type FROM table_name_79 WHERE cancelable = "no" AND attribute = "ondragend"
Name the cancelable for onmouseover
CREATE TABLE table_name_25 (cancelable VARCHAR, attribute VARCHAR)
SELECT cancelable FROM table_name_25 WHERE attribute = "onmouseover"
### Context: CREATE TABLE table_name_25 (cancelable VARCHAR, attribute VARCHAR) ### Question: Name the cancelable for onmouseover ### Answer: SELECT cancelable FROM table_name_25 WHERE attribute = "onmouseover"
Name the bubbles for onscroll
CREATE TABLE table_name_12 (bubbles VARCHAR, attribute VARCHAR)
SELECT bubbles FROM table_name_12 WHERE attribute = "onscroll"
### Context: CREATE TABLE table_name_12 (bubbles VARCHAR, attribute VARCHAR) ### Question: Name the bubbles for onscroll ### Answer: SELECT bubbles FROM table_name_12 WHERE attribute = "onscroll"
Name the attribute for mutation and domcharacterdatamodified
CREATE TABLE table_name_81 (attribute VARCHAR, category VARCHAR, type VARCHAR)
SELECT attribute FROM table_name_81 WHERE category = "mutation" AND type = "domcharacterdatamodified"
### Context: CREATE TABLE table_name_81 (attribute VARCHAR, category VARCHAR, type VARCHAR) ### Question: Name the attribute for mutation and domcharacterdatamodified ### Answer: SELECT attribute FROM table_name_81 WHERE category = "mutation" AND type = "domcharacterdatamodified"
Who had high rebounds on May 1?
CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_name_15 WHERE date = "may 1"
### Context: CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR) ### Question: Who had high rebounds on May 1? ### Answer: SELECT high_rebounds FROM table_name_15 WHERE date = "may 1"
What location attendance had a score of l 92–116?
CREATE TABLE table_name_30 (location_attendance VARCHAR, score VARCHAR)
SELECT location_attendance FROM table_name_30 WHERE score = "l 92–116"
### Context: CREATE TABLE table_name_30 (location_attendance VARCHAR, score VARCHAR) ### Question: What location attendance had a score of l 92–116? ### Answer: SELECT location_attendance FROM table_name_30 WHERE score = "l 92–116"
What is the gold medal count that has a silver medal count less than 0?
CREATE TABLE table_name_64 (gold INTEGER, silver INTEGER)
SELECT MAX(gold) FROM table_name_64 WHERE silver < 0
### Context: CREATE TABLE table_name_64 (gold INTEGER, silver INTEGER) ### Question: What is the gold medal count that has a silver medal count less than 0? ### Answer: SELECT MAX(gold) FROM table_name_64 WHERE silver < 0
What is the average number of students for schools with a pupil to teacher ratio of 25.1?
CREATE TABLE table_name_25 (students INTEGER, pupil_teacher_ratio VARCHAR)
SELECT AVG(students) FROM table_name_25 WHERE pupil_teacher_ratio = 25.1
### Context: CREATE TABLE table_name_25 (students INTEGER, pupil_teacher_ratio VARCHAR) ### Question: What is the average number of students for schools with a pupil to teacher ratio of 25.1? ### Answer: SELECT AVG(students) FROM table_name_25 WHERE pupil_teacher_ratio = 25.1
What is the lowest pupil to teacher ratio for Saratoga schools with smaller than 1213 students?
CREATE TABLE table_name_13 (pupil_teacher_ratio INTEGER, city VARCHAR, students VARCHAR)
SELECT MIN(pupil_teacher_ratio) FROM table_name_13 WHERE city = "saratoga" AND students < 1213
### Context: CREATE TABLE table_name_13 (pupil_teacher_ratio INTEGER, city VARCHAR, students VARCHAR) ### Question: What is the lowest pupil to teacher ratio for Saratoga schools with smaller than 1213 students? ### Answer: SELECT MIN(pupil_teacher_ratio) FROM table_name_13 WHERE city = "saratoga" AND students < 1213
What is the highest number of students for schools in Campbell with pupil to teacher ratios over 25?
CREATE TABLE table_name_13 (students INTEGER, city VARCHAR, pupil_teacher_ratio VARCHAR)
SELECT MAX(students) FROM table_name_13 WHERE city = "campbell" AND pupil_teacher_ratio > 25
### Context: CREATE TABLE table_name_13 (students INTEGER, city VARCHAR, pupil_teacher_ratio VARCHAR) ### Question: What is the highest number of students for schools in Campbell with pupil to teacher ratios over 25? ### Answer: SELECT MAX(students) FROM table_name_13 WHERE city = "campbell" AND pupil_teacher_ratio > 25
Name the most rank for wins outdoor larger than 1 and wins indoor less than 0
CREATE TABLE table_name_87 (rank INTEGER, wins__outdoor_ VARCHAR, wins__indoor_ VARCHAR)
SELECT MAX(rank) FROM table_name_87 WHERE wins__outdoor_ > 1 AND wins__indoor_ < 0
### Context: CREATE TABLE table_name_87 (rank INTEGER, wins__outdoor_ VARCHAR, wins__indoor_ VARCHAR) ### Question: Name the most rank for wins outdoor larger than 1 and wins indoor less than 0 ### Answer: SELECT MAX(rank) FROM table_name_87 WHERE wins__outdoor_ > 1 AND wins__indoor_ < 0
Name the most rank for uk and wins more than 5
CREATE TABLE table_name_1 (rank INTEGER, country VARCHAR, wins__indoor_ VARCHAR)
SELECT MAX(rank) FROM table_name_1 WHERE country = "uk" AND wins__indoor_ > 5
### Context: CREATE TABLE table_name_1 (rank INTEGER, country VARCHAR, wins__indoor_ VARCHAR) ### Question: Name the most rank for uk and wins more than 5 ### Answer: SELECT MAX(rank) FROM table_name_1 WHERE country = "uk" AND wins__indoor_ > 5
Name the average wins outdoor with rank more than 4 and wins less than 3 with outdoor wins more than 0
CREATE TABLE table_name_61 (wins__outdoor_ INTEGER, wins__indoor_ VARCHAR, rank VARCHAR, wins__total_ VARCHAR)
SELECT AVG(wins__outdoor_) FROM table_name_61 WHERE rank > 4 AND wins__total_ < 3 AND wins__indoor_ > 0
### Context: CREATE TABLE table_name_61 (wins__outdoor_ INTEGER, wins__indoor_ VARCHAR, rank VARCHAR, wins__total_ VARCHAR) ### Question: Name the average wins outdoor with rank more than 4 and wins less than 3 with outdoor wins more than 0 ### Answer: SELECT AVG(wins__outdoor_) FROM table_name_61 WHERE rank > 4 AND wins__total_ < 3 AND wins__indoor_ > 0
Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7
CREATE TABLE table_name_68 (wins__total_ INTEGER, rank VARCHAR, wins__indoor_ VARCHAR, wins__outdoor_ VARCHAR)
SELECT MAX(wins__total_) FROM table_name_68 WHERE wins__indoor_ = 0 AND wins__outdoor_ = 1 AND rank < 7
### Context: CREATE TABLE table_name_68 (wins__total_ INTEGER, rank VARCHAR, wins__indoor_ VARCHAR, wins__outdoor_ VARCHAR) ### Question: Name the most wins total with wins indoor of 0 and wins outdoor of 1 with rank less than 7 ### Answer: SELECT MAX(wins__total_) FROM table_name_68 WHERE wins__indoor_ = 0 AND wins__outdoor_ = 1 AND rank < 7
What was the frame size in 08/87?
CREATE TABLE table_name_22 (framed_size VARCHAR, date_completed VARCHAR)
SELECT framed_size FROM table_name_22 WHERE date_completed = "08/87"
### Context: CREATE TABLE table_name_22 (framed_size VARCHAR, date_completed VARCHAR) ### Question: What was the frame size in 08/87? ### Answer: SELECT framed_size FROM table_name_22 WHERE date_completed = "08/87"
What was the print name in 07/87?
CREATE TABLE table_name_39 (print_name VARCHAR, date_completed VARCHAR)
SELECT print_name FROM table_name_39 WHERE date_completed = "07/87"
### Context: CREATE TABLE table_name_39 (print_name VARCHAR, date_completed VARCHAR) ### Question: What was the print name in 07/87? ### Answer: SELECT print_name FROM table_name_39 WHERE date_completed = "07/87"
What is the frame size that was nicknamed Grand Central?
CREATE TABLE table_name_10 (framed_size VARCHAR, nickname VARCHAR)
SELECT framed_size FROM table_name_10 WHERE nickname = "grand central"
### Context: CREATE TABLE table_name_10 (framed_size VARCHAR, nickname VARCHAR) ### Question: What is the frame size that was nicknamed Grand Central? ### Answer: SELECT framed_size FROM table_name_10 WHERE nickname = "grand central"
When was the Little Tavern completed?
CREATE TABLE table_name_55 (date_completed VARCHAR, nickname VARCHAR)
SELECT date_completed FROM table_name_55 WHERE nickname = "little tavern"
### Context: CREATE TABLE table_name_55 (date_completed VARCHAR, nickname VARCHAR) ### Question: When was the Little Tavern completed? ### Answer: SELECT date_completed FROM table_name_55 WHERE nickname = "little tavern"
Which 1990-1991 is the average one that has Played of 38, and Points of 40?
CREATE TABLE table_name_26 (played VARCHAR, points VARCHAR)
SELECT AVG(1990 AS _1991) FROM table_name_26 WHERE played = 38 AND points = 40
### Context: CREATE TABLE table_name_26 (played VARCHAR, points VARCHAR) ### Question: Which 1990-1991 is the average one that has Played of 38, and Points of 40? ### Answer: SELECT AVG(1990 AS _1991) FROM table_name_26 WHERE played = 38 AND points = 40
Which College/Junior/Club Team has a Nationality of Canada and Jeff brown?
CREATE TABLE table_name_84 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_84 WHERE nationality = "canada" AND player = "jeff brown"
### Context: CREATE TABLE table_name_84 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, player VARCHAR) ### Question: Which College/Junior/Club Team has a Nationality of Canada and Jeff brown? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_84 WHERE nationality = "canada" AND player = "jeff brown"
Which Player has a Hc Cska Moscow (Russia)?
CREATE TABLE table_name_81 (player VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT player FROM table_name_81 WHERE college_junior_club_team__league_ = "hc cska moscow (russia)"
### Context: CREATE TABLE table_name_81 (player VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: Which Player has a Hc Cska Moscow (Russia)? ### Answer: SELECT player FROM table_name_81 WHERE college_junior_club_team__league_ = "hc cska moscow (russia)"
What is Nationality of daniel goneau?
CREATE TABLE table_name_11 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_11 WHERE player = "daniel goneau"
### Context: CREATE TABLE table_name_11 (nationality VARCHAR, player VARCHAR) ### Question: What is Nationality of daniel goneau? ### Answer: SELECT nationality FROM table_name_11 WHERE player = "daniel goneau"
What points have 500cc as a class, and nsr500 as a machine?
CREATE TABLE table_name_12 (points VARCHAR, class VARCHAR, machine VARCHAR)
SELECT points FROM table_name_12 WHERE class = "500cc" AND machine = "nsr500"
### Context: CREATE TABLE table_name_12 (points VARCHAR, class VARCHAR, machine VARCHAR) ### Question: What points have 500cc as a class, and nsr500 as a machine? ### Answer: SELECT points FROM table_name_12 WHERE class = "500cc" AND machine = "nsr500"
How many years have 78 for points?
CREATE TABLE table_name_24 (year VARCHAR, points VARCHAR)
SELECT COUNT(year) FROM table_name_24 WHERE points = 78
### Context: CREATE TABLE table_name_24 (year VARCHAR, points VARCHAR) ### Question: How many years have 78 for points? ### Answer: SELECT COUNT(year) FROM table_name_24 WHERE points = 78
What class has nsr250 as the machine, with points greater than 97?
CREATE TABLE table_name_45 (class VARCHAR, machine VARCHAR, points VARCHAR)
SELECT class FROM table_name_45 WHERE machine = "nsr250" AND points > 97
### Context: CREATE TABLE table_name_45 (class VARCHAR, machine VARCHAR, points VARCHAR) ### Question: What class has nsr250 as the machine, with points greater than 97? ### Answer: SELECT class FROM table_name_45 WHERE machine = "nsr250" AND points > 97
What is the lowest year that have wins greater than 0?
CREATE TABLE table_name_24 (year INTEGER, wins INTEGER)
SELECT MIN(year) FROM table_name_24 WHERE wins > 0
### Context: CREATE TABLE table_name_24 (year INTEGER, wins INTEGER) ### Question: What is the lowest year that have wins greater than 0? ### Answer: SELECT MIN(year) FROM table_name_24 WHERE wins > 0
What are the highest points that have a year less than 1992, with wins less than 0?
CREATE TABLE table_name_49 (points INTEGER, year VARCHAR, wins VARCHAR)
SELECT MAX(points) FROM table_name_49 WHERE year < 1992 AND wins < 0
### Context: CREATE TABLE table_name_49 (points INTEGER, year VARCHAR, wins VARCHAR) ### Question: What are the highest points that have a year less than 1992, with wins less than 0? ### Answer: SELECT MAX(points) FROM table_name_49 WHERE year < 1992 AND wins < 0
What was the lowest attendance at a game against the St. Louis Cardinals?
CREATE TABLE table_name_91 (attendance INTEGER, opponent VARCHAR)
SELECT MIN(attendance) FROM table_name_91 WHERE opponent = "st. louis cardinals"
### Context: CREATE TABLE table_name_91 (attendance INTEGER, opponent VARCHAR) ### Question: What was the lowest attendance at a game against the St. Louis Cardinals? ### Answer: SELECT MIN(attendance) FROM table_name_91 WHERE opponent = "st. louis cardinals"
What district is the parish Milburn in?
CREATE TABLE table_name_85 (district VARCHAR, name VARCHAR)
SELECT district FROM table_name_85 WHERE name = "milburn"
### Context: CREATE TABLE table_name_85 (district VARCHAR, name VARCHAR) ### Question: What district is the parish Milburn in? ### Answer: SELECT district FROM table_name_85 WHERE name = "milburn"
What is the population of the Parish, Plumbland, that had a former local authority of Cockermouth Rural District?
CREATE TABLE table_name_5 (population VARCHAR, former_local_authority VARCHAR, name VARCHAR)
SELECT COUNT(population) FROM table_name_5 WHERE former_local_authority = "cockermouth rural district" AND name = "plumbland"
### Context: CREATE TABLE table_name_5 (population VARCHAR, former_local_authority VARCHAR, name VARCHAR) ### Question: What is the population of the Parish, Plumbland, that had a former local authority of Cockermouth Rural District? ### Answer: SELECT COUNT(population) FROM table_name_5 WHERE former_local_authority = "cockermouth rural district" AND name = "plumbland"
What is the district for the parish, Brough?
CREATE TABLE table_name_58 (district VARCHAR, name VARCHAR)
SELECT district FROM table_name_58 WHERE name = "brough"
### Context: CREATE TABLE table_name_58 (district VARCHAR, name VARCHAR) ### Question: What is the district for the parish, Brough? ### Answer: SELECT district FROM table_name_58 WHERE name = "brough"
What year featured lola motorsport as an entrant with over 0 points?
CREATE TABLE table_name_44 (year INTEGER, entrant VARCHAR, points VARCHAR)
SELECT AVG(year) FROM table_name_44 WHERE entrant = "lola motorsport" AND points > 0
### Context: CREATE TABLE table_name_44 (year INTEGER, entrant VARCHAR, points VARCHAR) ### Question: What year featured lola motorsport as an entrant with over 0 points? ### Answer: SELECT AVG(year) FROM table_name_44 WHERE entrant = "lola motorsport" AND points > 0
When is the earliest year that there's a judd engine?
CREATE TABLE table_name_40 (year INTEGER, engine VARCHAR)
SELECT MIN(year) FROM table_name_40 WHERE engine = "judd"
### Context: CREATE TABLE table_name_40 (year INTEGER, engine VARCHAR) ### Question: When is the earliest year that there's a judd engine? ### Answer: SELECT MIN(year) FROM table_name_40 WHERE engine = "judd"
What chassis is used in 1989 with a cosworth engine?
CREATE TABLE table_name_2 (chassis VARCHAR, year VARCHAR, engine VARCHAR)
SELECT chassis FROM table_name_2 WHERE year = 1989 AND engine = "cosworth"
### Context: CREATE TABLE table_name_2 (chassis VARCHAR, year VARCHAR, engine VARCHAR) ### Question: What chassis is used in 1989 with a cosworth engine? ### Answer: SELECT chassis FROM table_name_2 WHERE year = 1989 AND engine = "cosworth"
Where was something built earlier than 1858?
CREATE TABLE table_name_79 (where_built VARCHAR, year_built INTEGER)
SELECT where_built FROM table_name_79 WHERE year_built < 1858
### Context: CREATE TABLE table_name_79 (where_built VARCHAR, year_built INTEGER) ### Question: Where was something built earlier than 1858? ### Answer: SELECT where_built FROM table_name_79 WHERE year_built < 1858
What was built in 1857?
CREATE TABLE table_name_89 (name VARCHAR, year_built VARCHAR)
SELECT name FROM table_name_89 WHERE year_built = 1857
### Context: CREATE TABLE table_name_89 (name VARCHAR, year_built VARCHAR) ### Question: What was built in 1857? ### Answer: SELECT name FROM table_name_89 WHERE year_built = 1857
Who were the initial owners of Wasco in 1858?
CREATE TABLE table_name_57 (initial_owners VARCHAR, year_built VARCHAR, name VARCHAR)
SELECT initial_owners FROM table_name_57 WHERE year_built = 1858 AND name = "wasco"
### Context: CREATE TABLE table_name_57 (initial_owners VARCHAR, year_built VARCHAR, name VARCHAR) ### Question: Who were the initial owners of Wasco in 1858? ### Answer: SELECT initial_owners FROM table_name_57 WHERE year_built = 1858 AND name = "wasco"
What was the type of boat built in Port Blakeley
CREATE TABLE table_name_31 (type VARCHAR, where_built VARCHAR)
SELECT type FROM table_name_31 WHERE where_built = "port blakeley"
### Context: CREATE TABLE table_name_31 (type VARCHAR, where_built VARCHAR) ### Question: What was the type of boat built in Port Blakeley ### Answer: SELECT type FROM table_name_31 WHERE where_built = "port blakeley"
What is the date of the game at Arrowhead Stadium?
CREATE TABLE table_name_33 (date VARCHAR, location VARCHAR)
SELECT date FROM table_name_33 WHERE location = "arrowhead stadium"
### Context: CREATE TABLE table_name_33 (date VARCHAR, location VARCHAR) ### Question: What is the date of the game at Arrowhead Stadium? ### Answer: SELECT date FROM table_name_33 WHERE location = "arrowhead stadium"
Who is the opponent of the game after week 4 on Sun. Nov. 17?
CREATE TABLE table_name_70 (opponent VARCHAR, week VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_70 WHERE week > 4 AND date = "sun. nov. 17"
### Context: CREATE TABLE table_name_70 (opponent VARCHAR, week VARCHAR, date VARCHAR) ### Question: Who is the opponent of the game after week 4 on Sun. Nov. 17? ### Answer: SELECT opponent FROM table_name_70 WHERE week > 4 AND date = "sun. nov. 17"
What's the median family income with a household income of $25,583?
CREATE TABLE table_name_72 (median_family_income VARCHAR, median_household_income VARCHAR)
SELECT median_family_income FROM table_name_72 WHERE median_household_income = "$25,583"
### Context: CREATE TABLE table_name_72 (median_family_income VARCHAR, median_household_income VARCHAR) ### Question: What's the median family income with a household income of $25,583? ### Answer: SELECT median_family_income FROM table_name_72 WHERE median_household_income = "$25,583"
What's the $51,914 median household income per capita?
CREATE TABLE table_name_34 (per_capita_income VARCHAR, median_household_income VARCHAR)
SELECT per_capita_income FROM table_name_34 WHERE median_household_income = "$51,914"
### Context: CREATE TABLE table_name_34 (per_capita_income VARCHAR, median_household_income VARCHAR) ### Question: What's the $51,914 median household income per capita? ### Answer: SELECT per_capita_income FROM table_name_34 WHERE median_household_income = "$51,914"
What was the winning score when Steve Stricker was runner-up?
CREATE TABLE table_name_1 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_1 WHERE runner_s__up = "steve stricker"
### Context: CREATE TABLE table_name_1 (winning_score VARCHAR, runner_s__up VARCHAR) ### Question: What was the winning score when Steve Stricker was runner-up? ### Answer: SELECT winning_score FROM table_name_1 WHERE runner_s__up = "steve stricker"
What was the margin of victory when the winning score was βˆ’14 (63-67-73-67=270)?
CREATE TABLE table_name_2 (margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT margin_of_victory FROM table_name_2 WHERE winning_score = βˆ’14(63 - 67 - 73 - 67 = 270)
### Context: CREATE TABLE table_name_2 (margin_of_victory VARCHAR, winning_score VARCHAR) ### Question: What was the margin of victory when the winning score was βˆ’14 (63-67-73-67=270)? ### Answer: SELECT margin_of_victory FROM table_name_2 WHERE winning_score = βˆ’14(63 - 67 - 73 - 67 = 270)
Who was the runnerup when the margin of victory was 1 stroke on jan 30, 2000?
CREATE TABLE table_name_64 (runner_s__up VARCHAR, margin_of_victory VARCHAR, date VARCHAR)
SELECT runner_s__up FROM table_name_64 WHERE margin_of_victory = "1 stroke" AND date = "jan 30, 2000"
### Context: CREATE TABLE table_name_64 (runner_s__up VARCHAR, margin_of_victory VARCHAR, date VARCHAR) ### Question: Who was the runnerup when the margin of victory was 1 stroke on jan 30, 2000? ### Answer: SELECT runner_s__up FROM table_name_64 WHERE margin_of_victory = "1 stroke" AND date = "jan 30, 2000"
What was the margin of victory when the winning score was βˆ’12 (66-67-64-71=268)?
CREATE TABLE table_name_67 (margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT margin_of_victory FROM table_name_67 WHERE winning_score = βˆ’12(66 - 67 - 64 - 71 = 268)
### Context: CREATE TABLE table_name_67 (margin_of_victory VARCHAR, winning_score VARCHAR) ### Question: What was the margin of victory when the winning score was βˆ’12 (66-67-64-71=268)? ### Answer: SELECT margin_of_victory FROM table_name_67 WHERE winning_score = βˆ’12(66 - 67 - 64 - 71 = 268)
What day was the margin of victory 1 stroke when the tournament was colonial national invitation?
CREATE TABLE table_name_5 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_5 WHERE margin_of_victory = "1 stroke" AND tournament = "colonial national invitation"
### Context: CREATE TABLE table_name_5 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What day was the margin of victory 1 stroke when the tournament was colonial national invitation? ### Answer: SELECT date FROM table_name_5 WHERE margin_of_victory = "1 stroke" AND tournament = "colonial national invitation"
What was the winning score for runnerup Greg Norman
CREATE TABLE table_name_5 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_5 WHERE runner_s__up = "greg norman"
### Context: CREATE TABLE table_name_5 (winning_score VARCHAR, runner_s__up VARCHAR) ### Question: What was the winning score for runnerup Greg Norman ### Answer: SELECT winning_score FROM table_name_5 WHERE runner_s__up = "greg norman"
Which Builder has a Pennant number of Q149?
CREATE TABLE table_name_63 (builder VARCHAR, pennant_number VARCHAR)
SELECT builder FROM table_name_63 WHERE pennant_number = "q149"
### Context: CREATE TABLE table_name_63 (builder VARCHAR, pennant_number VARCHAR) ### Question: Which Builder has a Pennant number of Q149? ### Answer: SELECT builder FROM table_name_63 WHERE pennant_number = "q149"
On what date was the ship with a Pennant number of Q144 commissioned?
CREATE TABLE table_name_8 (commissioned VARCHAR, pennant_number VARCHAR)
SELECT commissioned FROM table_name_8 WHERE pennant_number = "q144"
### Context: CREATE TABLE table_name_8 (commissioned VARCHAR, pennant_number VARCHAR) ### Question: On what date was the ship with a Pennant number of Q144 commissioned? ### Answer: SELECT commissioned FROM table_name_8 WHERE pennant_number = "q144"
How many ships are named Monge?
CREATE TABLE table_name_10 (ordered VARCHAR, name VARCHAR)
SELECT COUNT(ordered) FROM table_name_10 WHERE name = "monge"
### Context: CREATE TABLE table_name_10 (ordered VARCHAR, name VARCHAR) ### Question: How many ships are named Monge? ### Answer: SELECT COUNT(ordered) FROM table_name_10 WHERE name = "monge"
What launched has mariner 4 as the spacecraft?
CREATE TABLE table_name_17 (launched VARCHAR, spacecraft VARCHAR)
SELECT launched FROM table_name_17 WHERE spacecraft = "mariner 4"
### Context: CREATE TABLE table_name_17 (launched VARCHAR, spacecraft VARCHAR) ### Question: What launched has mariner 4 as the spacecraft? ### Answer: SELECT launched FROM table_name_17 WHERE spacecraft = "mariner 4"
What launched has 158 days (5 months, 8 days) as the time elapsed?
CREATE TABLE table_name_91 (launched VARCHAR, time_elapsed VARCHAR)
SELECT launched FROM table_name_91 WHERE time_elapsed = "158 days (5 months, 8 days)"
### Context: CREATE TABLE table_name_91 (launched VARCHAR, time_elapsed VARCHAR) ### Question: What launched has 158 days (5 months, 8 days) as the time elapsed? ### Answer: SELECT launched FROM table_name_91 WHERE time_elapsed = "158 days (5 months, 8 days)"
When was the song by Andy Gibb issued?
CREATE TABLE table_name_44 (issue_date_s_ VARCHAR, artist VARCHAR)
SELECT issue_date_s_ FROM table_name_44 WHERE artist = "andy gibb"
### Context: CREATE TABLE table_name_44 (issue_date_s_ VARCHAR, artist VARCHAR) ### Question: When was the song by Andy Gibb issued? ### Answer: SELECT issue_date_s_ FROM table_name_44 WHERE artist = "andy gibb"
Which Round has a College of stanford, and an Overall smaller than 8?
CREATE TABLE table_name_57 (round INTEGER, college VARCHAR, overall VARCHAR)
SELECT AVG(round) FROM table_name_57 WHERE college = "stanford" AND overall < 8
### Context: CREATE TABLE table_name_57 (round INTEGER, college VARCHAR, overall VARCHAR) ### Question: Which Round has a College of stanford, and an Overall smaller than 8? ### Answer: SELECT AVG(round) FROM table_name_57 WHERE college = "stanford" AND overall < 8
How many Picks have a College of tennessee, and an Overall smaller than 270?
CREATE TABLE table_name_59 (pick__number INTEGER, college VARCHAR, overall VARCHAR)
SELECT SUM(pick__number) FROM table_name_59 WHERE college = "tennessee" AND overall < 270
### Context: CREATE TABLE table_name_59 (pick__number INTEGER, college VARCHAR, overall VARCHAR) ### Question: How many Picks have a College of tennessee, and an Overall smaller than 270? ### Answer: SELECT SUM(pick__number) FROM table_name_59 WHERE college = "tennessee" AND overall < 270
Which Pick # is the lowest one that has a College of troy state, and a Name of reggie dwight, and an Overall smaller than 217?
CREATE TABLE table_name_92 (pick__number INTEGER, overall VARCHAR, college VARCHAR, name VARCHAR)
SELECT MIN(pick__number) FROM table_name_92 WHERE college = "troy state" AND name = "reggie dwight" AND overall < 217
### Context: CREATE TABLE table_name_92 (pick__number INTEGER, overall VARCHAR, college VARCHAR, name VARCHAR) ### Question: Which Pick # is the lowest one that has a College of troy state, and a Name of reggie dwight, and an Overall smaller than 217? ### Answer: SELECT MIN(pick__number) FROM table_name_92 WHERE college = "troy state" AND name = "reggie dwight" AND overall < 217
What's the smallest amount of earnings when the wins are less than 72 and the rank is more than 3?
CREATE TABLE table_name_87 (earnings___ INTEGER, wins VARCHAR, rank VARCHAR)
SELECT MIN(earnings___) AS $__ FROM table_name_87 WHERE wins < 72 AND rank > 3
### Context: CREATE TABLE table_name_87 (earnings___ INTEGER, wins VARCHAR, rank VARCHAR) ### Question: What's the smallest amount of earnings when the wins are less than 72 and the rank is more than 3? ### Answer: SELECT MIN(earnings___) AS $__ FROM table_name_87 WHERE wins < 72 AND rank > 3
What's the smallest amount of earnings when there are more than 18 wins and the rank is 2?
CREATE TABLE table_name_86 (earnings___ INTEGER, wins VARCHAR, rank VARCHAR)
SELECT MIN(earnings___) AS $__ FROM table_name_86 WHERE wins > 18 AND rank = 2
### Context: CREATE TABLE table_name_86 (earnings___ INTEGER, wins VARCHAR, rank VARCHAR) ### Question: What's the smallest amount of earnings when there are more than 18 wins and the rank is 2? ### Answer: SELECT MIN(earnings___) AS $__ FROM table_name_86 WHERE wins > 18 AND rank = 2
What is the lowest number of losses for a team with more than 0 wins?
CREATE TABLE table_name_53 (losses INTEGER, wins INTEGER)
SELECT MIN(losses) FROM table_name_53 WHERE wins > 0
### Context: CREATE TABLE table_name_53 (losses INTEGER, wins INTEGER) ### Question: What is the lowest number of losses for a team with more than 0 wins? ### Answer: SELECT MIN(losses) FROM table_name_53 WHERE wins > 0
What is the average number of losses for teams with fewer than 0 wins?
CREATE TABLE table_name_23 (losses INTEGER, wins INTEGER)
SELECT AVG(losses) FROM table_name_23 WHERE wins < 0
### Context: CREATE TABLE table_name_23 (losses INTEGER, wins INTEGER) ### Question: What is the average number of losses for teams with fewer than 0 wins? ### Answer: SELECT AVG(losses) FROM table_name_23 WHERE wins < 0
What is the average number of wins for Runcorn Highfield with more than 0 draws?
CREATE TABLE table_name_55 (wins INTEGER, team VARCHAR, draws VARCHAR)
SELECT AVG(wins) FROM table_name_55 WHERE team = "runcorn highfield" AND draws > 0
### Context: CREATE TABLE table_name_55 (wins INTEGER, team VARCHAR, draws VARCHAR) ### Question: What is the average number of wins for Runcorn Highfield with more than 0 draws? ### Answer: SELECT AVG(wins) FROM table_name_55 WHERE team = "runcorn highfield" AND draws > 0
What is the lowest number of losses for Nottingham City with fewer than 0 wins?
CREATE TABLE table_name_28 (losses INTEGER, team VARCHAR, wins VARCHAR)
SELECT MIN(losses) FROM table_name_28 WHERE team = "nottingham city" AND wins < 0
### Context: CREATE TABLE table_name_28 (losses INTEGER, team VARCHAR, wins VARCHAR) ### Question: What is the lowest number of losses for Nottingham City with fewer than 0 wins? ### Answer: SELECT MIN(losses) FROM table_name_28 WHERE team = "nottingham city" AND wins < 0
What is the weight of the player from the Philadelphia 76ers?
CREATE TABLE table_name_53 (weight VARCHAR, team VARCHAR)
SELECT COUNT(weight) FROM table_name_53 WHERE team = "philadelphia 76ers"
### Context: CREATE TABLE table_name_53 (weight VARCHAR, team VARCHAR) ### Question: What is the weight of the player from the Philadelphia 76ers? ### Answer: SELECT COUNT(weight) FROM table_name_53 WHERE team = "philadelphia 76ers"
What is the height of the player, Larry Hughes?
CREATE TABLE table_name_71 (height VARCHAR, player VARCHAR)
SELECT height FROM table_name_71 WHERE player = "larry hughes"
### Context: CREATE TABLE table_name_71 (height VARCHAR, player VARCHAR) ### Question: What is the height of the player, Larry Hughes? ### Answer: SELECT height FROM table_name_71 WHERE player = "larry hughes"
What player was moved to Blackpool?
CREATE TABLE table_name_41 (player VARCHAR, to_club VARCHAR)
SELECT player FROM table_name_41 WHERE to_club = "blackpool"
### Context: CREATE TABLE table_name_41 (player VARCHAR, to_club VARCHAR) ### Question: What player was moved to Blackpool? ### Answer: SELECT player FROM table_name_41 WHERE to_club = "blackpool"
A player was moved to celtic had an end of what date?
CREATE TABLE table_name_99 (end_date VARCHAR, to_club VARCHAR)
SELECT end_date FROM table_name_99 WHERE to_club = "celtic"
### Context: CREATE TABLE table_name_99 (end_date VARCHAR, to_club VARCHAR) ### Question: A player was moved to celtic had an end of what date? ### Answer: SELECT end_date FROM table_name_99 WHERE to_club = "celtic"
Which Game is the average one that has a February larger than 20, and a Record of 41–17–4, and Points smaller than 86?
CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, february VARCHAR, record VARCHAR)
SELECT AVG(game) FROM table_name_23 WHERE february > 20 AND record = "41–17–4" AND points < 86
### Context: CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, february VARCHAR, record VARCHAR) ### Question: Which Game is the average one that has a February larger than 20, and a Record of 41–17–4, and Points smaller than 86? ### Answer: SELECT AVG(game) FROM table_name_23 WHERE february > 20 AND record = "41–17–4" AND points < 86
what country hosted david toms
CREATE TABLE table_name_94 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_94 WHERE player = "david toms"
### Context: CREATE TABLE table_name_94 (country VARCHAR, player VARCHAR) ### Question: what country hosted david toms ### Answer: SELECT country FROM table_name_94 WHERE player = "david toms"
What was the score for game 18?
CREATE TABLE table_name_87 (score VARCHAR, game VARCHAR)
SELECT score FROM table_name_87 WHERE game = 18
### Context: CREATE TABLE table_name_87 (score VARCHAR, game VARCHAR) ### Question: What was the score for game 18? ### Answer: SELECT score FROM table_name_87 WHERE game = 18
What is the kickoff time for the game that was at Ralph Wilson Stadium?
CREATE TABLE table_name_92 (kickoff___et__ VARCHAR, game_site VARCHAR)
SELECT kickoff___et__ FROM table_name_92 WHERE game_site = "ralph wilson stadium"
### Context: CREATE TABLE table_name_92 (kickoff___et__ VARCHAR, game_site VARCHAR) ### Question: What is the kickoff time for the game that was at Ralph Wilson Stadium? ### Answer: SELECT kickoff___et__ FROM table_name_92 WHERE game_site = "ralph wilson stadium"
What is the record for the game against the New England Patriots with a recap?
CREATE TABLE table_name_90 (record VARCHAR, nfl_recap VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_90 WHERE nfl_recap = "recap" AND opponent = "new england patriots"
### Context: CREATE TABLE table_name_90 (record VARCHAR, nfl_recap VARCHAR, opponent VARCHAR) ### Question: What is the record for the game against the New England Patriots with a recap? ### Answer: SELECT record FROM table_name_90 WHERE nfl_recap = "recap" AND opponent = "new england patriots"
What is the result of the game on week 11?
CREATE TABLE table_name_52 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_52 WHERE week = 11
### Context: CREATE TABLE table_name_52 (result VARCHAR, week VARCHAR) ### Question: What is the result of the game on week 11? ### Answer: SELECT result FROM table_name_52 WHERE week = 11
Who was the visitor that led to a 3-0-2 record?
CREATE TABLE table_name_15 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_15 WHERE record = "3-0-2"
### Context: CREATE TABLE table_name_15 (visitor VARCHAR, record VARCHAR) ### Question: Who was the visitor that led to a 3-0-2 record? ### Answer: SELECT visitor FROM table_name_15 WHERE record = "3-0-2"
What is the original title of the Gypsy Magic film title used in nomination?
CREATE TABLE table_name_67 (original_title VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT original_title FROM table_name_67 WHERE film_title_used_in_nomination = "gypsy magic"
### Context: CREATE TABLE table_name_67 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: What is the original title of the Gypsy Magic film title used in nomination? ### Answer: SELECT original_title FROM table_name_67 WHERE film_title_used_in_nomination = "gypsy magic"
Name the builder for number 3
CREATE TABLE table_name_64 (builder VARCHAR, number VARCHAR)
SELECT builder FROM table_name_64 WHERE number = 3
### Context: CREATE TABLE table_name_64 (builder VARCHAR, number VARCHAR) ### Question: Name the builder for number 3 ### Answer: SELECT builder FROM table_name_64 WHERE number = 3
Name the date with works number less than 1673 and number less than 3
CREATE TABLE table_name_42 (date VARCHAR, works_number VARCHAR, number VARCHAR)
SELECT date FROM table_name_42 WHERE works_number < 1673 AND number < 3
### Context: CREATE TABLE table_name_42 (date VARCHAR, works_number VARCHAR, number VARCHAR) ### Question: Name the date with works number less than 1673 and number less than 3 ### Answer: SELECT date FROM table_name_42 WHERE works_number < 1673 AND number < 3
Name the builder for 4/1906 and works number more than 199
CREATE TABLE table_name_90 (builder VARCHAR, works_number VARCHAR, date VARCHAR)
SELECT builder FROM table_name_90 WHERE works_number > 199 AND date = "4/1906"
### Context: CREATE TABLE table_name_90 (builder VARCHAR, works_number VARCHAR, date VARCHAR) ### Question: Name the builder for 4/1906 and works number more than 199 ### Answer: SELECT builder FROM table_name_90 WHERE works_number > 199 AND date = "4/1906"
What was the largest number of people in attendance of the game with a W 14-3 result after week 10?
CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, week VARCHAR)
SELECT MAX(attendance) FROM table_name_10 WHERE result = "w 14-3" AND week > 10
### Context: CREATE TABLE table_name_10 (attendance INTEGER, result VARCHAR, week VARCHAR) ### Question: What was the largest number of people in attendance of the game with a W 14-3 result after week 10? ### Answer: SELECT MAX(attendance) FROM table_name_10 WHERE result = "w 14-3" AND week > 10
What is the percentage for Zares on May 21–22?
CREATE TABLE table_name_87 (zares VARCHAR, date VARCHAR)
SELECT zares FROM table_name_87 WHERE date = "may 21–22"
### Context: CREATE TABLE table_name_87 (zares VARCHAR, date VARCHAR) ### Question: What is the percentage for Zares on May 21–22? ### Answer: SELECT zares FROM table_name_87 WHERE date = "may 21–22"
What is the source for 7% DeSUS?
CREATE TABLE table_name_37 (source VARCHAR, desus VARCHAR)
SELECT source FROM table_name_37 WHERE desus = "7%"
### Context: CREATE TABLE table_name_37 (source VARCHAR, desus VARCHAR) ### Question: What is the source for 7% DeSUS? ### Answer: SELECT source FROM table_name_37 WHERE desus = "7%"
What is the source for Zares at 8.6%?
CREATE TABLE table_name_12 (source VARCHAR, zares VARCHAR)
SELECT source FROM table_name_12 WHERE zares = "8.6%"
### Context: CREATE TABLE table_name_12 (source VARCHAR, zares VARCHAR) ### Question: What is the source for Zares at 8.6%? ### Answer: SELECT source FROM table_name_12 WHERE zares = "8.6%"
What is the source corresponding to a date of May 25–27?
CREATE TABLE table_name_7 (source VARCHAR, date VARCHAR)
SELECT source FROM table_name_7 WHERE date = "may 25–27"
### Context: CREATE TABLE table_name_7 (source VARCHAR, date VARCHAR) ### Question: What is the source corresponding to a date of May 25–27? ### Answer: SELECT source FROM table_name_7 WHERE date = "may 25–27"
What song is done by Terence Trent D'Arby?
CREATE TABLE table_name_24 (song VARCHAR, artist VARCHAR)
SELECT song FROM table_name_24 WHERE artist = "terence trent d'arby"
### Context: CREATE TABLE table_name_24 (song VARCHAR, artist VARCHAR) ### Question: What song is done by Terence Trent D'Arby? ### Answer: SELECT song FROM table_name_24 WHERE artist = "terence trent d'arby"
What was the Result on October 27, 2002?
CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_66 WHERE date = "october 27, 2002"
### Context: CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR) ### Question: What was the Result on October 27, 2002? ### Answer: SELECT result FROM table_name_66 WHERE date = "october 27, 2002"