question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which details of journey had simon hoggart as a narrator?
CREATE TABLE table_name_48 (details_of_journey VARCHAR, narrator VARCHAR)
SELECT details_of_journey FROM table_name_48 WHERE narrator = "simon hoggart"
### Context: CREATE TABLE table_name_48 (details_of_journey VARCHAR, narrator VARCHAR) ### Question: Which details of journey had simon hoggart as a narrator? ### Answer: SELECT details_of_journey FROM table_name_48 WHERE narrator = "simon hoggart"
Which countries visited had an episode number of less than 7 when Ray Gosling was the writer?
CREATE TABLE table_name_26 (countries_visited VARCHAR, episode_no VARCHAR, writer VARCHAR)
SELECT countries_visited FROM table_name_26 WHERE episode_no < 7 AND writer = "ray gosling"
### Context: CREATE TABLE table_name_26 (countries_visited VARCHAR, episode_no VARCHAR, writer VARCHAR) ### Question: Which countries visited had an episode number of less than 7 when Ray Gosling was the writer? ### Answer: SELECT countries_visited FROM table_name_26 WHERE episode_no < 7 AND writer = "ray gosling"
How tall is Zipp Duncan?
CREATE TABLE table_name_30 (height VARCHAR, name VARCHAR)
SELECT height FROM table_name_30 WHERE name = "zipp duncan"
### Context: CREATE TABLE table_name_30 (height VARCHAR, name VARCHAR) ### Question: How tall is Zipp Duncan? ### Answer: SELECT height FROM table_name_30 WHERE name = "zipp duncan"
What is the average games of Tony Dixon?
CREATE TABLE table_name_51 (games INTEGER, name VARCHAR)
SELECT AVG(games) AS ↑ FROM table_name_51 WHERE name = "tony dixon"
### Context: CREATE TABLE table_name_51 (games INTEGER, name VARCHAR) ### Question: What is the average games of Tony Dixon? ### Answer: SELECT AVG(games) AS ↑ FROM table_name_51 WHERE name = "tony dixon"
What is the total of wins where the top 25 is 6, top 10 is more than 2, and the event number is less than 19?
CREATE TABLE table_name_55 (wins INTEGER, events VARCHAR, top_25 VARCHAR, top_10 VARCHAR)
SELECT SUM(wins) FROM table_name_55 WHERE top_25 = 6 AND top_10 > 2 AND events < 19
### Context: CREATE TABLE table_name_55 (wins INTEGER, events VARCHAR, top_25 VARCHAR, top_10 VARCHAR) ### Question: What is the total of wins where the top 25 is 6, top 10 is more than 2, and the event number is less than 19? ### Answer: SELECT SUM(wins) FROM table_name_55 WHERE top_25 = 6 AND top_10 > 2 AND events < 19
What is the total of cuts made where the top 25 is less than 6 and the top-5 is more than 0?
CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_5 VARCHAR)
SELECT SUM(cuts_made) FROM table_name_90 WHERE top_25 < 6 AND top_5 > 0
### Context: CREATE TABLE table_name_90 (cuts_made INTEGER, top_25 VARCHAR, top_5 VARCHAR) ### Question: What is the total of cuts made where the top 25 is less than 6 and the top-5 is more than 0? ### Answer: SELECT SUM(cuts_made) FROM table_name_90 WHERE top_25 < 6 AND top_5 > 0
How many top-10 numbers had a top 25 of more than 6 with less than 2 wins?
CREATE TABLE table_name_61 (top_10 VARCHAR, top_25 VARCHAR, wins VARCHAR)
SELECT COUNT(top_10) FROM table_name_61 WHERE top_25 > 6 AND wins < 2
### Context: CREATE TABLE table_name_61 (top_10 VARCHAR, top_25 VARCHAR, wins VARCHAR) ### Question: How many top-10 numbers had a top 25 of more than 6 with less than 2 wins? ### Answer: SELECT COUNT(top_10) FROM table_name_61 WHERE top_25 > 6 AND wins < 2
Name the 2011 with 2010 of 1r and 2012 of sf
CREATE TABLE table_name_35 (Id VARCHAR)
SELECT 2011 FROM table_name_35 WHERE 2010 = "1r" AND 2012 = "sf"
### Context: CREATE TABLE table_name_35 (Id VARCHAR) ### Question: Name the 2011 with 2010 of 1r and 2012 of sf ### Answer: SELECT 2011 FROM table_name_35 WHERE 2010 = "1r" AND 2012 = "sf"
Name the 2008 with 2012 of 2r and 2006 of 2r
CREATE TABLE table_name_39 (Id VARCHAR)
SELECT 2008 FROM table_name_39 WHERE 2012 = "2r" AND 2006 = "2r"
### Context: CREATE TABLE table_name_39 (Id VARCHAR) ### Question: Name the 2008 with 2012 of 2r and 2006 of 2r ### Answer: SELECT 2008 FROM table_name_39 WHERE 2012 = "2r" AND 2006 = "2r"
Name the 2008 for 2012 of sf
CREATE TABLE table_name_41 (Id VARCHAR)
SELECT 2008 FROM table_name_41 WHERE 2012 = "sf"
### Context: CREATE TABLE table_name_41 (Id VARCHAR) ### Question: Name the 2008 for 2012 of sf ### Answer: SELECT 2008 FROM table_name_41 WHERE 2012 = "sf"
Name the 2013 for 2011 of 1r
CREATE TABLE table_name_9 (Id VARCHAR)
SELECT 2013 FROM table_name_9 WHERE 2011 = "1r"
### Context: CREATE TABLE table_name_9 (Id VARCHAR) ### Question: Name the 2013 for 2011 of 1r ### Answer: SELECT 2013 FROM table_name_9 WHERE 2011 = "1r"
Name the 2011 with 2006 of 2r and 2008 of 2r
CREATE TABLE table_name_22 (Id VARCHAR)
SELECT 2011 FROM table_name_22 WHERE 2006 = "2r" AND 2008 = "2r"
### Context: CREATE TABLE table_name_22 (Id VARCHAR) ### Question: Name the 2011 with 2006 of 2r and 2008 of 2r ### Answer: SELECT 2011 FROM table_name_22 WHERE 2006 = "2r" AND 2008 = "2r"
Name the 2012 with 2013 of 2r and 2009 of 3r
CREATE TABLE table_name_69 (Id VARCHAR)
SELECT 2012 FROM table_name_69 WHERE 2013 = "2r" AND 2009 = "3r"
### Context: CREATE TABLE table_name_69 (Id VARCHAR) ### Question: Name the 2012 with 2013 of 2r and 2009 of 3r ### Answer: SELECT 2012 FROM table_name_69 WHERE 2013 = "2r" AND 2009 = "3r"
How many Field goals have Points larger than 5, and Touchdowns larger than 2, and an Extra points smaller than 0?
CREATE TABLE table_name_33 (field_goals VARCHAR, extra_points VARCHAR, points VARCHAR, touchdowns VARCHAR)
SELECT COUNT(field_goals) FROM table_name_33 WHERE points > 5 AND touchdowns > 2 AND extra_points < 0
### Context: CREATE TABLE table_name_33 (field_goals VARCHAR, extra_points VARCHAR, points VARCHAR, touchdowns VARCHAR) ### Question: How many Field goals have Points larger than 5, and Touchdowns larger than 2, and an Extra points smaller than 0? ### Answer: SELECT COUNT(field_goals) FROM table_name_33 WHERE points > 5 AND touchdowns > 2 AND extra_points < 0
How many Touchdowns have Extra points larger than 0, and Points of 48?
CREATE TABLE table_name_84 (touchdowns VARCHAR, extra_points VARCHAR, points VARCHAR)
SELECT COUNT(touchdowns) FROM table_name_84 WHERE extra_points > 0 AND points = 48
### Context: CREATE TABLE table_name_84 (touchdowns VARCHAR, extra_points VARCHAR, points VARCHAR) ### Question: How many Touchdowns have Extra points larger than 0, and Points of 48? ### Answer: SELECT COUNT(touchdowns) FROM table_name_84 WHERE extra_points > 0 AND points = 48
Which Touchdowns have an Extra points smaller than 5, and a Player of clark, and Field goals larger than 0?
CREATE TABLE table_name_8 (touchdowns INTEGER, field_goals VARCHAR, extra_points VARCHAR, player VARCHAR)
SELECT AVG(touchdowns) FROM table_name_8 WHERE extra_points < 5 AND player = "clark" AND field_goals > 0
### Context: CREATE TABLE table_name_8 (touchdowns INTEGER, field_goals VARCHAR, extra_points VARCHAR, player VARCHAR) ### Question: Which Touchdowns have an Extra points smaller than 5, and a Player of clark, and Field goals larger than 0? ### Answer: SELECT AVG(touchdowns) FROM table_name_8 WHERE extra_points < 5 AND player = "clark" AND field_goals > 0
Which Points have Touchdowns larger than 0, and an Extra points smaller than 0?
CREATE TABLE table_name_70 (points INTEGER, touchdowns VARCHAR, extra_points VARCHAR)
SELECT SUM(points) FROM table_name_70 WHERE touchdowns > 0 AND extra_points < 0
### Context: CREATE TABLE table_name_70 (points INTEGER, touchdowns VARCHAR, extra_points VARCHAR) ### Question: Which Points have Touchdowns larger than 0, and an Extra points smaller than 0? ### Answer: SELECT SUM(points) FROM table_name_70 WHERE touchdowns > 0 AND extra_points < 0
Which Semifinalists has a Champions of michael chang 6-0 6-4?
CREATE TABLE table_name_86 (semifinalists VARCHAR, champions VARCHAR)
SELECT semifinalists FROM table_name_86 WHERE champions = "michael chang 6-0 6-4"
### Context: CREATE TABLE table_name_86 (semifinalists VARCHAR, champions VARCHAR) ### Question: Which Semifinalists has a Champions of michael chang 6-0 6-4? ### Answer: SELECT semifinalists FROM table_name_86 WHERE champions = "michael chang 6-0 6-4"
Whose Runner-up has a Semifinalist of guillermo pérez-roldán andrea gaudenzi?
CREATE TABLE table_name_68 (runners_up VARCHAR, semifinalists VARCHAR)
SELECT runners_up FROM table_name_68 WHERE semifinalists = "guillermo pérez-roldán andrea gaudenzi"
### Context: CREATE TABLE table_name_68 (runners_up VARCHAR, semifinalists VARCHAR) ### Question: Whose Runner-up has a Semifinalist of guillermo pérez-roldán andrea gaudenzi? ### Answer: SELECT runners_up FROM table_name_68 WHERE semifinalists = "guillermo pérez-roldán andrea gaudenzi"
Tell me the least season with level less than 1
CREATE TABLE table_name_5 (season INTEGER, level INTEGER)
SELECT MIN(season) FROM table_name_5 WHERE level < 1
### Context: CREATE TABLE table_name_5 (season INTEGER, level INTEGER) ### Question: Tell me the least season with level less than 1 ### Answer: SELECT MIN(season) FROM table_name_5 WHERE level < 1
What was the Attendance on September 11, 1983?
CREATE TABLE table_name_49 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_49 WHERE date = "september 11, 1983"
### Context: CREATE TABLE table_name_49 (attendance VARCHAR, date VARCHAR) ### Question: What was the Attendance on September 11, 1983? ### Answer: SELECT attendance FROM table_name_49 WHERE date = "september 11, 1983"
What was the Opponent during the game with a Result of W 37-21?
CREATE TABLE table_name_73 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_73 WHERE result = "w 37-21"
### Context: CREATE TABLE table_name_73 (opponent VARCHAR, result VARCHAR) ### Question: What was the Opponent during the game with a Result of W 37-21? ### Answer: SELECT opponent FROM table_name_73 WHERE result = "w 37-21"
What was the Result on Week 8?
CREATE TABLE table_name_50 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_50 WHERE week = 8
### Context: CREATE TABLE table_name_50 (result VARCHAR, week VARCHAR) ### Question: What was the Result on Week 8? ### Answer: SELECT result FROM table_name_50 WHERE week = 8
What is the lowest number of games with less than 1 loss?
CREATE TABLE table_name_12 (games INTEGER, lost INTEGER)
SELECT MIN(games) FROM table_name_12 WHERE lost < 1
### Context: CREATE TABLE table_name_12 (games INTEGER, lost INTEGER) ### Question: What is the lowest number of games with less than 1 loss? ### Answer: SELECT MIN(games) FROM table_name_12 WHERE lost < 1
What was the nationality of the skater with 108.8 points?
CREATE TABLE table_name_52 (nation VARCHAR, points VARCHAR)
SELECT nation FROM table_name_52 WHERE points = 108.8
### Context: CREATE TABLE table_name_52 (nation VARCHAR, points VARCHAR) ### Question: What was the nationality of the skater with 108.8 points? ### Answer: SELECT nation FROM table_name_52 WHERE points = 108.8
How many points for the skater from club btsc?
CREATE TABLE table_name_43 (points VARCHAR, club VARCHAR)
SELECT COUNT(points) FROM table_name_43 WHERE club = "btsc"
### Context: CREATE TABLE table_name_43 (points VARCHAR, club VARCHAR) ### Question: How many points for the skater from club btsc? ### Answer: SELECT COUNT(points) FROM table_name_43 WHERE club = "btsc"
Which Original title has a Year of 1983, and a Country of italy?
CREATE TABLE table_name_78 (original_title VARCHAR, year VARCHAR, country VARCHAR)
SELECT original_title FROM table_name_78 WHERE year = 1983 AND country = "italy"
### Context: CREATE TABLE table_name_78 (original_title VARCHAR, year VARCHAR, country VARCHAR) ### Question: Which Original title has a Year of 1983, and a Country of italy? ### Answer: SELECT original_title FROM table_name_78 WHERE year = 1983 AND country = "italy"
How many years have an Original title of иваново детство?
CREATE TABLE table_name_87 (year VARCHAR, original_title VARCHAR)
SELECT COUNT(year) FROM table_name_87 WHERE original_title = "иваново детство"
### Context: CREATE TABLE table_name_87 (year VARCHAR, original_title VARCHAR) ### Question: How many years have an Original title of иваново детство? ### Answer: SELECT COUNT(year) FROM table_name_87 WHERE original_title = "иваново детство"
Which Length has a Country of soviet union, and a Year larger than 1975?
CREATE TABLE table_name_52 (length VARCHAR, country VARCHAR, year VARCHAR)
SELECT length FROM table_name_52 WHERE country = "soviet union" AND year > 1975
### Context: CREATE TABLE table_name_52 (length VARCHAR, country VARCHAR, year VARCHAR) ### Question: Which Length has a Country of soviet union, and a Year larger than 1975? ### Answer: SELECT length FROM table_name_52 WHERE country = "soviet union" AND year > 1975
What is listed as the lowest Year with a Wins that's smaller than 0?
CREATE TABLE table_name_25 (year INTEGER, wins INTEGER)
SELECT MIN(year) FROM table_name_25 WHERE wins < 0
### Context: CREATE TABLE table_name_25 (year INTEGER, wins INTEGER) ### Question: What is listed as the lowest Year with a Wins that's smaller than 0? ### Answer: SELECT MIN(year) FROM table_name_25 WHERE wins < 0
What is listed for the Wins with a Year of 1989?
CREATE TABLE table_name_84 (wins VARCHAR, year VARCHAR)
SELECT wins FROM table_name_84 WHERE year = 1989
### Context: CREATE TABLE table_name_84 (wins VARCHAR, year VARCHAR) ### Question: What is listed for the Wins with a Year of 1989? ### Answer: SELECT wins FROM table_name_84 WHERE year = 1989
What is listed for the Class that's got a Team of Cagiva and Points of 4?
CREATE TABLE table_name_17 (class VARCHAR, team VARCHAR, points VARCHAR)
SELECT class FROM table_name_17 WHERE team = "cagiva" AND points = 4
### Context: CREATE TABLE table_name_17 (class VARCHAR, team VARCHAR, points VARCHAR) ### Question: What is listed for the Class that's got a Team of Cagiva and Points of 4? ### Answer: SELECT class FROM table_name_17 WHERE team = "cagiva" AND points = 4
What is the number of Population 2001 Census that has 476,815 in Population 1991 Census?
CREATE TABLE table_name_10 (population_2001_census INTEGER, population_1991_census VARCHAR)
SELECT SUM(population_2001_census) FROM table_name_10 WHERE population_1991_census = 476 OFFSET 815
### Context: CREATE TABLE table_name_10 (population_2001_census INTEGER, population_1991_census VARCHAR) ### Question: What is the number of Population 2001 Census that has 476,815 in Population 1991 Census? ### Answer: SELECT SUM(population_2001_census) FROM table_name_10 WHERE population_1991_census = 476 OFFSET 815
What played has 3 as the losing bonus?
CREATE TABLE table_name_91 (played VARCHAR, losing_bonus VARCHAR)
SELECT played FROM table_name_91 WHERE losing_bonus = "3"
### Context: CREATE TABLE table_name_91 (played VARCHAR, losing_bonus VARCHAR) ### Question: What played has 3 as the losing bonus? ### Answer: SELECT played FROM table_name_91 WHERE losing_bonus = "3"
What is the try bonus that has llangefni rfc as the club?
CREATE TABLE table_name_22 (try_bonus VARCHAR, club VARCHAR)
SELECT try_bonus FROM table_name_22 WHERE club = "llangefni rfc"
### Context: CREATE TABLE table_name_22 (try_bonus VARCHAR, club VARCHAR) ### Question: What is the try bonus that has llangefni rfc as the club? ### Answer: SELECT try_bonus FROM table_name_22 WHERE club = "llangefni rfc"
What played has 247 as the points?
CREATE TABLE table_name_63 (played VARCHAR, points_for VARCHAR)
SELECT played FROM table_name_63 WHERE points_for = "247"
### Context: CREATE TABLE table_name_63 (played VARCHAR, points_for VARCHAR) ### Question: What played has 247 as the points? ### Answer: SELECT played FROM table_name_63 WHERE points_for = "247"
What try bonus has 19 as the tries against?
CREATE TABLE table_name_17 (try_bonus VARCHAR, tries_against VARCHAR)
SELECT try_bonus FROM table_name_17 WHERE tries_against = "19"
### Context: CREATE TABLE table_name_17 (try_bonus VARCHAR, tries_against VARCHAR) ### Question: What try bonus has 19 as the tries against? ### Answer: SELECT try_bonus FROM table_name_17 WHERE tries_against = "19"
What points has 18 for the played and bala rfc as the club?
CREATE TABLE table_name_31 (points_for VARCHAR, played VARCHAR, club VARCHAR)
SELECT points_for FROM table_name_31 WHERE played = "18" AND club = "bala rfc"
### Context: CREATE TABLE table_name_31 (points_for VARCHAR, played VARCHAR, club VARCHAR) ### Question: What points has 18 for the played and bala rfc as the club? ### Answer: SELECT points_for FROM table_name_31 WHERE played = "18" AND club = "bala rfc"
What try bonus has 18 as the played of and 204 as the points?
CREATE TABLE table_name_83 (try_bonus VARCHAR, played VARCHAR, points_for VARCHAR)
SELECT try_bonus FROM table_name_83 WHERE played = "18" AND points_for = "204"
### Context: CREATE TABLE table_name_83 (try_bonus VARCHAR, played VARCHAR, points_for VARCHAR) ### Question: What try bonus has 18 as the played of and 204 as the points? ### Answer: SELECT try_bonus FROM table_name_83 WHERE played = "18" AND points_for = "204"
What record has montreal as the visitor, and february 2 as the date?
CREATE TABLE table_name_4 (record VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT record FROM table_name_4 WHERE visitor = "montreal" AND date = "february 2"
### Context: CREATE TABLE table_name_4 (record VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What record has montreal as the visitor, and february 2 as the date? ### Answer: SELECT record FROM table_name_4 WHERE visitor = "montreal" AND date = "february 2"
What record has February 25 as the date?
CREATE TABLE table_name_7 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_7 WHERE date = "february 25"
### Context: CREATE TABLE table_name_7 (record VARCHAR, date VARCHAR) ### Question: What record has February 25 as the date? ### Answer: SELECT record FROM table_name_7 WHERE date = "february 25"
What date has boston as the visitor?
CREATE TABLE table_name_21 (date VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_21 WHERE visitor = "boston"
### Context: CREATE TABLE table_name_21 (date VARCHAR, visitor VARCHAR) ### Question: What date has boston as the visitor? ### Answer: SELECT date FROM table_name_21 WHERE visitor = "boston"
What score has vancouver as the home, and february 16 as the date?
CREATE TABLE table_name_81 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_81 WHERE home = "vancouver" AND date = "february 16"
### Context: CREATE TABLE table_name_81 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: What score has vancouver as the home, and february 16 as the date? ### Answer: SELECT score FROM table_name_81 WHERE home = "vancouver" AND date = "february 16"
Team of corinthians, and a Lost larger than 15 has which highest drawn?
CREATE TABLE table_name_80 (drawn INTEGER, team VARCHAR, lost VARCHAR)
SELECT MAX(drawn) FROM table_name_80 WHERE team = "corinthians" AND lost > 15
### Context: CREATE TABLE table_name_80 (drawn INTEGER, team VARCHAR, lost VARCHAR) ### Question: Team of corinthians, and a Lost larger than 15 has which highest drawn? ### Answer: SELECT MAX(drawn) FROM table_name_80 WHERE team = "corinthians" AND lost > 15
Difference of - 20, and a Position smaller than 17 is the highest against?
CREATE TABLE table_name_47 (against INTEGER, difference VARCHAR, position VARCHAR)
SELECT MAX(against) FROM table_name_47 WHERE difference = "- 20" AND position < 17
### Context: CREATE TABLE table_name_47 (against INTEGER, difference VARCHAR, position VARCHAR) ### Question: Difference of - 20, and a Position smaller than 17 is the highest against? ### Answer: SELECT MAX(against) FROM table_name_47 WHERE difference = "- 20" AND position < 17
Against smaller than 53, and a Drawn smaller than 10, and a Played smaller than 38 has what average points?
CREATE TABLE table_name_88 (points INTEGER, played VARCHAR, against VARCHAR, drawn VARCHAR)
SELECT AVG(points) FROM table_name_88 WHERE against < 53 AND drawn < 10 AND played < 38
### Context: CREATE TABLE table_name_88 (points INTEGER, played VARCHAR, against VARCHAR, drawn VARCHAR) ### Question: Against smaller than 53, and a Drawn smaller than 10, and a Played smaller than 38 has what average points? ### Answer: SELECT AVG(points) FROM table_name_88 WHERE against < 53 AND drawn < 10 AND played < 38
Which score was for Toronto Maple Leafs at home on November 12?
CREATE TABLE table_name_66 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_66 WHERE home = "toronto maple leafs" AND date = "november 12"
### Context: CREATE TABLE table_name_66 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: Which score was for Toronto Maple Leafs at home on November 12? ### Answer: SELECT score FROM table_name_66 WHERE home = "toronto maple leafs" AND date = "november 12"
Which home team had a visitor of Chicago Black Hawks with a score of 2–3?
CREATE TABLE table_name_87 (home VARCHAR, visitor VARCHAR, score VARCHAR)
SELECT home FROM table_name_87 WHERE visitor = "chicago black hawks" AND score = "2–3"
### Context: CREATE TABLE table_name_87 (home VARCHAR, visitor VARCHAR, score VARCHAR) ### Question: Which home team had a visitor of Chicago Black Hawks with a score of 2–3? ### Answer: SELECT home FROM table_name_87 WHERE visitor = "chicago black hawks" AND score = "2–3"
Who was home on November 26?
CREATE TABLE table_name_73 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_73 WHERE date = "november 26"
### Context: CREATE TABLE table_name_73 (home VARCHAR, date VARCHAR) ### Question: Who was home on November 26? ### Answer: SELECT home FROM table_name_73 WHERE date = "november 26"
What was the visitor with a record of 5–8–4?
CREATE TABLE table_name_10 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_10 WHERE record = "5–8–4"
### Context: CREATE TABLE table_name_10 (visitor VARCHAR, record VARCHAR) ### Question: What was the visitor with a record of 5–8–4? ### Answer: SELECT visitor FROM table_name_10 WHERE record = "5–8–4"
What was the average rank of a player with more than 52 points, fewer than 10 draws, a goal loss under 44, and a loss under 15?
CREATE TABLE table_name_66 (rank INTEGER, lose VARCHAR, goal_loss VARCHAR, point VARCHAR, draw VARCHAR)
SELECT AVG(rank) FROM table_name_66 WHERE point > 52 AND draw < 10 AND goal_loss < 44 AND lose < 15
### Context: CREATE TABLE table_name_66 (rank INTEGER, lose VARCHAR, goal_loss VARCHAR, point VARCHAR, draw VARCHAR) ### Question: What was the average rank of a player with more than 52 points, fewer than 10 draws, a goal loss under 44, and a loss under 15? ### Answer: SELECT AVG(rank) FROM table_name_66 WHERE point > 52 AND draw < 10 AND goal_loss < 44 AND lose < 15
What was the highest number of lose for a player named Santos with more than 45 points?
CREATE TABLE table_name_88 (lose INTEGER, name VARCHAR, point VARCHAR)
SELECT MAX(lose) FROM table_name_88 WHERE name = "santos" AND point > 45
### Context: CREATE TABLE table_name_88 (lose INTEGER, name VARCHAR, point VARCHAR) ### Question: What was the highest number of lose for a player named Santos with more than 45 points? ### Answer: SELECT MAX(lose) FROM table_name_88 WHERE name = "santos" AND point > 45
What report has a score of 0-0 with Sydney FC?
CREATE TABLE table_name_49 (report VARCHAR, score VARCHAR, away_team VARCHAR)
SELECT report FROM table_name_49 WHERE score = "0-0" AND away_team = "sydney fc"
### Context: CREATE TABLE table_name_49 (report VARCHAR, score VARCHAR, away_team VARCHAR) ### Question: What report has a score of 0-0 with Sydney FC? ### Answer: SELECT report FROM table_name_49 WHERE score = "0-0" AND away_team = "sydney fc"
On what date was the score 0-0?
CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_33 WHERE score = "0-0"
### Context: CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR) ### Question: On what date was the score 0-0? ### Answer: SELECT date FROM table_name_33 WHERE score = "0-0"
Which home team had the score 1-3?
CREATE TABLE table_name_6 (home_team VARCHAR, score VARCHAR)
SELECT home_team FROM table_name_6 WHERE score = "1-3"
### Context: CREATE TABLE table_name_6 (home_team VARCHAR, score VARCHAR) ### Question: Which home team had the score 1-3? ### Answer: SELECT home_team FROM table_name_6 WHERE score = "1-3"
Where did the away team have round 2?
CREATE TABLE table_name_71 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_71 WHERE away_team = "round 2"
### Context: CREATE TABLE table_name_71 (venue VARCHAR, away_team VARCHAR) ### Question: Where did the away team have round 2? ### Answer: SELECT venue FROM table_name_71 WHERE away_team = "round 2"
When did the venue of round 3 happen?
CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_23 WHERE venue = "round 3"
### Context: CREATE TABLE table_name_23 (date VARCHAR, venue VARCHAR) ### Question: When did the venue of round 3 happen? ### Answer: SELECT date FROM table_name_23 WHERE venue = "round 3"
What is the lowest density of a town with a 13,708 2011 population census ?
CREATE TABLE table_name_74 (density INTEGER, population_2011_census VARCHAR)
SELECT MIN(density) FROM table_name_74 WHERE population_2011_census = 13 OFFSET 708
### Context: CREATE TABLE table_name_74 (density INTEGER, population_2011_census VARCHAR) ### Question: What is the lowest density of a town with a 13,708 2011 population census ? ### Answer: SELECT MIN(density) FROM table_name_74 WHERE population_2011_census = 13 OFFSET 708
specific orbital energy of −29.8 mj/kg has what orbit?
CREATE TABLE table_name_14 (orbit VARCHAR, specific_orbital_energy VARCHAR)
SELECT orbit FROM table_name_14 WHERE specific_orbital_energy = "−29.8 mj/kg"
### Context: CREATE TABLE table_name_14 (orbit VARCHAR, specific_orbital_energy VARCHAR) ### Question: specific orbital energy of −29.8 mj/kg has what orbit? ### Answer: SELECT orbit FROM table_name_14 WHERE specific_orbital_energy = "−29.8 mj/kg"
Orbital period of 89 to 128 min has what specific orbital energy?
CREATE TABLE table_name_73 (specific_orbital_energy VARCHAR, orbital_period VARCHAR)
SELECT specific_orbital_energy FROM table_name_73 WHERE orbital_period = "89 to 128 min"
### Context: CREATE TABLE table_name_73 (specific_orbital_energy VARCHAR, orbital_period VARCHAR) ### Question: Orbital period of 89 to 128 min has what specific orbital energy? ### Answer: SELECT specific_orbital_energy FROM table_name_73 WHERE orbital_period = "89 to 128 min"
center-to-center distance of 6,900 to 46,300 km involves which orbital period?
CREATE TABLE table_name_69 (orbital_period VARCHAR, center_to_center_distance VARCHAR)
SELECT orbital_period FROM table_name_69 WHERE center_to_center_distance = "6,900 to 46,300 km"
### Context: CREATE TABLE table_name_69 (orbital_period VARCHAR, center_to_center_distance VARCHAR) ### Question: center-to-center distance of 6,900 to 46,300 km involves which orbital period? ### Answer: SELECT orbital_period FROM table_name_69 WHERE center_to_center_distance = "6,900 to 46,300 km"
What was the lowest FA Cup for a Malaysia Cup of 0?
CREATE TABLE table_name_64 (fa_cup INTEGER, malaysia_cup INTEGER)
SELECT MIN(fa_cup) FROM table_name_64 WHERE malaysia_cup < 0
### Context: CREATE TABLE table_name_64 (fa_cup INTEGER, malaysia_cup INTEGER) ### Question: What was the lowest FA Cup for a Malaysia Cup of 0? ### Answer: SELECT MIN(fa_cup) FROM table_name_64 WHERE malaysia_cup < 0
What is Zamri Hassan's lowest Malaysia Cup when there were an FA Cup of 0?
CREATE TABLE table_name_74 (malaysia_cup INTEGER, player VARCHAR, fa_cup VARCHAR)
SELECT MIN(malaysia_cup) FROM table_name_74 WHERE player = "zamri hassan" AND fa_cup < 0
### Context: CREATE TABLE table_name_74 (malaysia_cup INTEGER, player VARCHAR, fa_cup VARCHAR) ### Question: What is Zamri Hassan's lowest Malaysia Cup when there were an FA Cup of 0? ### Answer: SELECT MIN(malaysia_cup) FROM table_name_74 WHERE player = "zamri hassan" AND fa_cup < 0
What is the lowest league for the Malaysia Cup when it was larger than 0?
CREATE TABLE table_name_98 (league INTEGER, malaysia_cup INTEGER)
SELECT MIN(league) FROM table_name_98 WHERE malaysia_cup > 0
### Context: CREATE TABLE table_name_98 (league INTEGER, malaysia_cup INTEGER) ### Question: What is the lowest league for the Malaysia Cup when it was larger than 0? ### Answer: SELECT MIN(league) FROM table_name_98 WHERE malaysia_cup > 0
How many Bronze medals did Switzerland with less than 3 Silver medals receive?
CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
SELECT MIN(bronze) FROM table_name_75 WHERE nation = "switzerland" AND silver < 3
### Context: CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, silver VARCHAR) ### Question: How many Bronze medals did Switzerland with less than 3 Silver medals receive? ### Answer: SELECT MIN(bronze) FROM table_name_75 WHERE nation = "switzerland" AND silver < 3
What is the least amount of Silver medals that have more than 3 Bronze?
CREATE TABLE table_name_39 (silver INTEGER, bronze INTEGER)
SELECT MIN(silver) FROM table_name_39 WHERE bronze > 3
### Context: CREATE TABLE table_name_39 (silver INTEGER, bronze INTEGER) ### Question: What is the least amount of Silver medals that have more than 3 Bronze? ### Answer: SELECT MIN(silver) FROM table_name_39 WHERE bronze > 3
What is the average game for March 8 with less than 84 points?
CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, march VARCHAR)
SELECT AVG(game) FROM table_name_23 WHERE points < 84 AND march = 8
### Context: CREATE TABLE table_name_23 (game INTEGER, points VARCHAR, march VARCHAR) ### Question: What is the average game for March 8 with less than 84 points? ### Answer: SELECT AVG(game) FROM table_name_23 WHERE points < 84 AND march = 8
What is the latest in March when the record of 35–16–6–3?
CREATE TABLE table_name_34 (march INTEGER, record VARCHAR)
SELECT MAX(march) FROM table_name_34 WHERE record = "35–16–6–3"
### Context: CREATE TABLE table_name_34 (march INTEGER, record VARCHAR) ### Question: What is the latest in March when the record of 35–16–6–3? ### Answer: SELECT MAX(march) FROM table_name_34 WHERE record = "35–16–6–3"
Name the competition for score of 3-0
CREATE TABLE table_name_42 (competition VARCHAR, score VARCHAR)
SELECT competition FROM table_name_42 WHERE score = "3-0"
### Context: CREATE TABLE table_name_42 (competition VARCHAR, score VARCHAR) ### Question: Name the competition for score of 3-0 ### Answer: SELECT competition FROM table_name_42 WHERE score = "3-0"
Name the competition for september 10, 2008
CREATE TABLE table_name_21 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_21 WHERE date = "september 10, 2008"
### Context: CREATE TABLE table_name_21 (competition VARCHAR, date VARCHAR) ### Question: Name the competition for september 10, 2008 ### Answer: SELECT competition FROM table_name_21 WHERE date = "september 10, 2008"
Name the sscore for world cup qualifying october 15, 2008
CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, date VARCHAR)
SELECT score FROM table_name_49 WHERE competition = "world cup qualifying" AND date = "october 15, 2008"
### Context: CREATE TABLE table_name_49 (score VARCHAR, competition VARCHAR, date VARCHAR) ### Question: Name the sscore for world cup qualifying october 15, 2008 ### Answer: SELECT score FROM table_name_49 WHERE competition = "world cup qualifying" AND date = "october 15, 2008"
Name the competition for november 19, 2008
CREATE TABLE table_name_82 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_82 WHERE date = "november 19, 2008"
### Context: CREATE TABLE table_name_82 (competition VARCHAR, date VARCHAR) ### Question: Name the competition for november 19, 2008 ### Answer: SELECT competition FROM table_name_82 WHERE date = "november 19, 2008"
Name the date for rio de janeiro
CREATE TABLE table_name_55 (date VARCHAR, city VARCHAR)
SELECT date FROM table_name_55 WHERE city = "rio de janeiro"
### Context: CREATE TABLE table_name_55 (date VARCHAR, city VARCHAR) ### Question: Name the date for rio de janeiro ### Answer: SELECT date FROM table_name_55 WHERE city = "rio de janeiro"
What number is Fall 08 from the state with 57 in Fall 06 and 74 or less in Fall 05?
CREATE TABLE table_name_52 (fall_08 VARCHAR, fall_06 VARCHAR, fall_05 VARCHAR)
SELECT COUNT(fall_08) FROM table_name_52 WHERE fall_06 = 57 AND fall_05 < 74
### Context: CREATE TABLE table_name_52 (fall_08 VARCHAR, fall_06 VARCHAR, fall_05 VARCHAR) ### Question: What number is Fall 08 from the state with 57 in Fall 06 and 74 or less in Fall 05? ### Answer: SELECT COUNT(fall_08) FROM table_name_52 WHERE fall_06 = 57 AND fall_05 < 74
What number is Fall 06 from the state with 79 or less in Fall 08, 36 or greater in Fall 07 and greater than 74 in Fall 05?
CREATE TABLE table_name_92 (fall_06 INTEGER, fall_05 VARCHAR, fall_08 VARCHAR, fall_07 VARCHAR)
SELECT AVG(fall_06) FROM table_name_92 WHERE fall_08 < 79 AND fall_07 > 36 AND fall_05 > 74
### Context: CREATE TABLE table_name_92 (fall_06 INTEGER, fall_05 VARCHAR, fall_08 VARCHAR, fall_07 VARCHAR) ### Question: What number is Fall 06 from the state with 79 or less in Fall 08, 36 or greater in Fall 07 and greater than 74 in Fall 05? ### Answer: SELECT AVG(fall_06) FROM table_name_92 WHERE fall_08 < 79 AND fall_07 > 36 AND fall_05 > 74
What number is Fall 06 from the state with 34 for Fall 09?
CREATE TABLE table_name_97 (fall_06 INTEGER, fall_09 VARCHAR)
SELECT AVG(fall_06) FROM table_name_97 WHERE fall_09 = 34
### Context: CREATE TABLE table_name_97 (fall_06 INTEGER, fall_09 VARCHAR) ### Question: What number is Fall 06 from the state with 34 for Fall 09? ### Answer: SELECT AVG(fall_06) FROM table_name_97 WHERE fall_09 = 34
What was the record when the visitor was toronto maple leafs and the score was 3–10?
CREATE TABLE table_name_67 (record VARCHAR, visitor VARCHAR, score VARCHAR)
SELECT record FROM table_name_67 WHERE visitor = "toronto maple leafs" AND score = "3–10"
### Context: CREATE TABLE table_name_67 (record VARCHAR, visitor VARCHAR, score VARCHAR) ### Question: What was the record when the visitor was toronto maple leafs and the score was 3–10? ### Answer: SELECT record FROM table_name_67 WHERE visitor = "toronto maple leafs" AND score = "3–10"
What was the score when the visitor was toronto maple leafs on march 22?
CREATE TABLE table_name_53 (score VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT score FROM table_name_53 WHERE visitor = "toronto maple leafs" AND date = "march 22"
### Context: CREATE TABLE table_name_53 (score VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What was the score when the visitor was toronto maple leafs on march 22? ### Answer: SELECT score FROM table_name_53 WHERE visitor = "toronto maple leafs" AND date = "march 22"
What was the Visitor when the home was toronto maple leafs and the score was 4–1?
CREATE TABLE table_name_63 (visitor VARCHAR, home VARCHAR, score VARCHAR)
SELECT visitor FROM table_name_63 WHERE home = "toronto maple leafs" AND score = "4–1"
### Context: CREATE TABLE table_name_63 (visitor VARCHAR, home VARCHAR, score VARCHAR) ### Question: What was the Visitor when the home was toronto maple leafs and the score was 4–1? ### Answer: SELECT visitor FROM table_name_63 WHERE home = "toronto maple leafs" AND score = "4–1"
How many total episodes aired over all seasons with 7.79 million viewers?
CREATE TABLE table_name_86 (episode_count VARCHAR, viewers__in_millions_ VARCHAR)
SELECT COUNT(episode_count) FROM table_name_86 WHERE viewers__in_millions_ = 7.79
### Context: CREATE TABLE table_name_86 (episode_count VARCHAR, viewers__in_millions_ VARCHAR) ### Question: How many total episodes aired over all seasons with 7.79 million viewers? ### Answer: SELECT COUNT(episode_count) FROM table_name_86 WHERE viewers__in_millions_ = 7.79
Was the semi-final round held at home or away?
CREATE TABLE table_name_53 (h___a VARCHAR, round VARCHAR)
SELECT h___a FROM table_name_53 WHERE round = "semi-final"
### Context: CREATE TABLE table_name_53 (h___a VARCHAR, round VARCHAR) ### Question: Was the semi-final round held at home or away? ### Answer: SELECT h___a FROM table_name_53 WHERE round = "semi-final"
Which opponent made it to the final round?
CREATE TABLE table_name_33 (opponents VARCHAR, round VARCHAR)
SELECT opponents FROM table_name_33 WHERE round = "final"
### Context: CREATE TABLE table_name_33 (opponents VARCHAR, round VARCHAR) ### Question: Which opponent made it to the final round? ### Answer: SELECT opponents FROM table_name_33 WHERE round = "final"
What was the result of the game played in hurst?
CREATE TABLE table_name_39 (result_f___a VARCHAR, h___a VARCHAR)
SELECT result_f___a FROM table_name_39 WHERE h___a = "hurst"
### Context: CREATE TABLE table_name_39 (result_f___a VARCHAR, h___a VARCHAR) ### Question: What was the result of the game played in hurst? ### Answer: SELECT result_f___a FROM table_name_39 WHERE h___a = "hurst"
When did the game in whalley range take place?
CREATE TABLE table_name_87 (date VARCHAR, h___a VARCHAR)
SELECT date FROM table_name_87 WHERE h___a = "whalley range"
### Context: CREATE TABLE table_name_87 (date VARCHAR, h___a VARCHAR) ### Question: When did the game in whalley range take place? ### Answer: SELECT date FROM table_name_87 WHERE h___a = "whalley range"
Which ERP W is the lowest one that has a Frequency MHz of 91.3?
CREATE TABLE table_name_58 (erp_w INTEGER, frequency_mhz VARCHAR)
SELECT MIN(erp_w) FROM table_name_58 WHERE frequency_mhz = 91.3
### Context: CREATE TABLE table_name_58 (erp_w INTEGER, frequency_mhz VARCHAR) ### Question: Which ERP W is the lowest one that has a Frequency MHz of 91.3? ### Answer: SELECT MIN(erp_w) FROM table_name_58 WHERE frequency_mhz = 91.3
Which Class has a Frequency MHz of 107.5?
CREATE TABLE table_name_76 (class VARCHAR, frequency_mhz VARCHAR)
SELECT class FROM table_name_76 WHERE frequency_mhz = 107.5
### Context: CREATE TABLE table_name_76 (class VARCHAR, frequency_mhz VARCHAR) ### Question: Which Class has a Frequency MHz of 107.5? ### Answer: SELECT class FROM table_name_76 WHERE frequency_mhz = 107.5
Which Frequency MHz is the highest one that has a City of license of byron, ga?
CREATE TABLE table_name_38 (frequency_mhz INTEGER, city_of_license VARCHAR)
SELECT MAX(frequency_mhz) FROM table_name_38 WHERE city_of_license = "byron, ga"
### Context: CREATE TABLE table_name_38 (frequency_mhz INTEGER, city_of_license VARCHAR) ### Question: Which Frequency MHz is the highest one that has a City of license of byron, ga? ### Answer: SELECT MAX(frequency_mhz) FROM table_name_38 WHERE city_of_license = "byron, ga"
Which FCC info has a Call sign of wsja?
CREATE TABLE table_name_75 (fcc_info VARCHAR, call_sign VARCHAR)
SELECT fcc_info FROM table_name_75 WHERE call_sign = "wsja"
### Context: CREATE TABLE table_name_75 (fcc_info VARCHAR, call_sign VARCHAR) ### Question: Which FCC info has a Call sign of wsja? ### Answer: SELECT fcc_info FROM table_name_75 WHERE call_sign = "wsja"
Which District has a Party of republican and a Result of lost re-election democratic gain?
CREATE TABLE table_name_82 (district VARCHAR, party VARCHAR, result VARCHAR)
SELECT district FROM table_name_82 WHERE party = "republican" AND result = "lost re-election democratic gain"
### Context: CREATE TABLE table_name_82 (district VARCHAR, party VARCHAR, result VARCHAR) ### Question: Which District has a Party of republican and a Result of lost re-election democratic gain? ### Answer: SELECT district FROM table_name_82 WHERE party = "republican" AND result = "lost re-election democratic gain"
What is First elected that has republican Party and a Result of retired democratic gain?
CREATE TABLE table_name_61 (first_elected VARCHAR, party VARCHAR, result VARCHAR)
SELECT first_elected FROM table_name_61 WHERE party = "republican" AND result = "retired democratic gain"
### Context: CREATE TABLE table_name_61 (first_elected VARCHAR, party VARCHAR, result VARCHAR) ### Question: What is First elected that has republican Party and a Result of retired democratic gain? ### Answer: SELECT first_elected FROM table_name_61 WHERE party = "republican" AND result = "retired democratic gain"
What is the First elected of california 3?
CREATE TABLE table_name_55 (first_elected VARCHAR, district VARCHAR)
SELECT first_elected FROM table_name_55 WHERE district = "california 3"
### Context: CREATE TABLE table_name_55 (first_elected VARCHAR, district VARCHAR) ### Question: What is the First elected of california 3? ### Answer: SELECT first_elected FROM table_name_55 WHERE district = "california 3"
Which Incumbent has a Result of retired democratic gain?
CREATE TABLE table_name_35 (incumbent VARCHAR, result VARCHAR)
SELECT incumbent FROM table_name_35 WHERE result = "retired democratic gain"
### Context: CREATE TABLE table_name_35 (incumbent VARCHAR, result VARCHAR) ### Question: Which Incumbent has a Result of retired democratic gain? ### Answer: SELECT incumbent FROM table_name_35 WHERE result = "retired democratic gain"
Which First elected has a Incumbent of none (new seat)?
CREATE TABLE table_name_15 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_name_15 WHERE incumbent = "none (new seat)"
### Context: CREATE TABLE table_name_15 (first_elected VARCHAR, incumbent VARCHAR) ### Question: Which First elected has a Incumbent of none (new seat)? ### Answer: SELECT first_elected FROM table_name_15 WHERE incumbent = "none (new seat)"
What is the First elected that has a republican party and california 4?
CREATE TABLE table_name_4 (first_elected VARCHAR, party VARCHAR, district VARCHAR)
SELECT first_elected FROM table_name_4 WHERE party = "republican" AND district = "california 4"
### Context: CREATE TABLE table_name_4 (first_elected VARCHAR, party VARCHAR, district VARCHAR) ### Question: What is the First elected that has a republican party and california 4? ### Answer: SELECT first_elected FROM table_name_4 WHERE party = "republican" AND district = "california 4"
What was the result when Dundee was the opponent?
CREATE TABLE table_name_74 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_74 WHERE opponent = "dundee"
### Context: CREATE TABLE table_name_74 (result VARCHAR, opponent VARCHAR) ### Question: What was the result when Dundee was the opponent? ### Answer: SELECT result FROM table_name_74 WHERE opponent = "dundee"
Who entered on day 1 and exited on day 20?
CREATE TABLE table_name_94 (celebrity VARCHAR, entered VARCHAR, exited VARCHAR)
SELECT celebrity FROM table_name_94 WHERE entered = "day 1" AND exited = "day 20"
### Context: CREATE TABLE table_name_94 (celebrity VARCHAR, entered VARCHAR, exited VARCHAR) ### Question: Who entered on day 1 and exited on day 20? ### Answer: SELECT celebrity FROM table_name_94 WHERE entered = "day 1" AND exited = "day 20"
When did lucy benjamin exit?
CREATE TABLE table_name_18 (exited VARCHAR, celebrity VARCHAR)
SELECT exited FROM table_name_18 WHERE celebrity = "lucy benjamin"
### Context: CREATE TABLE table_name_18 (exited VARCHAR, celebrity VARCHAR) ### Question: When did lucy benjamin exit? ### Answer: SELECT exited FROM table_name_18 WHERE celebrity = "lucy benjamin"
When did camilla dallerup finish?
CREATE TABLE table_name_84 (finished VARCHAR, celebrity VARCHAR)
SELECT finished FROM table_name_84 WHERE celebrity = "camilla dallerup"
### Context: CREATE TABLE table_name_84 (finished VARCHAR, celebrity VARCHAR) ### Question: When did camilla dallerup finish? ### Answer: SELECT finished FROM table_name_84 WHERE celebrity = "camilla dallerup"
When did kim woodburn enter?
CREATE TABLE table_name_92 (entered VARCHAR, celebrity VARCHAR)
SELECT entered FROM table_name_92 WHERE celebrity = "kim woodburn"
### Context: CREATE TABLE table_name_92 (entered VARCHAR, celebrity VARCHAR) ### Question: When did kim woodburn enter? ### Answer: SELECT entered FROM table_name_92 WHERE celebrity = "kim woodburn"
What was the score of the game with a record of 37–26–9?
CREATE TABLE table_name_5 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_5 WHERE record = "37–26–9"
### Context: CREATE TABLE table_name_5 (score VARCHAR, record VARCHAR) ### Question: What was the score of the game with a record of 37–26–9? ### Answer: SELECT score FROM table_name_5 WHERE record = "37–26–9"