question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What was the results of the 71st Academy Awards show?
CREATE TABLE table_name_66 (results VARCHAR, awards_show VARCHAR)
SELECT results FROM table_name_66 WHERE awards_show = "71st academy awards"
### Context: CREATE TABLE table_name_66 (results VARCHAR, awards_show VARCHAR) ### Question: What was the results of the 71st Academy Awards show? ### Answer: SELECT results FROM table_name_66 WHERE awards_show = "71st academy awards"
What is the city in Alabama that opened in 1996?
CREATE TABLE table_name_89 (city VARCHAR, year_opened VARCHAR, state VARCHAR)
SELECT city FROM table_name_89 WHERE year_opened = "1996" AND state = "alabama"
### Context: CREATE TABLE table_name_89 (city VARCHAR, year_opened VARCHAR, state VARCHAR) ### Question: What is the city in Alabama that opened in 1996? ### Answer: SELECT city FROM table_name_89 WHERE year_opened = "1996" AND state = "alabama"
What is the lowest capacity for 1903?
CREATE TABLE table_name_75 (capacity INTEGER, year_opened VARCHAR)
SELECT MIN(capacity) FROM table_name_75 WHERE year_opened = "1903"
### Context: CREATE TABLE table_name_75 (capacity INTEGER, year_opened VARCHAR) ### Question: What is the lowest capacity for 1903? ### Answer: SELECT MIN(capacity) FROM table_name_75 WHERE year_opened = "1903"
What was the year opened for North Carolina with a smaller than 21,500 capacity?
CREATE TABLE table_name_50 (year_opened VARCHAR, state VARCHAR, capacity VARCHAR)
SELECT year_opened FROM table_name_50 WHERE state = "north carolina" AND capacity < 21 OFFSET 500
### Context: CREATE TABLE table_name_50 (year_opened VARCHAR, state VARCHAR, capacity VARCHAR) ### Question: What was the year opened for North Carolina with a smaller than 21,500 capacity? ### Answer: SELECT year_opened FROM table_name_50 WHERE state = "north carolina" AND capacity < 21 OFFSET 500
What is the rank for the year opened in 1959 in Pennsylvania?
CREATE TABLE table_name_83 (rank VARCHAR, year_opened VARCHAR, state VARCHAR)
SELECT rank FROM table_name_83 WHERE year_opened = "1959" AND state = "pennsylvania"
### Context: CREATE TABLE table_name_83 (rank VARCHAR, year_opened VARCHAR, state VARCHAR) ### Question: What is the rank for the year opened in 1959 in Pennsylvania? ### Answer: SELECT rank FROM table_name_83 WHERE year_opened = "1959" AND state = "pennsylvania"
How many years were lightweight class on february 28, 2009?
CREATE TABLE table_name_87 (year VARCHAR, weight_class VARCHAR, date VARCHAR)
SELECT COUNT(year) FROM table_name_87 WHERE weight_class = "lightweight" AND date = "february 28, 2009"
### Context: CREATE TABLE table_name_87 (year VARCHAR, weight_class VARCHAR, date VARCHAR) ### Question: How many years were lightweight class on february 28, 2009? ### Answer: SELECT COUNT(year) FROM table_name_87 WHERE weight_class = "lightweight" AND date = "february 28, 2009"
How many weeks have a Result of t 10-10?
CREATE TABLE table_name_78 (week VARCHAR, result VARCHAR)
SELECT COUNT(week) FROM table_name_78 WHERE result = "t 10-10"
### Context: CREATE TABLE table_name_78 (week VARCHAR, result VARCHAR) ### Question: How many weeks have a Result of t 10-10? ### Answer: SELECT COUNT(week) FROM table_name_78 WHERE result = "t 10-10"
Which Date has a Week smaller than 8, and an Opponent of atlanta falcons?
CREATE TABLE table_name_31 (date VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_31 WHERE week < 8 AND opponent = "atlanta falcons"
### Context: CREATE TABLE table_name_31 (date VARCHAR, week VARCHAR, opponent VARCHAR) ### Question: Which Date has a Week smaller than 8, and an Opponent of atlanta falcons? ### Answer: SELECT date FROM table_name_31 WHERE week < 8 AND opponent = "atlanta falcons"
Which Result has an Opponent of minnesota vikings?
CREATE TABLE table_name_85 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_85 WHERE opponent = "minnesota vikings"
### Context: CREATE TABLE table_name_85 (result VARCHAR, opponent VARCHAR) ### Question: Which Result has an Opponent of minnesota vikings? ### Answer: SELECT result FROM table_name_85 WHERE opponent = "minnesota vikings"
What is the Rank of the Athlete with a Time of 1:47.65 and in Lane 3 or larger?
CREATE TABLE table_name_35 (rank INTEGER, time VARCHAR, lane VARCHAR)
SELECT MAX(rank) FROM table_name_35 WHERE time = "1:47.65" AND lane > 3
### Context: CREATE TABLE table_name_35 (rank INTEGER, time VARCHAR, lane VARCHAR) ### Question: What is the Rank of the Athlete with a Time of 1:47.65 and in Lane 3 or larger? ### Answer: SELECT MAX(rank) FROM table_name_35 WHERE time = "1:47.65" AND lane > 3
What is the Place of the half marathon Event?
CREATE TABLE table_name_88 (place VARCHAR, event VARCHAR)
SELECT place FROM table_name_88 WHERE event = "half marathon"
### Context: CREATE TABLE table_name_88 (place VARCHAR, event VARCHAR) ### Question: What is the Place of the half marathon Event? ### Answer: SELECT place FROM table_name_88 WHERE event = "half marathon"
What is the Place of the Event on August 25, 2007?
CREATE TABLE table_name_18 (place VARCHAR, date VARCHAR)
SELECT place FROM table_name_18 WHERE date = "august 25, 2007"
### Context: CREATE TABLE table_name_18 (place VARCHAR, date VARCHAR) ### Question: What is the Place of the Event on August 25, 2007? ### Answer: SELECT place FROM table_name_18 WHERE date = "august 25, 2007"
What is the Country of the Half Marathon Event?
CREATE TABLE table_name_97 (country VARCHAR, event VARCHAR)
SELECT country FROM table_name_97 WHERE event = "half marathon"
### Context: CREATE TABLE table_name_97 (country VARCHAR, event VARCHAR) ### Question: What is the Country of the Half Marathon Event? ### Answer: SELECT country FROM table_name_97 WHERE event = "half marathon"
What is the Country of the 10,000m Event?
CREATE TABLE table_name_39 (country VARCHAR, event VARCHAR)
SELECT country FROM table_name_39 WHERE event = "10,000m"
### Context: CREATE TABLE table_name_39 (country VARCHAR, event VARCHAR) ### Question: What is the Country of the 10,000m Event? ### Answer: SELECT country FROM table_name_39 WHERE event = "10,000m"
What is the Event labeled Country of (local competition)?
CREATE TABLE table_name_69 (event VARCHAR, country VARCHAR)
SELECT event FROM table_name_69 WHERE country = "(local competition)"
### Context: CREATE TABLE table_name_69 (event VARCHAR, country VARCHAR) ### Question: What is the Event labeled Country of (local competition)? ### Answer: SELECT event FROM table_name_69 WHERE country = "(local competition)"
What is the Date of the Event with a Time of 2:23:47?
CREATE TABLE table_name_23 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_23 WHERE time = "2:23:47"
### Context: CREATE TABLE table_name_23 (date VARCHAR, time VARCHAR) ### Question: What is the Date of the Event with a Time of 2:23:47? ### Answer: SELECT date FROM table_name_23 WHERE time = "2:23:47"
What is the rank of the time of 6:30.53?
CREATE TABLE table_name_89 (rank VARCHAR, time VARCHAR)
SELECT COUNT(rank) FROM table_name_89 WHERE time = "6:30.53"
### Context: CREATE TABLE table_name_89 (rank VARCHAR, time VARCHAR) ### Question: What is the rank of the time of 6:30.53? ### Answer: SELECT COUNT(rank) FROM table_name_89 WHERE time = "6:30.53"
What is the names of the rowers that the time was 6:24.61?
CREATE TABLE table_name_70 (rowers VARCHAR, time VARCHAR)
SELECT rowers FROM table_name_70 WHERE time = "6:24.61"
### Context: CREATE TABLE table_name_70 (rowers VARCHAR, time VARCHAR) ### Question: What is the names of the rowers that the time was 6:24.61? ### Answer: SELECT rowers FROM table_name_70 WHERE time = "6:24.61"
What country has a rank smaller than 6, a time of 6:32.32 and notes of FB?
CREATE TABLE table_name_45 (country VARCHAR, time VARCHAR, rank VARCHAR, notes VARCHAR)
SELECT country FROM table_name_45 WHERE rank < 6 AND notes = "fb" AND time = "6:32.32"
### Context: CREATE TABLE table_name_45 (country VARCHAR, time VARCHAR, rank VARCHAR, notes VARCHAR) ### Question: What country has a rank smaller than 6, a time of 6:32.32 and notes of FB? ### Answer: SELECT country FROM table_name_45 WHERE rank < 6 AND notes = "fb" AND time = "6:32.32"
Which actor played on Home and Away for 20 years?
CREATE TABLE table_name_21 (actor VARCHAR, duration VARCHAR, soap_opera VARCHAR)
SELECT actor FROM table_name_21 WHERE duration = "20 years" AND soap_opera = "home and away"
### Context: CREATE TABLE table_name_21 (actor VARCHAR, duration VARCHAR, soap_opera VARCHAR) ### Question: Which actor played on Home and Away for 20 years? ### Answer: SELECT actor FROM table_name_21 WHERE duration = "20 years" AND soap_opera = "home and away"
What character was portrayed by the same actor for 12 years on Neighbours?
CREATE TABLE table_name_64 (character VARCHAR, duration VARCHAR, soap_opera VARCHAR)
SELECT character FROM table_name_64 WHERE duration = "12 years" AND soap_opera = "neighbours"
### Context: CREATE TABLE table_name_64 (character VARCHAR, duration VARCHAR, soap_opera VARCHAR) ### Question: What character was portrayed by the same actor for 12 years on Neighbours? ### Answer: SELECT character FROM table_name_64 WHERE duration = "12 years" AND soap_opera = "neighbours"
How long did Joyce Jacobs portray her character on her show?
CREATE TABLE table_name_83 (duration VARCHAR, actor VARCHAR)
SELECT duration FROM table_name_83 WHERE actor = "joyce jacobs"
### Context: CREATE TABLE table_name_83 (duration VARCHAR, actor VARCHAR) ### Question: How long did Joyce Jacobs portray her character on her show? ### Answer: SELECT duration FROM table_name_83 WHERE actor = "joyce jacobs"
Which actor played Harold Bishop for 17 years?
CREATE TABLE table_name_85 (actor VARCHAR, duration VARCHAR, character VARCHAR)
SELECT actor FROM table_name_85 WHERE duration = "17 years" AND character = "harold bishop"
### Context: CREATE TABLE table_name_85 (actor VARCHAR, duration VARCHAR, character VARCHAR) ### Question: Which actor played Harold Bishop for 17 years? ### Answer: SELECT actor FROM table_name_85 WHERE duration = "17 years" AND character = "harold bishop"
Which years did Martin Sacks work on a soap opera?
CREATE TABLE table_name_98 (years VARCHAR, actor VARCHAR)
SELECT years FROM table_name_98 WHERE actor = "martin sacks"
### Context: CREATE TABLE table_name_98 (years VARCHAR, actor VARCHAR) ### Question: Which years did Martin Sacks work on a soap opera? ### Answer: SELECT years FROM table_name_98 WHERE actor = "martin sacks"
What is the Arena when there were 65 points?
CREATE TABLE table_name_84 (arena VARCHAR, points VARCHAR)
SELECT arena FROM table_name_84 WHERE points = "65"
### Context: CREATE TABLE table_name_84 (arena VARCHAR, points VARCHAR) ### Question: What is the Arena when there were 65 points? ### Answer: SELECT arena FROM table_name_84 WHERE points = "65"
What is the record when the score was 2–0?
CREATE TABLE table_name_45 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_45 WHERE score = "2–0"
### Context: CREATE TABLE table_name_45 (record VARCHAR, score VARCHAR) ### Question: What is the record when the score was 2–0? ### Answer: SELECT record FROM table_name_45 WHERE score = "2–0"
What were the points on February 10?
CREATE TABLE table_name_15 (points VARCHAR, date VARCHAR)
SELECT points FROM table_name_15 WHERE date = "february 10"
### Context: CREATE TABLE table_name_15 (points VARCHAR, date VARCHAR) ### Question: What were the points on February 10? ### Answer: SELECT points FROM table_name_15 WHERE date = "february 10"
What is the record at Palasport Olimpico?
CREATE TABLE table_name_78 (record VARCHAR, arena VARCHAR)
SELECT record FROM table_name_78 WHERE arena = "palasport olimpico"
### Context: CREATE TABLE table_name_78 (record VARCHAR, arena VARCHAR) ### Question: What is the record at Palasport Olimpico? ### Answer: SELECT record FROM table_name_78 WHERE arena = "palasport olimpico"
What is the points when the score was 3–1, and record was 25–19–11?
CREATE TABLE table_name_52 (points VARCHAR, score VARCHAR, record VARCHAR)
SELECT points FROM table_name_52 WHERE score = "3–1" AND record = "25–19–11"
### Context: CREATE TABLE table_name_52 (points VARCHAR, score VARCHAR, record VARCHAR) ### Question: What is the points when the score was 3–1, and record was 25–19–11? ### Answer: SELECT points FROM table_name_52 WHERE score = "3–1" AND record = "25–19–11"
What is the record at Arrowhead Pond of Anaheim, when the loss was Bryzgalov (10–11–1)?
CREATE TABLE table_name_53 (record VARCHAR, arena VARCHAR, loss VARCHAR)
SELECT record FROM table_name_53 WHERE arena = "arrowhead pond of anaheim" AND loss = "bryzgalov (10–11–1)"
### Context: CREATE TABLE table_name_53 (record VARCHAR, arena VARCHAR, loss VARCHAR) ### Question: What is the record at Arrowhead Pond of Anaheim, when the loss was Bryzgalov (10–11–1)? ### Answer: SELECT record FROM table_name_53 WHERE arena = "arrowhead pond of anaheim" AND loss = "bryzgalov (10–11–1)"
What is the finishing time with a 2/1q finish on the Meadowlands track?
CREATE TABLE table_name_10 (fin_time VARCHAR, finish VARCHAR, track VARCHAR)
SELECT fin_time FROM table_name_10 WHERE finish = "2/1q" AND track = "the meadowlands"
### Context: CREATE TABLE table_name_10 (fin_time VARCHAR, finish VARCHAR, track VARCHAR) ### Question: What is the finishing time with a 2/1q finish on the Meadowlands track? ### Answer: SELECT fin_time FROM table_name_10 WHERE finish = "2/1q" AND track = "the meadowlands"
What is the last 1/4 for the QUA race with a finishing time of 2:03.1?
CREATE TABLE table_name_22 (last_1_4 VARCHAR, race VARCHAR, fin_time VARCHAR)
SELECT last_1_4 FROM table_name_22 WHERE race = "qua" AND fin_time = "2:03.1"
### Context: CREATE TABLE table_name_22 (last_1_4 VARCHAR, race VARCHAR, fin_time VARCHAR) ### Question: What is the last 1/4 for the QUA race with a finishing time of 2:03.1? ### Answer: SELECT last_1_4 FROM table_name_22 WHERE race = "qua" AND fin_time = "2:03.1"
How many ranks have 1:01.14.62 as the time, with michael russell as the rider?
CREATE TABLE table_name_98 (rank VARCHAR, time VARCHAR, rider VARCHAR)
SELECT COUNT(rank) FROM table_name_98 WHERE time = "1:01.14.62" AND rider = "michael russell"
### Context: CREATE TABLE table_name_98 (rank VARCHAR, time VARCHAR, rider VARCHAR) ### Question: How many ranks have 1:01.14.62 as the time, with michael russell as the rider? ### Answer: SELECT COUNT(rank) FROM table_name_98 WHERE time = "1:01.14.62" AND rider = "michael russell"
What time has phil mcgurk as the rider?
CREATE TABLE table_name_34 (time VARCHAR, rider VARCHAR)
SELECT time FROM table_name_34 WHERE rider = "phil mcgurk"
### Context: CREATE TABLE table_name_34 (time VARCHAR, rider VARCHAR) ### Question: What time has phil mcgurk as the rider? ### Answer: SELECT time FROM table_name_34 WHERE rider = "phil mcgurk"
How many ranks have michael russell as the rider?
CREATE TABLE table_name_71 (rank INTEGER, rider VARCHAR)
SELECT SUM(rank) FROM table_name_71 WHERE rider = "michael russell"
### Context: CREATE TABLE table_name_71 (rank INTEGER, rider VARCHAR) ### Question: How many ranks have michael russell as the rider? ### Answer: SELECT SUM(rank) FROM table_name_71 WHERE rider = "michael russell"
How many goals were conceded by the team with more than 21 points more than 5 draws and less than 18 games played?
CREATE TABLE table_name_81 (goals_conceded INTEGER, played VARCHAR, draw VARCHAR, points VARCHAR)
SELECT SUM(goals_conceded) FROM table_name_81 WHERE draw > 5 AND points > 21 AND played < 18
### Context: CREATE TABLE table_name_81 (goals_conceded INTEGER, played VARCHAR, draw VARCHAR, points VARCHAR) ### Question: How many goals were conceded by the team with more than 21 points more than 5 draws and less than 18 games played? ### Answer: SELECT SUM(goals_conceded) FROM table_name_81 WHERE draw > 5 AND poi...
How many goals were conceded by teams with 32 points, more than 2 losses and more than 22 goals scored?
CREATE TABLE table_name_75 (goals_conceded VARCHAR, goals_scored VARCHAR, points VARCHAR, lost VARCHAR)
SELECT COUNT(goals_conceded) FROM table_name_75 WHERE points = 32 AND lost > 2 AND goals_scored > 22
### Context: CREATE TABLE table_name_75 (goals_conceded VARCHAR, goals_scored VARCHAR, points VARCHAR, lost VARCHAR) ### Question: How many goals were conceded by teams with 32 points, more than 2 losses and more than 22 goals scored? ### Answer: SELECT COUNT(goals_conceded) FROM table_name_75 WHERE points = 32 AND los...
How many points did the team have that conceded 41 goals and finish in a place larger than 10?
CREATE TABLE table_name_25 (points VARCHAR, goals_conceded VARCHAR, place VARCHAR)
SELECT COUNT(points) FROM table_name_25 WHERE goals_conceded = 41 AND place > 10
### Context: CREATE TABLE table_name_25 (points VARCHAR, goals_conceded VARCHAR, place VARCHAR) ### Question: How many points did the team have that conceded 41 goals and finish in a place larger than 10? ### Answer: SELECT COUNT(points) FROM table_name_25 WHERE goals_conceded = 41 AND place > 10
Who was the opponent in week 13?
CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_25 WHERE week = 13
### Context: CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR) ### Question: Who was the opponent in week 13? ### Answer: SELECT opponent FROM table_name_25 WHERE week = 13
What location has kingsmen as the mascot?
CREATE TABLE table_name_48 (location VARCHAR, mascot VARCHAR)
SELECT location FROM table_name_48 WHERE mascot = "kingsmen"
### Context: CREATE TABLE table_name_48 (location VARCHAR, mascot VARCHAR) ### Question: What location has kingsmen as the mascot? ### Answer: SELECT location FROM table_name_48 WHERE mascot = "kingsmen"
What IHSAA Football Class has 20 elkhart as the county?
CREATE TABLE table_name_39 (ihsaa_football_class VARCHAR, county VARCHAR)
SELECT ihsaa_football_class FROM table_name_39 WHERE county = "20 elkhart"
### Context: CREATE TABLE table_name_39 (ihsaa_football_class VARCHAR, county VARCHAR) ### Question: What IHSAA Football Class has 20 elkhart as the county? ### Answer: SELECT ihsaa_football_class FROM table_name_39 WHERE county = "20 elkhart"
What school has south bend as the location, with indians as the mascot?
CREATE TABLE table_name_32 (school VARCHAR, location VARCHAR, mascot VARCHAR)
SELECT school FROM table_name_32 WHERE location = "south bend" AND mascot = "indians"
### Context: CREATE TABLE table_name_32 (school VARCHAR, location VARCHAR, mascot VARCHAR) ### Question: What school has south bend as the location, with indians as the mascot? ### Answer: SELECT school FROM table_name_32 WHERE location = "south bend" AND mascot = "indians"
What's the total that the position is less than 1?
CREATE TABLE table_name_31 (total INTEGER, position INTEGER)
SELECT MIN(total) FROM table_name_31 WHERE position < 1
### Context: CREATE TABLE table_name_31 (total INTEGER, position INTEGER) ### Question: What's the total that the position is less than 1? ### Answer: SELECT MIN(total) FROM table_name_31 WHERE position < 1
What the B Score when the total is 16.125 and the position is less than 7?
CREATE TABLE table_name_10 (b_score INTEGER, position VARCHAR, total VARCHAR)
SELECT SUM(b_score) FROM table_name_10 WHERE position < 7 AND total = 16.125
### Context: CREATE TABLE table_name_10 (b_score INTEGER, position VARCHAR, total VARCHAR) ### Question: What the B Score when the total is 16.125 and the position is less than 7? ### Answer: SELECT SUM(b_score) FROM table_name_10 WHERE position < 7 AND total = 16.125
What was the total rating that had a score higher than 7 and a b score smaller than 8.65?
CREATE TABLE table_name_87 (total INTEGER, a_score VARCHAR, b_score VARCHAR)
SELECT SUM(total) FROM table_name_87 WHERE a_score > 7 AND b_score < 8.65
### Context: CREATE TABLE table_name_87 (total INTEGER, a_score VARCHAR, b_score VARCHAR) ### Question: What was the total rating that had a score higher than 7 and a b score smaller than 8.65? ### Answer: SELECT SUM(total) FROM table_name_87 WHERE a_score > 7 AND b_score < 8.65
Which gymnast had a b score of 8.95 and an a score less than 6.9
CREATE TABLE table_name_94 (gymnast VARCHAR, b_score VARCHAR, a_score VARCHAR)
SELECT gymnast FROM table_name_94 WHERE b_score = 8.95 AND a_score < 6.9
### Context: CREATE TABLE table_name_94 (gymnast VARCHAR, b_score VARCHAR, a_score VARCHAR) ### Question: Which gymnast had a b score of 8.95 and an a score less than 6.9 ### Answer: SELECT gymnast FROM table_name_94 WHERE b_score = 8.95 AND a_score < 6.9
Who were the winners in 1998?
CREATE TABLE table_name_11 (winners VARCHAR, year VARCHAR)
SELECT winners FROM table_name_11 WHERE year = 1998
### Context: CREATE TABLE table_name_11 (winners VARCHAR, year VARCHAR) ### Question: Who were the winners in 1998? ### Answer: SELECT winners FROM table_name_11 WHERE year = 1998
What year was the runner-up Portugal with Italy in third place, and the gold keeper Nuno Hidalgo?
CREATE TABLE table_name_5 (year INTEGER, best_goalkeeper VARCHAR, runner_up VARCHAR, third_place VARCHAR)
SELECT AVG(year) FROM table_name_5 WHERE runner_up = "portugal" AND third_place = "italy" AND best_goalkeeper = "nuno hidalgo"
### Context: CREATE TABLE table_name_5 (year INTEGER, best_goalkeeper VARCHAR, runner_up VARCHAR, third_place VARCHAR) ### Question: What year was the runner-up Portugal with Italy in third place, and the gold keeper Nuno Hidalgo? ### Answer: SELECT AVG(year) FROM table_name_5 WHERE runner_up = "portugal" AND third_pla...
What is the college pick for 213?
CREATE TABLE table_name_23 (college VARCHAR, pick VARCHAR)
SELECT college FROM table_name_23 WHERE pick = 213
### Context: CREATE TABLE table_name_23 (college VARCHAR, pick VARCHAR) ### Question: What is the college pick for 213? ### Answer: SELECT college FROM table_name_23 WHERE pick = 213
what is the round on 21 february 2009?
CREATE TABLE table_name_54 (round VARCHAR, date VARCHAR)
SELECT round FROM table_name_54 WHERE date = "21 february 2009"
### Context: CREATE TABLE table_name_54 (round VARCHAR, date VARCHAR) ### Question: what is the round on 21 february 2009? ### Answer: SELECT round FROM table_name_54 WHERE date = "21 february 2009"
What is the highest enrollment for rochester community school?
CREATE TABLE table_name_66 (enrollment INTEGER, school VARCHAR)
SELECT MAX(enrollment) FROM table_name_66 WHERE school = "rochester community"
### Context: CREATE TABLE table_name_66 (enrollment INTEGER, school VARCHAR) ### Question: What is the highest enrollment for rochester community school? ### Answer: SELECT MAX(enrollment) FROM table_name_66 WHERE school = "rochester community"
What is the average enrollment that has hot dogs as the mascot, with a year joined later than 1926?
CREATE TABLE table_name_38 (enrollment INTEGER, mascot VARCHAR, year_joined VARCHAR)
SELECT AVG(enrollment) FROM table_name_38 WHERE mascot = "hot dogs" AND year_joined > 1926
### Context: CREATE TABLE table_name_38 (enrollment INTEGER, mascot VARCHAR, year_joined VARCHAR) ### Question: What is the average enrollment that has hot dogs as the mascot, with a year joined later than 1926? ### Answer: SELECT AVG(enrollment) FROM table_name_38 WHERE mascot = "hot dogs" AND year_joined > 1926
What is the lowest enrollment that has Lafayette as the location?
CREATE TABLE table_name_46 (enrollment INTEGER, location VARCHAR)
SELECT MIN(enrollment) FROM table_name_46 WHERE location = "lafayette"
### Context: CREATE TABLE table_name_46 (enrollment INTEGER, location VARCHAR) ### Question: What is the lowest enrollment that has Lafayette as the location? ### Answer: SELECT MIN(enrollment) FROM table_name_46 WHERE location = "lafayette"
Who was runner-up in the 2006 Pacific Life Open?
CREATE TABLE table_name_62 (runner_up VARCHAR, name VARCHAR, year VARCHAR)
SELECT runner_up FROM table_name_62 WHERE name = "pacific life open" AND year = "2006"
### Context: CREATE TABLE table_name_62 (runner_up VARCHAR, name VARCHAR, year VARCHAR) ### Question: Who was runner-up in the 2006 Pacific Life Open? ### Answer: SELECT runner_up FROM table_name_62 WHERE name = "pacific life open" AND year = "2006"
Which Class has a Quantity made of 29?
CREATE TABLE table_name_66 (class VARCHAR, quantity_made VARCHAR)
SELECT class FROM table_name_66 WHERE quantity_made = "29"
### Context: CREATE TABLE table_name_66 (class VARCHAR, quantity_made VARCHAR) ### Question: Which Class has a Quantity made of 29? ### Answer: SELECT class FROM table_name_66 WHERE quantity_made = "29"
What is the Theme Song of the Yukan Club?
CREATE TABLE table_name_64 (theme_song_s_ VARCHAR, romaji_title VARCHAR)
SELECT theme_song_s_ FROM table_name_64 WHERE romaji_title = "yukan club"
### Context: CREATE TABLE table_name_64 (theme_song_s_ VARCHAR, romaji_title VARCHAR) ### Question: What is the Theme Song of the Yukan Club? ### Answer: SELECT theme_song_s_ FROM table_name_64 WHERE romaji_title = "yukan club"
What is the Theme Song of εƒγγƒžγƒ³?
CREATE TABLE table_name_5 (theme_song_s_ VARCHAR, japanese_title VARCHAR)
SELECT theme_song_s_ FROM table_name_5 WHERE japanese_title = "εƒγγƒžγƒ³"
### Context: CREATE TABLE table_name_5 (theme_song_s_ VARCHAR, japanese_title VARCHAR) ### Question: What is the Theme Song of εƒγγƒžγƒ³? ### Answer: SELECT theme_song_s_ FROM table_name_5 WHERE japanese_title = "εƒγγƒžγƒ³"
What is the Theme Song of the show on Fuji TV Station with Average Ratings of 16.65%?
CREATE TABLE table_name_87 (theme_song_s_ VARCHAR, tv_station VARCHAR, average_ratings VARCHAR)
SELECT theme_song_s_ FROM table_name_87 WHERE tv_station = "fuji tv" AND average_ratings = "16.65%"
### Context: CREATE TABLE table_name_87 (theme_song_s_ VARCHAR, tv_station VARCHAR, average_ratings VARCHAR) ### Question: What is the Theme Song of the show on Fuji TV Station with Average Ratings of 16.65%? ### Answer: SELECT theme_song_s_ FROM table_name_87 WHERE tv_station = "fuji tv" AND average_ratings = "16.65%"
What is the Theme Song of Iryu -Team Medical Dragon-2?
CREATE TABLE table_name_23 (theme_song_s_ VARCHAR, romaji_title VARCHAR)
SELECT theme_song_s_ FROM table_name_23 WHERE romaji_title = "iryu -team medical dragon-2"
### Context: CREATE TABLE table_name_23 (theme_song_s_ VARCHAR, romaji_title VARCHAR) ### Question: What is the Theme Song of Iryu -Team Medical Dragon-2? ### Answer: SELECT theme_song_s_ FROM table_name_23 WHERE romaji_title = "iryu -team medical dragon-2"
what is the road numbers when the build year is 1943, the railroad (quantity) is clinchfield railroad (12 new, 6 secondhand)?
CREATE TABLE table_name_33 (road_numbers VARCHAR, build_year VARCHAR, railroad__quantity_ VARCHAR)
SELECT road_numbers FROM table_name_33 WHERE build_year = "1943" AND railroad__quantity_ = "clinchfield railroad (12 new, 6 secondhand)"
### Context: CREATE TABLE table_name_33 (road_numbers VARCHAR, build_year VARCHAR, railroad__quantity_ VARCHAR) ### Question: what is the road numbers when the build year is 1943, the railroad (quantity) is clinchfield railroad (12 new, 6 secondhand)? ### Answer: SELECT road_numbers FROM table_name_33 WHERE build_year ...
what is the road numbers when the builder is alco, the railroad (quantity) is union pacific railroad (105) and the class is csa-2?
CREATE TABLE table_name_8 (road_numbers VARCHAR, class VARCHAR, builder VARCHAR, railroad__quantity_ VARCHAR)
SELECT road_numbers FROM table_name_8 WHERE builder = "alco" AND railroad__quantity_ = "union pacific railroad (105)" AND class = "csa-2"
### Context: CREATE TABLE table_name_8 (road_numbers VARCHAR, class VARCHAR, builder VARCHAR, railroad__quantity_ VARCHAR) ### Question: what is the road numbers when the builder is alco, the railroad (quantity) is union pacific railroad (105) and the class is csa-2? ### Answer: SELECT road_numbers FROM table_name_8 WH...
what is the road numbers when the class is z-7?
CREATE TABLE table_name_66 (road_numbers VARCHAR, class VARCHAR)
SELECT road_numbers FROM table_name_66 WHERE class = "z-7"
### Context: CREATE TABLE table_name_66 (road_numbers VARCHAR, class VARCHAR) ### Question: what is the road numbers when the class is z-7? ### Answer: SELECT road_numbers FROM table_name_66 WHERE class = "z-7"
What was the peak date of Kelis's song?
CREATE TABLE table_name_1 (peak_date VARCHAR, main_artist VARCHAR)
SELECT peak_date FROM table_name_1 WHERE main_artist = "kelis"
### Context: CREATE TABLE table_name_1 (peak_date VARCHAR, main_artist VARCHAR) ### Question: What was the peak date of Kelis's song? ### Answer: SELECT peak_date FROM table_name_1 WHERE main_artist = "kelis"
What is the Nationality of the Swimmer in Lane 4 or larger with a Rank of 5 or more?
CREATE TABLE table_name_37 (nationality VARCHAR, lane VARCHAR, rank VARCHAR)
SELECT nationality FROM table_name_37 WHERE lane > 4 AND rank > 5
### Context: CREATE TABLE table_name_37 (nationality VARCHAR, lane VARCHAR, rank VARCHAR) ### Question: What is the Nationality of the Swimmer in Lane 4 or larger with a Rank of 5 or more? ### Answer: SELECT nationality FROM table_name_37 WHERE lane > 4 AND rank > 5
Who was the opponent the falcons played against on week 3?
CREATE TABLE table_name_87 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_87 WHERE week = 3
### Context: CREATE TABLE table_name_87 (opponent VARCHAR, week VARCHAR) ### Question: Who was the opponent the falcons played against on week 3? ### Answer: SELECT opponent FROM table_name_87 WHERE week = 3
what is the highest podiums when the stage wins is 91 and the points is less than 140?
CREATE TABLE table_name_60 (podiums INTEGER, stage_wins VARCHAR, points VARCHAR)
SELECT MAX(podiums) FROM table_name_60 WHERE stage_wins = 91 AND points < 140
### Context: CREATE TABLE table_name_60 (podiums INTEGER, stage_wins VARCHAR, points VARCHAR) ### Question: what is the highest podiums when the stage wins is 91 and the points is less than 140? ### Answer: SELECT MAX(podiums) FROM table_name_60 WHERE stage_wins = 91 AND points < 140
what is the average wins when the podiums is more than 1, points is 80 and starts is less than 28?
CREATE TABLE table_name_49 (wins INTEGER, starts VARCHAR, podiums VARCHAR, points VARCHAR)
SELECT AVG(wins) FROM table_name_49 WHERE podiums > 1 AND points = 80 AND starts < 28
### Context: CREATE TABLE table_name_49 (wins INTEGER, starts VARCHAR, podiums VARCHAR, points VARCHAR) ### Question: what is the average wins when the podiums is more than 1, points is 80 and starts is less than 28? ### Answer: SELECT AVG(wins) FROM table_name_49 WHERE podiums > 1 AND points = 80 AND starts < 28
what is the total number of points when the constructor is citroΓ«n total world rally team and the wins is less than 7?
CREATE TABLE table_name_72 (points VARCHAR, constructor VARCHAR, wins VARCHAR)
SELECT COUNT(points) FROM table_name_72 WHERE constructor = "citroΓ«n total world rally team" AND wins < 7
### Context: CREATE TABLE table_name_72 (points VARCHAR, constructor VARCHAR, wins VARCHAR) ### Question: what is the total number of points when the constructor is citroΓ«n total world rally team and the wins is less than 7? ### Answer: SELECT COUNT(points) FROM table_name_72 WHERE constructor = "citroΓ«n total world ra...
what is the highest points when the chassis is focus rs wrc 08 and 09 and the stage wins is more than 91?
CREATE TABLE table_name_42 (points INTEGER, chassis VARCHAR, stage_wins VARCHAR)
SELECT MAX(points) FROM table_name_42 WHERE chassis = "focus rs wrc 08 and 09" AND stage_wins > 91
### Context: CREATE TABLE table_name_42 (points INTEGER, chassis VARCHAR, stage_wins VARCHAR) ### Question: what is the highest points when the chassis is focus rs wrc 08 and 09 and the stage wins is more than 91? ### Answer: SELECT MAX(points) FROM table_name_42 WHERE chassis = "focus rs wrc 08 and 09" AND stage_wins ...
What driver had a total time of 16:58?
CREATE TABLE table_name_66 (driver VARCHAR, total_time VARCHAR)
SELECT driver FROM table_name_66 WHERE total_time = "16:58"
### Context: CREATE TABLE table_name_66 (driver VARCHAR, total_time VARCHAR) ### Question: What driver had a total time of 16:58? ### Answer: SELECT driver FROM table_name_66 WHERE total_time = "16:58"
What's the lowest capacity when the margin is 03:30?
CREATE TABLE table_name_77 (capacity INTEGER, margin VARCHAR)
SELECT MIN(capacity) FROM table_name_77 WHERE margin = "03:30"
### Context: CREATE TABLE table_name_77 (capacity INTEGER, margin VARCHAR) ### Question: What's the lowest capacity when the margin is 03:30? ### Answer: SELECT MIN(capacity) FROM table_name_77 WHERE margin = "03:30"
Which vehicle has a class 6c3g?
CREATE TABLE table_name_20 (vehicle VARCHAR, class VARCHAR)
SELECT vehicle FROM table_name_20 WHERE class = "6c3g"
### Context: CREATE TABLE table_name_20 (vehicle VARCHAR, class VARCHAR) ### Question: Which vehicle has a class 6c3g? ### Answer: SELECT vehicle FROM table_name_20 WHERE class = "6c3g"
What is the lowest capacity for the 1975 toyota celica 1600gt?
CREATE TABLE table_name_89 (capacity INTEGER, vehicle VARCHAR)
SELECT MIN(capacity) FROM table_name_89 WHERE vehicle = "1975 toyota celica 1600gt"
### Context: CREATE TABLE table_name_89 (capacity INTEGER, vehicle VARCHAR) ### Question: What is the lowest capacity for the 1975 toyota celica 1600gt? ### Answer: SELECT MIN(capacity) FROM table_name_89 WHERE vehicle = "1975 toyota celica 1600gt"
who is the athlete when react is 0.164?
CREATE TABLE table_name_46 (athlete VARCHAR, react VARCHAR)
SELECT athlete FROM table_name_46 WHERE react = 0.164
### Context: CREATE TABLE table_name_46 (athlete VARCHAR, react VARCHAR) ### Question: who is the athlete when react is 0.164? ### Answer: SELECT athlete FROM table_name_46 WHERE react = 0.164
what is the lowest lane when react is more than 0.164 and the nationality is guinea?
CREATE TABLE table_name_64 (lane INTEGER, react VARCHAR, nationality VARCHAR)
SELECT MIN(lane) FROM table_name_64 WHERE react > 0.164 AND nationality = "guinea"
### Context: CREATE TABLE table_name_64 (lane INTEGER, react VARCHAR, nationality VARCHAR) ### Question: what is the lowest lane when react is more than 0.164 and the nationality is guinea? ### Answer: SELECT MIN(lane) FROM table_name_64 WHERE react > 0.164 AND nationality = "guinea"
What is the year retired of the locomotive which had the quantity made of 25?
CREATE TABLE table_name_5 (year_s__retired VARCHAR, quantity_made VARCHAR)
SELECT year_s__retired FROM table_name_5 WHERE quantity_made = "25"
### Context: CREATE TABLE table_name_5 (year_s__retired VARCHAR, quantity_made VARCHAR) ### Question: What is the year retired of the locomotive which had the quantity made of 25? ### Answer: SELECT year_s__retired FROM table_name_5 WHERE quantity_made = "25"
Which class had a quantity made of 20?
CREATE TABLE table_name_19 (class VARCHAR, quantity_made VARCHAR)
SELECT class FROM table_name_19 WHERE quantity_made = "20"
### Context: CREATE TABLE table_name_19 (class VARCHAR, quantity_made VARCHAR) ### Question: Which class had a quantity made of 20? ### Answer: SELECT class FROM table_name_19 WHERE quantity_made = "20"
What is the locomotive class that has a wheel arrangement of 2-8-2 and a quantity made of 25?
CREATE TABLE table_name_48 (class VARCHAR, wheel_arrangement VARCHAR, quantity_made VARCHAR)
SELECT class FROM table_name_48 WHERE wheel_arrangement = "2-8-2" AND quantity_made = "25"
### Context: CREATE TABLE table_name_48 (class VARCHAR, wheel_arrangement VARCHAR, quantity_made VARCHAR) ### Question: What is the locomotive class that has a wheel arrangement of 2-8-2 and a quantity made of 25? ### Answer: SELECT class FROM table_name_48 WHERE wheel_arrangement = "2-8-2" AND quantity_made = "25"
What is the quantity preserved to the locomotive with a quantity made of 6?
CREATE TABLE table_name_11 (quantity_preserved VARCHAR, quantity_made VARCHAR)
SELECT quantity_preserved FROM table_name_11 WHERE quantity_made = "6"
### Context: CREATE TABLE table_name_11 (quantity_preserved VARCHAR, quantity_made VARCHAR) ### Question: What is the quantity preserved to the locomotive with a quantity made of 6? ### Answer: SELECT quantity_preserved FROM table_name_11 WHERE quantity_made = "6"
What is Beohari's highest number of electorates?
CREATE TABLE table_name_81 (number_of_electorates__2009_ INTEGER, name VARCHAR)
SELECT MAX(number_of_electorates__2009_) FROM table_name_81 WHERE name = "beohari"
### Context: CREATE TABLE table_name_81 (number_of_electorates__2009_ INTEGER, name VARCHAR) ### Question: What is Beohari's highest number of electorates? ### Answer: SELECT MAX(number_of_electorates__2009_) FROM table_name_81 WHERE name = "beohari"
What is the district with 79 constituency number?
CREATE TABLE table_name_13 (district VARCHAR, constituency_number VARCHAR)
SELECT district FROM table_name_13 WHERE constituency_number = "79"
### Context: CREATE TABLE table_name_13 (district VARCHAR, constituency_number VARCHAR) ### Question: What is the district with 79 constituency number? ### Answer: SELECT district FROM table_name_13 WHERE constituency_number = "79"
What is Beohari's reserved for (SC/ST/None)?
CREATE TABLE table_name_31 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
SELECT reserved_for___sc___st__none_ FROM table_name_31 WHERE name = "beohari"
### Context: CREATE TABLE table_name_31 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR) ### Question: What is Beohari's reserved for (SC/ST/None)? ### Answer: SELECT reserved_for___sc___st__none_ FROM table_name_31 WHERE name = "beohari"
What is the sum of the prominence in m of moussa ali terara peak?
CREATE TABLE table_name_88 (prominence__m_ INTEGER, peak VARCHAR)
SELECT SUM(prominence__m_) FROM table_name_88 WHERE peak = "moussa ali terara"
### Context: CREATE TABLE table_name_88 (prominence__m_ INTEGER, peak VARCHAR) ### Question: What is the sum of the prominence in m of moussa ali terara peak? ### Answer: SELECT SUM(prominence__m_) FROM table_name_88 WHERE peak = "moussa ali terara"
What is the total prominence number in m of ethiopia, which has a col in m of 1728 and an elevation less than 3,358?
CREATE TABLE table_name_27 (prominence__m_ VARCHAR, elevation__m_ VARCHAR, country VARCHAR, col__m_ VARCHAR)
SELECT COUNT(prominence__m_) FROM table_name_27 WHERE country = "ethiopia" AND col__m_ = 1728 AND elevation__m_ < 3 OFFSET 358
### Context: CREATE TABLE table_name_27 (prominence__m_ VARCHAR, elevation__m_ VARCHAR, country VARCHAR, col__m_ VARCHAR) ### Question: What is the total prominence number in m of ethiopia, which has a col in m of 1728 and an elevation less than 3,358? ### Answer: SELECT COUNT(prominence__m_) FROM table_name_27 WHERE c...
Which team had a start of 8 in years under 2008?
CREATE TABLE table_name_22 (team VARCHAR, start VARCHAR, year VARCHAR)
SELECT team FROM table_name_22 WHERE start = 8 AND year < 2008
### Context: CREATE TABLE table_name_22 (team VARCHAR, start VARCHAR, year VARCHAR) ### Question: Which team had a start of 8 in years under 2008? ### Answer: SELECT team FROM table_name_22 WHERE start = 8 AND year < 2008
What was Jeff's finish in 2011?
CREATE TABLE table_name_35 (finish INTEGER, year VARCHAR)
SELECT SUM(finish) FROM table_name_35 WHERE year = 2011
### Context: CREATE TABLE table_name_35 (finish INTEGER, year VARCHAR) ### Question: What was Jeff's finish in 2011? ### Answer: SELECT SUM(finish) FROM table_name_35 WHERE year = 2011
What is the number of finishes having a start of 15?
CREATE TABLE table_name_78 (finish VARCHAR, start VARCHAR)
SELECT COUNT(finish) FROM table_name_78 WHERE start = 15
### Context: CREATE TABLE table_name_78 (finish VARCHAR, start VARCHAR) ### Question: What is the number of finishes having a start of 15? ### Answer: SELECT COUNT(finish) FROM table_name_78 WHERE start = 15
How many 2011 1H values have a 2006 of 27.4 and 2007 over 27.7?
CREATE TABLE table_name_9 (Id VARCHAR)
SELECT COUNT(2011 AS _1h) FROM table_name_9 WHERE 2006 = 27.4 AND 2007 > 27.7
### Context: CREATE TABLE table_name_9 (Id VARCHAR) ### Question: How many 2011 1H values have a 2006 of 27.4 and 2007 over 27.7? ### Answer: SELECT COUNT(2011 AS _1h) FROM table_name_9 WHERE 2006 = 27.4 AND 2007 > 27.7
What is the highest 2011 1H value for a 2005 over 28?
CREATE TABLE table_name_35 (Id VARCHAR)
SELECT MAX(2011 AS _1h) FROM table_name_35 WHERE 2005 > 28
### Context: CREATE TABLE table_name_35 (Id VARCHAR) ### Question: What is the highest 2011 1H value for a 2005 over 28? ### Answer: SELECT MAX(2011 AS _1h) FROM table_name_35 WHERE 2005 > 28
What is the average 2007 value for a 2006 of 2.8 and 2009 under 20?
CREATE TABLE table_name_6 (Id VARCHAR)
SELECT AVG(2007) FROM table_name_6 WHERE 2009 < 20 AND 2006 = 2.8
### Context: CREATE TABLE table_name_6 (Id VARCHAR) ### Question: What is the average 2007 value for a 2006 of 2.8 and 2009 under 20? ### Answer: SELECT AVG(2007) FROM table_name_6 WHERE 2009 < 20 AND 2006 = 2.8
What was the round for Villa Park?
CREATE TABLE table_name_85 (round VARCHAR, venue VARCHAR)
SELECT round FROM table_name_85 WHERE venue = "villa park"
### Context: CREATE TABLE table_name_85 (round VARCHAR, venue VARCHAR) ### Question: What was the round for Villa Park? ### Answer: SELECT round FROM table_name_85 WHERE venue = "villa park"
What is latitude when 2010 population is 24 and water is more than 0.319?
CREATE TABLE table_name_24 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR)
SELECT MAX(latitude) FROM table_name_24 WHERE pop__2010_ = 24 AND water__sqmi_ > 0.319
### Context: CREATE TABLE table_name_24 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR) ### Question: What is latitude when 2010 population is 24 and water is more than 0.319? ### Answer: SELECT MAX(latitude) FROM table_name_24 WHERE pop__2010_ = 24 AND water__sqmi_ > 0.319
Is Blonanserin MHRA approved?
CREATE TABLE table_name_24 (mhra_approved VARCHAR, generic_name VARCHAR)
SELECT mhra_approved FROM table_name_24 WHERE generic_name = "blonanserin"
### Context: CREATE TABLE table_name_24 (mhra_approved VARCHAR, generic_name VARCHAR) ### Question: Is Blonanserin MHRA approved? ### Answer: SELECT mhra_approved FROM table_name_24 WHERE generic_name = "blonanserin"
What is the home team when kwong wah was the away team?
CREATE TABLE table_name_41 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_41 WHERE away_team = "kwong wah"
### Context: CREATE TABLE table_name_41 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the home team when kwong wah was the away team? ### Answer: SELECT home_team FROM table_name_41 WHERE away_team = "kwong wah"
What is the score of the match at happy valley recreation ground pitch #2 with a 14:30 time?
CREATE TABLE table_name_93 (score VARCHAR, time VARCHAR, venue VARCHAR)
SELECT score FROM table_name_93 WHERE time = "14:30" AND venue = "happy valley recreation ground pitch #2"
### Context: CREATE TABLE table_name_93 (score VARCHAR, time VARCHAR, venue VARCHAR) ### Question: What is the score of the match at happy valley recreation ground pitch #2 with a 14:30 time? ### Answer: SELECT score FROM table_name_93 WHERE time = "14:30" AND venue = "happy valley recreation ground pitch #2"
What is the venue of the match with a 14:30 time and sun source as the away team?
CREATE TABLE table_name_67 (venue VARCHAR, time VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_67 WHERE time = "14:30" AND away_team = "sun source"
### Context: CREATE TABLE table_name_67 (venue VARCHAR, time VARCHAR, away_team VARCHAR) ### Question: What is the venue of the match with a 14:30 time and sun source as the away team? ### Answer: SELECT venue FROM table_name_67 WHERE time = "14:30" AND away_team = "sun source"
What is the away team when solon was the home team?
CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_63 WHERE home_team = "solon"
### Context: CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the away team when solon was the home team? ### Answer: SELECT away_team FROM table_name_63 WHERE home_team = "solon"
What is Elizabeth Simmonds' average lane number?
CREATE TABLE table_name_21 (lane INTEGER, name VARCHAR)
SELECT AVG(lane) FROM table_name_21 WHERE name = "elizabeth simmonds"
### Context: CREATE TABLE table_name_21 (lane INTEGER, name VARCHAR) ### Question: What is Elizabeth Simmonds' average lane number? ### Answer: SELECT AVG(lane) FROM table_name_21 WHERE name = "elizabeth simmonds"
What is Laure Manaudou's highest rank?
CREATE TABLE table_name_32 (rank INTEGER, name VARCHAR)
SELECT MAX(rank) FROM table_name_32 WHERE name = "laure manaudou"
### Context: CREATE TABLE table_name_32 (rank INTEGER, name VARCHAR) ### Question: What is Laure Manaudou's highest rank? ### Answer: SELECT MAX(rank) FROM table_name_32 WHERE name = "laure manaudou"
What internet explorer has 1.67% as the opera, with 2012 q1 as the period?
CREATE TABLE table_name_4 (internet_explorer VARCHAR, opera VARCHAR, period VARCHAR)
SELECT internet_explorer FROM table_name_4 WHERE opera = "1.67%" AND period = "2012 q1"
### Context: CREATE TABLE table_name_4 (internet_explorer VARCHAR, opera VARCHAR, period VARCHAR) ### Question: What internet explorer has 1.67% as the opera, with 2012 q1 as the period? ### Answer: SELECT internet_explorer FROM table_name_4 WHERE opera = "1.67%" AND period = "2012 q1"