question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which country has a rand of 2 and a silver less than 6?
CREATE TABLE table_name_42 (total INTEGER, rank VARCHAR, silver VARCHAR)
SELECT MAX(total) FROM table_name_42 WHERE rank = "2" AND silver < 6
### Context: CREATE TABLE table_name_42 (total INTEGER, rank VARCHAR, silver VARCHAR) ### Question: Which country has a rand of 2 and a silver less than 6? ### Answer: SELECT MAX(total) FROM table_name_42 WHERE rank = "2" AND silver < 6
What is the lowest total of medals that has a gold of 3 and a silver less than 3?
CREATE TABLE table_name_46 (total INTEGER, gold VARCHAR, silver VARCHAR)
SELECT MIN(total) FROM table_name_46 WHERE gold = 3 AND silver < 3
### Context: CREATE TABLE table_name_46 (total INTEGER, gold VARCHAR, silver VARCHAR) ### Question: What is the lowest total of medals that has a gold of 3 and a silver less than 3? ### Answer: SELECT MIN(total) FROM table_name_46 WHERE gold = 3 AND silver < 3
What was the home team score for the game played at MCG?
CREATE TABLE table_name_61 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_61 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_61 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home team score for the game played at MCG? ### Answer: SELECT home_team AS score FROM table_name_61 WHERE venue = "mcg"
For the game played at Windy Hill, who was the away team?
CREATE TABLE table_name_4 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_4 WHERE venue = "windy hill"
### Context: CREATE TABLE table_name_4 (away_team VARCHAR, venue VARCHAR) ### Question: For the game played at Windy Hill, who was the away team? ### Answer: SELECT away_team FROM table_name_4 WHERE venue = "windy hill"
For the game where the away team was North Melbourne, what was the venue?
CREATE TABLE table_name_7 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_7 WHERE away_team = "north melbourne"
### Context: CREATE TABLE table_name_7 (venue VARCHAR, away_team VARCHAR) ### Question: For the game where the away team was North Melbourne, what was the venue? ### Answer: SELECT venue FROM table_name_7 WHERE away_team = "north melbourne"
What is the Weight for the Name Billy Miller Category:Articles with hcards?
CREATE TABLE table_name_45 (weight VARCHAR, name VARCHAR)
SELECT weight FROM table_name_45 WHERE name = "billy miller category:articles with hcards"
### Context: CREATE TABLE table_name_45 (weight VARCHAR, name VARCHAR) ### Question: What is the Weight for the Name Billy Miller Category:Articles with hcards? ### Answer: SELECT weight FROM table_name_45 WHERE name = "billy miller category:articles with hcards"
What is the 2012 club for the Billy Miller Category:Articles with hcards (Name)?
CREATE TABLE table_name_55 (name VARCHAR)
SELECT 2012 AS _club FROM table_name_55 WHERE name = "billy miller category:articles with hcards"
### Context: CREATE TABLE table_name_55 (name VARCHAR) ### Question: What is the 2012 club for the Billy Miller Category:Articles with hcards (Name)? ### Answer: SELECT 2012 AS _club FROM table_name_55 WHERE name = "billy miller category:articles with hcards"
How many medals did China receive?
CREATE TABLE table_name_87 (total INTEGER, nation VARCHAR)
SELECT MIN(total) FROM table_name_87 WHERE nation = "china"
### Context: CREATE TABLE table_name_87 (total INTEGER, nation VARCHAR) ### Question: How many medals did China receive? ### Answer: SELECT MIN(total) FROM table_name_87 WHERE nation = "china"
What is the # of candidates that have a popular vote of 41.37%?
CREATE TABLE table_name_36 (_number_of_candidates INTEGER, _percentage_of_popular_vote VARCHAR)
SELECT AVG(_number_of_candidates) FROM table_name_36 WHERE _percentage_of_popular_vote = "41.37%"
### Context: CREATE TABLE table_name_36 (_number_of_candidates INTEGER, _percentage_of_popular_vote VARCHAR) ### Question: What is the # of candidates that have a popular vote of 41.37%? ### Answer: SELECT AVG(_number_of_candidates) FROM table_name_36 WHERE _percentage_of_popular_vote = "41.37%"
What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections?
CREATE TABLE table_name_81 (_number_of_candidates INTEGER, general_election VARCHAR, result VARCHAR, _number_of_seats_won VARCHAR)
SELECT AVG(_number_of_candidates) FROM table_name_81 WHERE result = "liberal majority" AND _number_of_seats_won = 51 AND general_election > 2008
### Context: CREATE TABLE table_name_81 (_number_of_candidates INTEGER, general_election VARCHAR, result VARCHAR, _number_of_seats_won VARCHAR) ### Question: What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections? ### Answer: SELECT AVG(_number_of_candidates) FROM table_name_81 WHERE result = "liberal majority" AND _number_of_seats_won = 51 AND general_election > 2008
How many general elections that have won smaller than 23 with candidates larger than 108?
CREATE TABLE table_name_95 (general_election VARCHAR, _number_of_seats_won VARCHAR, _number_of_candidates VARCHAR)
SELECT COUNT(general_election) FROM table_name_95 WHERE _number_of_seats_won < 23 AND _number_of_candidates > 108
### Context: CREATE TABLE table_name_95 (general_election VARCHAR, _number_of_seats_won VARCHAR, _number_of_candidates VARCHAR) ### Question: How many general elections that have won smaller than 23 with candidates larger than 108? ### Answer: SELECT COUNT(general_election) FROM table_name_95 WHERE _number_of_seats_won < 23 AND _number_of_candidates > 108
What venue did melbourne play at as the away team?
CREATE TABLE table_name_52 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_52 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_52 (venue VARCHAR, away_team VARCHAR) ### Question: What venue did melbourne play at as the away team? ### Answer: SELECT venue FROM table_name_52 WHERE away_team = "melbourne"
What was the essendon score when they were at home?
CREATE TABLE table_name_25 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_25 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_25 (home_team VARCHAR) ### Question: What was the essendon score when they were at home? ### Answer: SELECT home_team AS score FROM table_name_25 WHERE home_team = "essendon"
What venue did melbourne play at as the away team?
CREATE TABLE table_name_60 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_60 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_60 (venue VARCHAR, away_team VARCHAR) ### Question: What venue did melbourne play at as the away team? ### Answer: SELECT venue FROM table_name_60 WHERE away_team = "melbourne"
What Years have a Goal of 82?
CREATE TABLE table_name_24 (years VARCHAR, goals VARCHAR)
SELECT years FROM table_name_24 WHERE goals = 82
### Context: CREATE TABLE table_name_24 (years VARCHAR, goals VARCHAR) ### Question: What Years have a Goal of 82? ### Answer: SELECT years FROM table_name_24 WHERE goals = 82
What is the total of overall values with a safety position in a round greater than 1?
CREATE TABLE table_name_26 (overall VARCHAR, position VARCHAR, round VARCHAR)
SELECT COUNT(overall) FROM table_name_26 WHERE position = "safety" AND round > 1
### Context: CREATE TABLE table_name_26 (overall VARCHAR, position VARCHAR, round VARCHAR) ### Question: What is the total of overall values with a safety position in a round greater than 1? ### Answer: SELECT COUNT(overall) FROM table_name_26 WHERE position = "safety" AND round > 1
What is the average overall value for a round less than 4 associated with the College of Georgia?
CREATE TABLE table_name_32 (overall INTEGER, round VARCHAR, college VARCHAR)
SELECT AVG(overall) FROM table_name_32 WHERE round < 4 AND college = "georgia"
### Context: CREATE TABLE table_name_32 (overall INTEGER, round VARCHAR, college VARCHAR) ### Question: What is the average overall value for a round less than 4 associated with the College of Georgia? ### Answer: SELECT AVG(overall) FROM table_name_32 WHERE round < 4 AND college = "georgia"
What was the average attendance in weeks after 16?
CREATE TABLE table_name_58 (attendance INTEGER, week INTEGER)
SELECT AVG(attendance) FROM table_name_58 WHERE week > 16
### Context: CREATE TABLE table_name_58 (attendance INTEGER, week INTEGER) ### Question: What was the average attendance in weeks after 16? ### Answer: SELECT AVG(attendance) FROM table_name_58 WHERE week > 16
What is the highest number killed in incident #14?
CREATE TABLE table_name_48 (killed INTEGER, incident_no VARCHAR)
SELECT MAX(killed) FROM table_name_48 WHERE incident_no = "14"
### Context: CREATE TABLE table_name_48 (killed INTEGER, incident_no VARCHAR) ### Question: What is the highest number killed in incident #14? ### Answer: SELECT MAX(killed) FROM table_name_48 WHERE incident_no = "14"
What was the largest crowd at Arden Street Oval?
CREATE TABLE table_name_85 (crowd INTEGER, venue VARCHAR)
SELECT MAX(crowd) FROM table_name_85 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_85 (crowd INTEGER, venue VARCHAR) ### Question: What was the largest crowd at Arden Street Oval? ### Answer: SELECT MAX(crowd) FROM table_name_85 WHERE venue = "arden street oval"
What was the home teams score at Arden Street Oval?
CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_50 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_50 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home teams score at Arden Street Oval? ### Answer: SELECT home_team AS score FROM table_name_50 WHERE venue = "arden street oval"
What was the gold medal total for a total of 44 medals?
CREATE TABLE table_name_13 (gold INTEGER, total INTEGER)
SELECT MIN(gold) FROM table_name_13 WHERE total > 44
### Context: CREATE TABLE table_name_13 (gold INTEGER, total INTEGER) ### Question: What was the gold medal total for a total of 44 medals? ### Answer: SELECT MIN(gold) FROM table_name_13 WHERE total > 44
How many silver medals were won with a total medal of 3 and a rank above 9?
CREATE TABLE table_name_49 (silver INTEGER, total VARCHAR, rank VARCHAR)
SELECT AVG(silver) FROM table_name_49 WHERE total < 3 AND rank > 9
### Context: CREATE TABLE table_name_49 (silver INTEGER, total VARCHAR, rank VARCHAR) ### Question: How many silver medals were won with a total medal of 3 and a rank above 9? ### Answer: SELECT AVG(silver) FROM table_name_49 WHERE total < 3 AND rank > 9
How many weeks had an attendance of over 68,000?
CREATE TABLE table_name_74 (week VARCHAR, attendance INTEGER)
SELECT COUNT(week) FROM table_name_74 WHERE attendance > 68 OFFSET 000
### Context: CREATE TABLE table_name_74 (week VARCHAR, attendance INTEGER) ### Question: How many weeks had an attendance of over 68,000? ### Answer: SELECT COUNT(week) FROM table_name_74 WHERE attendance > 68 OFFSET 000
What engine was used by the team the finished 2nd?
CREATE TABLE table_name_82 (engine VARCHAR, finish VARCHAR)
SELECT engine FROM table_name_82 WHERE finish = "2nd"
### Context: CREATE TABLE table_name_82 (engine VARCHAR, finish VARCHAR) ### Question: What engine was used by the team the finished 2nd? ### Answer: SELECT engine FROM table_name_82 WHERE finish = "2nd"
What chassis was used with the Chevrolet engine in 1991?
CREATE TABLE table_name_70 (chassis VARCHAR, engine VARCHAR, year VARCHAR)
SELECT chassis FROM table_name_70 WHERE engine = "chevrolet" AND year = 1991
### Context: CREATE TABLE table_name_70 (chassis VARCHAR, engine VARCHAR, year VARCHAR) ### Question: What chassis was used with the Chevrolet engine in 1991? ### Answer: SELECT chassis FROM table_name_70 WHERE engine = "chevrolet" AND year = 1991
What was the most recent year when a g-force chassis started in 1st?
CREATE TABLE table_name_35 (year INTEGER, start VARCHAR, chassis VARCHAR)
SELECT MAX(year) FROM table_name_35 WHERE start = "1st" AND chassis = "g-force"
### Context: CREATE TABLE table_name_35 (year INTEGER, start VARCHAR, chassis VARCHAR) ### Question: What was the most recent year when a g-force chassis started in 1st? ### Answer: SELECT MAX(year) FROM table_name_35 WHERE start = "1st" AND chassis = "g-force"
What was the starting position in the year before 1986?
CREATE TABLE table_name_33 (start VARCHAR, year INTEGER)
SELECT start FROM table_name_33 WHERE year < 1986
### Context: CREATE TABLE table_name_33 (start VARCHAR, year INTEGER) ### Question: What was the starting position in the year before 1986? ### Answer: SELECT start FROM table_name_33 WHERE year < 1986
What is the name of the Malta vessel built after 2010 that is a GL class Panamax vessel?
CREATE TABLE table_name_56 (vessel_name VARCHAR, built VARCHAR, class VARCHAR, flag VARCHAR, type VARCHAR)
SELECT vessel_name FROM table_name_56 WHERE flag = "malta" AND type = "panamax" AND class = "gl" AND built > 2010
### Context: CREATE TABLE table_name_56 (vessel_name VARCHAR, built VARCHAR, class VARCHAR, flag VARCHAR, type VARCHAR) ### Question: What is the name of the Malta vessel built after 2010 that is a GL class Panamax vessel? ### Answer: SELECT vessel_name FROM table_name_56 WHERE flag = "malta" AND type = "panamax" AND class = "gl" AND built > 2010
Which year was the vessel Deva built as a Panamax DNV class ship?
CREATE TABLE table_name_54 (built INTEGER, vessel_name VARCHAR, class VARCHAR, type VARCHAR)
SELECT SUM(built) FROM table_name_54 WHERE class = "dnv" AND type = "panamax" AND vessel_name = "deva"
### Context: CREATE TABLE table_name_54 (built INTEGER, vessel_name VARCHAR, class VARCHAR, type VARCHAR) ### Question: Which year was the vessel Deva built as a Panamax DNV class ship? ### Answer: SELECT SUM(built) FROM table_name_54 WHERE class = "dnv" AND type = "panamax" AND vessel_name = "deva"
What is the class of vessel of the ship Hyundai Smart?
CREATE TABLE table_name_85 (class VARCHAR, vessel_name VARCHAR)
SELECT class FROM table_name_85 WHERE vessel_name = "hyundai smart"
### Context: CREATE TABLE table_name_85 (class VARCHAR, vessel_name VARCHAR) ### Question: What is the class of vessel of the ship Hyundai Smart? ### Answer: SELECT class FROM table_name_85 WHERE vessel_name = "hyundai smart"
In which class would the vessel Hyundai Tenacity be placed?
CREATE TABLE table_name_77 (class VARCHAR, vessel_name VARCHAR)
SELECT class FROM table_name_77 WHERE vessel_name = "hyundai tenacity"
### Context: CREATE TABLE table_name_77 (class VARCHAR, vessel_name VARCHAR) ### Question: In which class would the vessel Hyundai Tenacity be placed? ### Answer: SELECT class FROM table_name_77 WHERE vessel_name = "hyundai tenacity"
What was the result for week 14?
CREATE TABLE table_name_29 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_29 WHERE week = 14
### Context: CREATE TABLE table_name_29 (result VARCHAR, week VARCHAR) ### Question: What was the result for week 14? ### Answer: SELECT result FROM table_name_29 WHERE week = 14
Which lowest rank(player) has a rebound average larger than 9, out of 920 rebounds, and who played more than 79 games?
CREATE TABLE table_name_10 (rank INTEGER, games VARCHAR, reb_avg VARCHAR, total_rebounds VARCHAR)
SELECT MIN(rank) FROM table_name_10 WHERE reb_avg > 9 AND total_rebounds = 920 AND games > 79
### Context: CREATE TABLE table_name_10 (rank INTEGER, games VARCHAR, reb_avg VARCHAR, total_rebounds VARCHAR) ### Question: Which lowest rank(player) has a rebound average larger than 9, out of 920 rebounds, and who played more than 79 games? ### Answer: SELECT MIN(rank) FROM table_name_10 WHERE reb_avg > 9 AND total_rebounds = 920 AND games > 79
How many ranks have a rebound average smaller than 6.1?
CREATE TABLE table_name_27 (rank VARCHAR, reb_avg INTEGER)
SELECT COUNT(rank) FROM table_name_27 WHERE reb_avg < 6.1
### Context: CREATE TABLE table_name_27 (rank VARCHAR, reb_avg INTEGER) ### Question: How many ranks have a rebound average smaller than 6.1? ### Answer: SELECT COUNT(rank) FROM table_name_27 WHERE reb_avg < 6.1
Which player was drafted higher than 374 and went to the school Stephen F. Austin?
CREATE TABLE table_name_15 (player VARCHAR, overall VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_15 WHERE overall < 374 AND school_club_team = "stephen f. austin"
### Context: CREATE TABLE table_name_15 (player VARCHAR, overall VARCHAR, school_club_team VARCHAR) ### Question: Which player was drafted higher than 374 and went to the school Stephen F. Austin? ### Answer: SELECT player FROM table_name_15 WHERE overall < 374 AND school_club_team = "stephen f. austin"
What is the lowest round Trinity school was drafted with an overall higher than 21?
CREATE TABLE table_name_89 (round INTEGER, school_club_team VARCHAR, overall VARCHAR)
SELECT MIN(round) FROM table_name_89 WHERE school_club_team = "trinity" AND overall < 21
### Context: CREATE TABLE table_name_89 (round INTEGER, school_club_team VARCHAR, overall VARCHAR) ### Question: What is the lowest round Trinity school was drafted with an overall higher than 21? ### Answer: SELECT MIN(round) FROM table_name_89 WHERE school_club_team = "trinity" AND overall < 21
Who got the time of 7:52.04?
CREATE TABLE table_name_41 (swimmer VARCHAR, time VARCHAR)
SELECT swimmer FROM table_name_41 WHERE time = "7:52.04"
### Context: CREATE TABLE table_name_41 (swimmer VARCHAR, time VARCHAR) ### Question: Who got the time of 7:52.04? ### Answer: SELECT swimmer FROM table_name_41 WHERE time = "7:52.04"
Which of the opponents has bye as their box score?
CREATE TABLE table_name_32 (opponent VARCHAR, box_scores VARCHAR)
SELECT opponent FROM table_name_32 WHERE box_scores = "bye"
### Context: CREATE TABLE table_name_32 (opponent VARCHAR, box_scores VARCHAR) ### Question: Which of the opponents has bye as their box score? ### Answer: SELECT opponent FROM table_name_32 WHERE box_scores = "bye"
How many people attended the game against the pittsburgh steelers?
CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_21 WHERE opponent = "pittsburgh steelers"
### Context: CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR) ### Question: How many people attended the game against the pittsburgh steelers? ### Answer: SELECT attendance FROM table_name_21 WHERE opponent = "pittsburgh steelers"
What was the result of the game on September 25 with a box score of box?
CREATE TABLE table_name_51 (result VARCHAR, box_scores VARCHAR, date VARCHAR)
SELECT result FROM table_name_51 WHERE box_scores = "box" AND date = "september 25"
### Context: CREATE TABLE table_name_51 (result VARCHAR, box_scores VARCHAR, date VARCHAR) ### Question: What was the result of the game on September 25 with a box score of box? ### Answer: SELECT result FROM table_name_51 WHERE box_scores = "box" AND date = "september 25"
What is the date of the game later than week 13 and 41,862 people attended?
CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_62 WHERE week > 13 AND attendance = "41,862"
### Context: CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR, attendance VARCHAR) ### Question: What is the date of the game later than week 13 and 41,862 people attended? ### Answer: SELECT date FROM table_name_62 WHERE week > 13 AND attendance = "41,862"
What is the sum of caps for players with less than 9 goals ranked below 8?
CREATE TABLE table_name_83 (caps INTEGER, goals VARCHAR, rank VARCHAR)
SELECT SUM(caps) FROM table_name_83 WHERE goals < 9 AND rank > 8
### Context: CREATE TABLE table_name_83 (caps INTEGER, goals VARCHAR, rank VARCHAR) ### Question: What is the sum of caps for players with less than 9 goals ranked below 8? ### Answer: SELECT SUM(caps) FROM table_name_83 WHERE goals < 9 AND rank > 8
What were the years of senior status for active service in 1972–1995?
CREATE TABLE table_name_53 (senior_status VARCHAR, active_service VARCHAR)
SELECT senior_status FROM table_name_53 WHERE active_service = "1972–1995"
### Context: CREATE TABLE table_name_53 (senior_status VARCHAR, active_service VARCHAR) ### Question: What were the years of senior status for active service in 1972–1995? ### Answer: SELECT senior_status FROM table_name_53 WHERE active_service = "1972–1995"
What were the birth and death years when active service was 1972–1995?
CREATE TABLE table_name_54 (born_died VARCHAR, active_service VARCHAR)
SELECT born_died FROM table_name_54 WHERE active_service = "1972–1995"
### Context: CREATE TABLE table_name_54 (born_died VARCHAR, active_service VARCHAR) ### Question: What were the birth and death years when active service was 1972–1995? ### Answer: SELECT born_died FROM table_name_54 WHERE active_service = "1972–1995"
Which active services years ended in death and had senior status in 1972–2005?
CREATE TABLE table_name_72 (active_service VARCHAR, reason_for_termination VARCHAR, senior_status VARCHAR)
SELECT active_service FROM table_name_72 WHERE reason_for_termination = "death" AND senior_status = "1972–2005"
### Context: CREATE TABLE table_name_72 (active_service VARCHAR, reason_for_termination VARCHAR, senior_status VARCHAR) ### Question: Which active services years ended in death and had senior status in 1972–2005? ### Answer: SELECT active_service FROM table_name_72 WHERE reason_for_termination = "death" AND senior_status = "1972–2005"
Which date featured the Boston Patriots as the opponent?
CREATE TABLE table_name_96 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_96 WHERE opponent = "boston patriots"
### Context: CREATE TABLE table_name_96 (date VARCHAR, opponent VARCHAR) ### Question: Which date featured the Boston Patriots as the opponent? ### Answer: SELECT date FROM table_name_96 WHERE opponent = "boston patriots"
Who was the opponent during week 8?
CREATE TABLE table_name_67 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_67 WHERE week = 8
### Context: CREATE TABLE table_name_67 (opponent VARCHAR, week VARCHAR) ### Question: Who was the opponent during week 8? ### Answer: SELECT opponent FROM table_name_67 WHERE week = 8
What opponent had an attendance of 12,508 during weeks 1 through 8?
CREATE TABLE table_name_76 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_76 WHERE week < 8 AND attendance = "12,508"
### Context: CREATE TABLE table_name_76 (opponent VARCHAR, week VARCHAR, attendance VARCHAR) ### Question: What opponent had an attendance of 12,508 during weeks 1 through 8? ### Answer: SELECT opponent FROM table_name_76 WHERE week < 8 AND attendance = "12,508"
What week had an attendance of 14,381?
CREATE TABLE table_name_25 (week INTEGER, attendance VARCHAR)
SELECT AVG(week) FROM table_name_25 WHERE attendance = "14,381"
### Context: CREATE TABLE table_name_25 (week INTEGER, attendance VARCHAR) ### Question: What week had an attendance of 14,381? ### Answer: SELECT AVG(week) FROM table_name_25 WHERE attendance = "14,381"
Which round was Dave Yovanovits picked?
CREATE TABLE table_name_43 (round INTEGER, player VARCHAR)
SELECT MIN(round) FROM table_name_43 WHERE player = "dave yovanovits"
### Context: CREATE TABLE table_name_43 (round INTEGER, player VARCHAR) ### Question: Which round was Dave Yovanovits picked? ### Answer: SELECT MIN(round) FROM table_name_43 WHERE player = "dave yovanovits"
Where did the player picked for the linebacker position play in college?
CREATE TABLE table_name_6 (college VARCHAR, position VARCHAR)
SELECT college FROM table_name_6 WHERE position = "linebacker"
### Context: CREATE TABLE table_name_6 (college VARCHAR, position VARCHAR) ### Question: Where did the player picked for the linebacker position play in college? ### Answer: SELECT college FROM table_name_6 WHERE position = "linebacker"
Who did the Browns play week 12?
CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_91 WHERE week = 12
### Context: CREATE TABLE table_name_91 (opponent VARCHAR, week VARCHAR) ### Question: Who did the Browns play week 12? ### Answer: SELECT opponent FROM table_name_91 WHERE week = 12
What was the attendance in the game against the Detroit Lions?
CREATE TABLE table_name_15 (attendance VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_15 WHERE opponent = "detroit lions"
### Context: CREATE TABLE table_name_15 (attendance VARCHAR, opponent VARCHAR) ### Question: What was the attendance in the game against the Detroit Lions? ### Answer: SELECT attendance FROM table_name_15 WHERE opponent = "detroit lions"
Who played as the away team when they played at Brunswick Street Oval?
CREATE TABLE table_name_73 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_73 WHERE venue = "brunswick street oval"
### Context: CREATE TABLE table_name_73 (away_team VARCHAR, venue VARCHAR) ### Question: Who played as the away team when they played at Brunswick Street Oval? ### Answer: SELECT away_team FROM table_name_73 WHERE venue = "brunswick street oval"
Who was the home team when the VFL played Arden Street Oval?
CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_6 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_6 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team when the VFL played Arden Street Oval? ### Answer: SELECT home_team FROM table_name_6 WHERE venue = "arden street oval"
Who is the away side at junction oval?
CREATE TABLE table_name_1 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_1 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_1 (away_team VARCHAR, venue VARCHAR) ### Question: Who is the away side at junction oval? ### Answer: SELECT away_team FROM table_name_1 WHERE venue = "junction oval"
Who was the winning driver of the Kraco Car Stereo 150?
CREATE TABLE table_name_78 (winning_driver VARCHAR, name VARCHAR)
SELECT winning_driver FROM table_name_78 WHERE name = "kraco car stereo 150"
### Context: CREATE TABLE table_name_78 (winning_driver VARCHAR, name VARCHAR) ### Question: Who was the winning driver of the Kraco Car Stereo 150? ### Answer: SELECT winning_driver FROM table_name_78 WHERE name = "kraco car stereo 150"
What time was the fastest lap during Stoh's 200 in 1982?
CREATE TABLE table_name_74 (fastest_lap VARCHAR, name VARCHAR)
SELECT fastest_lap FROM table_name_74 WHERE name = "stoh's 200"
### Context: CREATE TABLE table_name_74 (fastest_lap VARCHAR, name VARCHAR) ### Question: What time was the fastest lap during Stoh's 200 in 1982? ### Answer: SELECT fastest_lap FROM table_name_74 WHERE name = "stoh's 200"
What is the date for the player who debuted later than 1972 against Limerick?
CREATE TABLE table_name_32 (date VARCHAR, début VARCHAR, opposition VARCHAR)
SELECT date FROM table_name_32 WHERE début > 1972 AND opposition = "limerick"
### Context: CREATE TABLE table_name_32 (date VARCHAR, début VARCHAR, opposition VARCHAR) ### Question: What is the date for the player who debuted later than 1972 against Limerick? ### Answer: SELECT date FROM table_name_32 WHERE début > 1972 AND opposition = "limerick"
Which player debuted in 1973 against Limerick and played his last game at the Munster semi-final?
CREATE TABLE table_name_18 (player VARCHAR, début VARCHAR, opposition VARCHAR, last_game VARCHAR)
SELECT player FROM table_name_18 WHERE opposition = "limerick" AND last_game = "munster semi-final" AND début = 1973
### Context: CREATE TABLE table_name_18 (player VARCHAR, début VARCHAR, opposition VARCHAR, last_game VARCHAR) ### Question: Which player debuted in 1973 against Limerick and played his last game at the Munster semi-final? ### Answer: SELECT player FROM table_name_18 WHERE opposition = "limerick" AND last_game = "munster semi-final" AND début = 1973
What date had a Result of l 23–17 in a week later than 7?
CREATE TABLE table_name_78 (date VARCHAR, week VARCHAR, result VARCHAR)
SELECT date FROM table_name_78 WHERE week > 7 AND result = "l 23–17"
### Context: CREATE TABLE table_name_78 (date VARCHAR, week VARCHAR, result VARCHAR) ### Question: What date had a Result of l 23–17 in a week later than 7? ### Answer: SELECT date FROM table_name_78 WHERE week > 7 AND result = "l 23–17"
How many people attended the game against the cincinnati bengals?
CREATE TABLE table_name_15 (attendance VARCHAR, opponent VARCHAR)
SELECT COUNT(attendance) FROM table_name_15 WHERE opponent = "cincinnati bengals"
### Context: CREATE TABLE table_name_15 (attendance VARCHAR, opponent VARCHAR) ### Question: How many people attended the game against the cincinnati bengals? ### Answer: SELECT COUNT(attendance) FROM table_name_15 WHERE opponent = "cincinnati bengals"
What was the attendance for the game played at 3:31?
CREATE TABLE table_name_76 (attendance VARCHAR, time VARCHAR)
SELECT attendance FROM table_name_76 WHERE time = "3:31"
### Context: CREATE TABLE table_name_76 (attendance VARCHAR, time VARCHAR) ### Question: What was the attendance for the game played at 3:31? ### Answer: SELECT attendance FROM table_name_76 WHERE time = "3:31"
What was the time for game 4?
CREATE TABLE table_name_56 (time VARCHAR, game VARCHAR)
SELECT time FROM table_name_56 WHERE game = 4
### Context: CREATE TABLE table_name_56 (time VARCHAR, game VARCHAR) ### Question: What was the time for game 4? ### Answer: SELECT time FROM table_name_56 WHERE game = 4
What was the away team's score at western oval?
CREATE TABLE table_name_14 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_14 WHERE venue = "western oval"
### Context: CREATE TABLE table_name_14 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team's score at western oval? ### Answer: SELECT away_team AS score FROM table_name_14 WHERE venue = "western oval"
Before 2007, how many wins were there when the point total was 48?
CREATE TABLE table_name_10 (wins INTEGER, points VARCHAR, year VARCHAR)
SELECT SUM(wins) FROM table_name_10 WHERE points = "48" AND year < 2007
### Context: CREATE TABLE table_name_10 (wins INTEGER, points VARCHAR, year VARCHAR) ### Question: Before 2007, how many wins were there when the point total was 48? ### Answer: SELECT SUM(wins) FROM table_name_10 WHERE points = "48" AND year < 2007
In 2011, how many wins did Michael Meadows have?
CREATE TABLE table_name_2 (wins INTEGER, year VARCHAR, drivers VARCHAR)
SELECT SUM(wins) FROM table_name_2 WHERE year = 2011 AND drivers = "michael meadows"
### Context: CREATE TABLE table_name_2 (wins INTEGER, year VARCHAR, drivers VARCHAR) ### Question: In 2011, how many wins did Michael Meadows have? ### Answer: SELECT SUM(wins) FROM table_name_2 WHERE year = 2011 AND drivers = "michael meadows"
What is the service of the network Set Max from India?
CREATE TABLE table_name_22 (service VARCHAR, origin_of_programming VARCHAR, network VARCHAR)
SELECT service FROM table_name_22 WHERE origin_of_programming = "india" AND network = "set max"
### Context: CREATE TABLE table_name_22 (service VARCHAR, origin_of_programming VARCHAR, network VARCHAR) ### Question: What is the service of the network Set Max from India? ### Answer: SELECT service FROM table_name_22 WHERE origin_of_programming = "india" AND network = "set max"
Which network's genre is music?
CREATE TABLE table_name_8 (network VARCHAR, genre VARCHAR)
SELECT network FROM table_name_8 WHERE genre = "music"
### Context: CREATE TABLE table_name_8 (network VARCHAR, genre VARCHAR) ### Question: Which network's genre is music? ### Answer: SELECT network FROM table_name_8 WHERE genre = "music"
What genre is Star Plus from India?
CREATE TABLE table_name_50 (genre VARCHAR, origin_of_programming VARCHAR, network VARCHAR)
SELECT genre FROM table_name_50 WHERE origin_of_programming = "india" AND network = "star plus"
### Context: CREATE TABLE table_name_50 (genre VARCHAR, origin_of_programming VARCHAR, network VARCHAR) ### Question: What genre is Star Plus from India? ### Answer: SELECT genre FROM table_name_50 WHERE origin_of_programming = "india" AND network = "star plus"
Where does the network Star Cricket originate?
CREATE TABLE table_name_25 (origin_of_programming VARCHAR, genre VARCHAR, network VARCHAR)
SELECT origin_of_programming FROM table_name_25 WHERE genre = "cricket" AND network = "star cricket"
### Context: CREATE TABLE table_name_25 (origin_of_programming VARCHAR, genre VARCHAR, network VARCHAR) ### Question: Where does the network Star Cricket originate? ### Answer: SELECT origin_of_programming FROM table_name_25 WHERE genre = "cricket" AND network = "star cricket"
What genre is Set Max's Hindi programming?
CREATE TABLE table_name_85 (genre VARCHAR, language VARCHAR, network VARCHAR)
SELECT genre FROM table_name_85 WHERE language = "hindi" AND network = "set max"
### Context: CREATE TABLE table_name_85 (genre VARCHAR, language VARCHAR, network VARCHAR) ### Question: What genre is Set Max's Hindi programming? ### Answer: SELECT genre FROM table_name_85 WHERE language = "hindi" AND network = "set max"
What is fitzroy's score as the home team?
CREATE TABLE table_name_49 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_49 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_49 (home_team VARCHAR) ### Question: What is fitzroy's score as the home team? ### Answer: SELECT home_team AS score FROM table_name_49 WHERE home_team = "fitzroy"
What is richmond's score as the home team?
CREATE TABLE table_name_93 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_93 WHERE home_team = "richmond"
### Context: CREATE TABLE table_name_93 (home_team VARCHAR) ### Question: What is richmond's score as the home team? ### Answer: SELECT home_team AS score FROM table_name_93 WHERE home_team = "richmond"
Who was the color commentator for Eric Dickerson and Melissa Stark in 2001?
CREATE TABLE table_name_42 (color_commentator_s_ VARCHAR, sideline_reporter_s_ VARCHAR, year VARCHAR)
SELECT color_commentator_s_ FROM table_name_42 WHERE sideline_reporter_s_ = "eric dickerson and melissa stark" AND year = 2001
### Context: CREATE TABLE table_name_42 (color_commentator_s_ VARCHAR, sideline_reporter_s_ VARCHAR, year VARCHAR) ### Question: Who was the color commentator for Eric Dickerson and Melissa Stark in 2001? ### Answer: SELECT color_commentator_s_ FROM table_name_42 WHERE sideline_reporter_s_ = "eric dickerson and melissa stark" AND year = 2001
What network hosted Al Michaels, Dan Fouts and Dennis Miller in 2002?
CREATE TABLE table_name_71 (network VARCHAR, year VARCHAR, play_by_play VARCHAR, color_commentator_s_ VARCHAR)
SELECT network FROM table_name_71 WHERE play_by_play = "al michaels" AND color_commentator_s_ = "dan fouts and dennis miller" AND year < 2002
### Context: CREATE TABLE table_name_71 (network VARCHAR, year VARCHAR, play_by_play VARCHAR, color_commentator_s_ VARCHAR) ### Question: What network hosted Al Michaels, Dan Fouts and Dennis Miller in 2002? ### Answer: SELECT network FROM table_name_71 WHERE play_by_play = "al michaels" AND color_commentator_s_ = "dan fouts and dennis miller" AND year < 2002
Who was the 2004 color commentator?
CREATE TABLE table_name_82 (color_commentator_s_ VARCHAR, year VARCHAR)
SELECT color_commentator_s_ FROM table_name_82 WHERE year = 2004
### Context: CREATE TABLE table_name_82 (color_commentator_s_ VARCHAR, year VARCHAR) ### Question: Who was the 2004 color commentator? ### Answer: SELECT color_commentator_s_ FROM table_name_82 WHERE year = 2004
Who was the color commentator for Andrea Kremer and Tiki Barber?
CREATE TABLE table_name_22 (color_commentator_s_ VARCHAR, sideline_reporter_s_ VARCHAR)
SELECT color_commentator_s_ FROM table_name_22 WHERE sideline_reporter_s_ = "andrea kremer and tiki barber"
### Context: CREATE TABLE table_name_22 (color_commentator_s_ VARCHAR, sideline_reporter_s_ VARCHAR) ### Question: Who was the color commentator for Andrea Kremer and Tiki Barber? ### Answer: SELECT color_commentator_s_ FROM table_name_22 WHERE sideline_reporter_s_ = "andrea kremer and tiki barber"
Who was Al Michaels' color commentator in 2003?
CREATE TABLE table_name_69 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR)
SELECT color_commentator_s_ FROM table_name_69 WHERE play_by_play = "al michaels" AND year > 2003
### Context: CREATE TABLE table_name_69 (color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR) ### Question: Who was Al Michaels' color commentator in 2003? ### Answer: SELECT color_commentator_s_ FROM table_name_69 WHERE play_by_play = "al michaels" AND year > 2003
Who was the home team when Geelong was the away team?
CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_76 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_76 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team when Geelong was the away team? ### Answer: SELECT home_team FROM table_name_76 WHERE away_team = "geelong"
What is the highest overall pick from the College of Southern Mississippi that was selected before round 6?
CREATE TABLE table_name_8 (overall INTEGER, college VARCHAR, round VARCHAR)
SELECT MAX(overall) FROM table_name_8 WHERE college = "southern mississippi" AND round < 6
### Context: CREATE TABLE table_name_8 (overall INTEGER, college VARCHAR, round VARCHAR) ### Question: What is the highest overall pick from the College of Southern Mississippi that was selected before round 6? ### Answer: SELECT MAX(overall) FROM table_name_8 WHERE college = "southern mississippi" AND round < 6
Who, was the coach with an actual adjusted record of 0–19?
CREATE TABLE table_name_2 (coach VARCHAR, actual_adjusted_record VARCHAR)
SELECT coach FROM table_name_2 WHERE actual_adjusted_record = "0–19"
### Context: CREATE TABLE table_name_2 (coach VARCHAR, actual_adjusted_record VARCHAR) ### Question: Who, was the coach with an actual adjusted record of 0–19? ### Answer: SELECT coach FROM table_name_2 WHERE actual_adjusted_record = "0–19"
What is the average Season for coach Fisher, and an actual adjusted record of 0–11?
CREATE TABLE table_name_45 (season INTEGER, coach VARCHAR, actual_adjusted_record VARCHAR)
SELECT AVG(season) FROM table_name_45 WHERE coach = "fisher" AND actual_adjusted_record = "0–11"
### Context: CREATE TABLE table_name_45 (season INTEGER, coach VARCHAR, actual_adjusted_record VARCHAR) ### Question: What is the average Season for coach Fisher, and an actual adjusted record of 0–11? ### Answer: SELECT AVG(season) FROM table_name_45 WHERE coach = "fisher" AND actual_adjusted_record = "0–11"
What is the regular season vacated for the Record as played of 12–19?
CREATE TABLE table_name_14 (regular_season_vacated VARCHAR, record_as_played VARCHAR)
SELECT regular_season_vacated FROM table_name_14 WHERE record_as_played = "12–19"
### Context: CREATE TABLE table_name_14 (regular_season_vacated VARCHAR, record_as_played VARCHAR) ### Question: What is the regular season vacated for the Record as played of 12–19? ### Answer: SELECT regular_season_vacated FROM table_name_14 WHERE record_as_played = "12–19"
How many seasons did coach steve fisher have?
CREATE TABLE table_name_5 (season VARCHAR, coach VARCHAR)
SELECT COUNT(season) FROM table_name_5 WHERE coach = "steve fisher"
### Context: CREATE TABLE table_name_5 (season VARCHAR, coach VARCHAR) ### Question: How many seasons did coach steve fisher have? ### Answer: SELECT COUNT(season) FROM table_name_5 WHERE coach = "steve fisher"
What is shown for Record as played with a Regular season Vacated of 24–0 later than 1997?
CREATE TABLE table_name_19 (record_as_played VARCHAR, regular_season_vacated VARCHAR, season VARCHAR)
SELECT record_as_played FROM table_name_19 WHERE regular_season_vacated = "24–0" AND season > 1997
### Context: CREATE TABLE table_name_19 (record_as_played VARCHAR, regular_season_vacated VARCHAR, season VARCHAR) ### Question: What is shown for Record as played with a Regular season Vacated of 24–0 later than 1997? ### Answer: SELECT record_as_played FROM table_name_19 WHERE regular_season_vacated = "24–0" AND season > 1997
How many seasons have an Actual adjusted record of 0–19?
CREATE TABLE table_name_13 (season VARCHAR, actual_adjusted_record VARCHAR)
SELECT COUNT(season) FROM table_name_13 WHERE actual_adjusted_record = "0–19"
### Context: CREATE TABLE table_name_13 (season VARCHAR, actual_adjusted_record VARCHAR) ### Question: How many seasons have an Actual adjusted record of 0–19? ### Answer: SELECT COUNT(season) FROM table_name_13 WHERE actual_adjusted_record = "0–19"
How many gold(s) for teams with a total of 14, and over 6 bronze medals?
CREATE TABLE table_name_26 (gold INTEGER, total VARCHAR, bronze VARCHAR)
SELECT SUM(gold) FROM table_name_26 WHERE total = 14 AND bronze > 6
### Context: CREATE TABLE table_name_26 (gold INTEGER, total VARCHAR, bronze VARCHAR) ### Question: How many gold(s) for teams with a total of 14, and over 6 bronze medals? ### Answer: SELECT SUM(gold) FROM table_name_26 WHERE total = 14 AND bronze > 6
What is the highest number of gold medals for the team ranked 7 with less than 3 bronze?
CREATE TABLE table_name_19 (gold INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT MAX(gold) FROM table_name_19 WHERE rank = "7" AND bronze < 3
### Context: CREATE TABLE table_name_19 (gold INTEGER, rank VARCHAR, bronze VARCHAR) ### Question: What is the highest number of gold medals for the team ranked 7 with less than 3 bronze? ### Answer: SELECT MAX(gold) FROM table_name_19 WHERE rank = "7" AND bronze < 3
What is the average number of golds for nations with less than 2 silver, named uzbekistan, and less than 4 bronze?
CREATE TABLE table_name_51 (gold INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT AVG(gold) FROM table_name_51 WHERE silver < 2 AND nation = "uzbekistan" AND bronze < 4
### Context: CREATE TABLE table_name_51 (gold INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR) ### Question: What is the average number of golds for nations with less than 2 silver, named uzbekistan, and less than 4 bronze? ### Answer: SELECT AVG(gold) FROM table_name_51 WHERE silver < 2 AND nation = "uzbekistan" AND bronze < 4
What was the away team for the match at Punt Road Oval?
CREATE TABLE table_name_39 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_39 WHERE venue = "punt road oval"
### Context: CREATE TABLE table_name_39 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team for the match at Punt Road Oval? ### Answer: SELECT away_team FROM table_name_39 WHERE venue = "punt road oval"
What was the smallest crowd size for the match played at Junction Oval?
CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)
SELECT MIN(crowd) FROM table_name_84 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR) ### Question: What was the smallest crowd size for the match played at Junction Oval? ### Answer: SELECT MIN(crowd) FROM table_name_84 WHERE venue = "junction oval"
What was the home team that played Collingwood?
CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_73 WHERE away_team = "collingwood"
### Context: CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team that played Collingwood? ### Answer: SELECT home_team FROM table_name_73 WHERE away_team = "collingwood"
Which province has Michael Kirby?
CREATE TABLE table_name_39 (province VARCHAR, name VARCHAR)
SELECT province FROM table_name_39 WHERE name = "michael kirby"
### Context: CREATE TABLE table_name_39 (province VARCHAR, name VARCHAR) ### Question: Which province has Michael Kirby? ### Answer: SELECT province FROM table_name_39 WHERE name = "michael kirby"
Which party is Madeleine Plamondon a member of?
CREATE TABLE table_name_94 (party VARCHAR, name VARCHAR)
SELECT party FROM table_name_94 WHERE name = "madeleine plamondon"
### Context: CREATE TABLE table_name_94 (party VARCHAR, name VARCHAR) ### Question: Which party is Madeleine Plamondon a member of? ### Answer: SELECT party FROM table_name_94 WHERE name = "madeleine plamondon"
What are the details for Marisa Ferretti Barth?
CREATE TABLE table_name_55 (details VARCHAR, name VARCHAR)
SELECT details FROM table_name_55 WHERE name = "marisa ferretti barth"
### Context: CREATE TABLE table_name_55 (details VARCHAR, name VARCHAR) ### Question: What are the details for Marisa Ferretti Barth? ### Answer: SELECT details FROM table_name_55 WHERE name = "marisa ferretti barth"
Which party had a member on August 26, 2008?
CREATE TABLE table_name_95 (party VARCHAR, date VARCHAR)
SELECT party FROM table_name_95 WHERE date = "august 26, 2008"
### Context: CREATE TABLE table_name_95 (party VARCHAR, date VARCHAR) ### Question: Which party had a member on August 26, 2008? ### Answer: SELECT party FROM table_name_95 WHERE date = "august 26, 2008"
What are the details for John Buchanan?
CREATE TABLE table_name_71 (details VARCHAR, name VARCHAR)
SELECT details FROM table_name_71 WHERE name = "john buchanan"
### Context: CREATE TABLE table_name_71 (details VARCHAR, name VARCHAR) ### Question: What are the details for John Buchanan? ### Answer: SELECT details FROM table_name_71 WHERE name = "john buchanan"
Which province had a liberal party member on December 31, 2006?
CREATE TABLE table_name_38 (province VARCHAR, party VARCHAR, date VARCHAR)
SELECT province FROM table_name_38 WHERE party = "liberal" AND date = "december 31, 2006"
### Context: CREATE TABLE table_name_38 (province VARCHAR, party VARCHAR, date VARCHAR) ### Question: Which province had a liberal party member on December 31, 2006? ### Answer: SELECT province FROM table_name_38 WHERE party = "liberal" AND date = "december 31, 2006"