Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
25,700
<question>: What was the results of the 71st Academy Awards show? <context>: CREATE TABLE table_name_66 (results VARCHAR, awards_show VARCHAR)
SELECT results FROM table_name_66 WHERE awards_show = "71st academy awards"
25,701
<question>: What is the city in Alabama that opened in 1996? <context>: 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"
25,702
<question>: What is the lowest capacity for 1903? <context>: CREATE TABLE table_name_75 (capacity INTEGER, year_opened VARCHAR)
SELECT MIN(capacity) FROM table_name_75 WHERE year_opened = "1903"
25,703
<question>: What was the year opened for North Carolina with a smaller than 21,500 capacity? <context>: 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
25,704
<question>: What is the rank for the year opened in 1959 in Pennsylvania? <context>: 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"
25,705
<question>: How many years were lightweight class on february 28, 2009? <context>: 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"
25,706
<question>: How many weeks have a Result of t 10-10? <context>: CREATE TABLE table_name_78 (week VARCHAR, result VARCHAR)
SELECT COUNT(week) FROM table_name_78 WHERE result = "t 10-10"
25,707
<question>: Which Date has a Week smaller than 8, and an Opponent of atlanta falcons? <context>: CREATE TABLE table_name_31 (date VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_31 WHERE week < 8 AND opponent = "atlanta falcons"
25,708
<question>: Which Result has an Opponent of minnesota vikings? <context>: CREATE TABLE table_name_85 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_85 WHERE opponent = "minnesota vikings"
25,709
<question>: What is the Rank of the Athlete with a Time of 1:47.65 and in Lane 3 or larger? <context>: 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
25,710
<question>: What is the Place of the half marathon Event? <context>: CREATE TABLE table_name_88 (place VARCHAR, event VARCHAR)
SELECT place FROM table_name_88 WHERE event = "half marathon"
25,711
<question>: What is the Place of the Event on August 25, 2007? <context>: CREATE TABLE table_name_18 (place VARCHAR, date VARCHAR)
SELECT place FROM table_name_18 WHERE date = "august 25, 2007"
25,712
<question>: What is the Country of the Half Marathon Event? <context>: CREATE TABLE table_name_97 (country VARCHAR, event VARCHAR)
SELECT country FROM table_name_97 WHERE event = "half marathon"
25,713
<question>: What is the Country of the 10,000m Event? <context>: CREATE TABLE table_name_39 (country VARCHAR, event VARCHAR)
SELECT country FROM table_name_39 WHERE event = "10,000m"
25,714
<question>: What is the Event labeled Country of (local competition)? <context>: CREATE TABLE table_name_69 (event VARCHAR, country VARCHAR)
SELECT event FROM table_name_69 WHERE country = "(local competition)"
25,715
<question>: What is the Date of the Event with a Time of 2:23:47? <context>: CREATE TABLE table_name_23 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_23 WHERE time = "2:23:47"
25,716
<question>: What is the rank of the time of 6:30.53? <context>: CREATE TABLE table_name_89 (rank VARCHAR, time VARCHAR)
SELECT COUNT(rank) FROM table_name_89 WHERE time = "6:30.53"
25,717
<question>: What is the names of the rowers that the time was 6:24.61? <context>: CREATE TABLE table_name_70 (rowers VARCHAR, time VARCHAR)
SELECT rowers FROM table_name_70 WHERE time = "6:24.61"
25,718
<question>: What country has a rank smaller than 6, a time of 6:32.32 and notes of FB? <context>: 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"
25,719
<question>: Which actor played on Home and Away for 20 years? <context>: 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"
25,720
<question>: What character was portrayed by the same actor for 12 years on Neighbours? <context>: 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"
25,721
<question>: How long did Joyce Jacobs portray her character on her show? <context>: CREATE TABLE table_name_83 (duration VARCHAR, actor VARCHAR)
SELECT duration FROM table_name_83 WHERE actor = "joyce jacobs"
25,722
<question>: Which actor played Harold Bishop for 17 years? <context>: 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"
25,723
<question>: Which years did Martin Sacks work on a soap opera? <context>: CREATE TABLE table_name_98 (years VARCHAR, actor VARCHAR)
SELECT years FROM table_name_98 WHERE actor = "martin sacks"
25,724
<question>: What is the Arena when there were 65 points? <context>: CREATE TABLE table_name_84 (arena VARCHAR, points VARCHAR)
SELECT arena FROM table_name_84 WHERE points = "65"
25,725
<question>: What is the record when the score was 2–0? <context>: CREATE TABLE table_name_45 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_45 WHERE score = "2–0"
25,726
<question>: What were the points on February 10? <context>: CREATE TABLE table_name_15 (points VARCHAR, date VARCHAR)
SELECT points FROM table_name_15 WHERE date = "february 10"
25,727
<question>: What is the record at Palasport Olimpico? <context>: CREATE TABLE table_name_78 (record VARCHAR, arena VARCHAR)
SELECT record FROM table_name_78 WHERE arena = "palasport olimpico"
25,728
<question>: What is the points when the score was 3–1, and record was 25–19–11? <context>: 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"
25,729
<question>: What is the record at Arrowhead Pond of Anaheim, when the loss was Bryzgalov (10–11–1)? <context>: 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)"
25,730
<question>: What is the finishing time with a 2/1q finish on the Meadowlands track? <context>: 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"
25,731
<question>: What is the last 1/4 for the QUA race with a finishing time of 2:03.1? <context>: 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"
25,732
<question>: How many ranks have 1:01.14.62 as the time, with michael russell as the rider? <context>: 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"
25,733
<question>: What time has phil mcgurk as the rider? <context>: CREATE TABLE table_name_34 (time VARCHAR, rider VARCHAR)
SELECT time FROM table_name_34 WHERE rider = "phil mcgurk"
25,734
<question>: How many ranks have michael russell as the rider? <context>: CREATE TABLE table_name_71 (rank INTEGER, rider VARCHAR)
SELECT SUM(rank) FROM table_name_71 WHERE rider = "michael russell"
25,735
<question>: How many goals were conceded by the team with more than 21 points more than 5 draws and less than 18 games played? <context>: 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
25,736
<question>: How many goals were conceded by teams with 32 points, more than 2 losses and more than 22 goals scored? <context>: 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
25,737
<question>: How many points did the team have that conceded 41 goals and finish in a place larger than 10? <context>: 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
25,738
<question>: Who was the opponent in week 13? <context>: CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_25 WHERE week = 13
25,739
<question>: What location has kingsmen as the mascot? <context>: CREATE TABLE table_name_48 (location VARCHAR, mascot VARCHAR)
SELECT location FROM table_name_48 WHERE mascot = "kingsmen"
25,740
<question>: What IHSAA Football Class has 20 elkhart as the county? <context>: CREATE TABLE table_name_39 (ihsaa_football_class VARCHAR, county VARCHAR)
SELECT ihsaa_football_class FROM table_name_39 WHERE county = "20 elkhart"
25,741
<question>: What school has south bend as the location, with indians as the mascot? <context>: CREATE TABLE table_name_32 (school VARCHAR, location VARCHAR, mascot VARCHAR)
SELECT school FROM table_name_32 WHERE location = "south bend" AND mascot = "indians"
25,742
<question>: What's the total that the position is less than 1? <context>: CREATE TABLE table_name_31 (total INTEGER, position INTEGER)
SELECT MIN(total) FROM table_name_31 WHERE position < 1
25,743
<question>: What the B Score when the total is 16.125 and the position is less than 7? <context>: 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
25,744
<question>: What was the total rating that had a score higher than 7 and a b score smaller than 8.65? <context>: 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
25,745
<question>: Which gymnast had a b score of 8.95 and an a score less than 6.9 <context>: 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
25,746
<question>: Who were the winners in 1998? <context>: CREATE TABLE table_name_11 (winners VARCHAR, year VARCHAR)
SELECT winners FROM table_name_11 WHERE year = 1998
25,747
<question>: What year was the runner-up Portugal with Italy in third place, and the gold keeper Nuno Hidalgo? <context>: 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"
25,748
<question>: What is the college pick for 213? <context>: CREATE TABLE table_name_23 (college VARCHAR, pick VARCHAR)
SELECT college FROM table_name_23 WHERE pick = 213
25,749
<question>: what is the round on 21 february 2009? <context>: CREATE TABLE table_name_54 (round VARCHAR, date VARCHAR)
SELECT round FROM table_name_54 WHERE date = "21 february 2009"
25,750
<question>: What is the highest enrollment for rochester community school? <context>: CREATE TABLE table_name_66 (enrollment INTEGER, school VARCHAR)
SELECT MAX(enrollment) FROM table_name_66 WHERE school = "rochester community"
25,751
<question>: What is the average enrollment that has hot dogs as the mascot, with a year joined later than 1926? <context>: 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
25,752
<question>: What is the lowest enrollment that has Lafayette as the location? <context>: CREATE TABLE table_name_46 (enrollment INTEGER, location VARCHAR)
SELECT MIN(enrollment) FROM table_name_46 WHERE location = "lafayette"
25,753
<question>: Who was runner-up in the 2006 Pacific Life Open? <context>: 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"
25,754
<question>: Which Class has a Quantity made of 29? <context>: CREATE TABLE table_name_66 (class VARCHAR, quantity_made VARCHAR)
SELECT class FROM table_name_66 WHERE quantity_made = "29"
25,755
<question>: What is the Theme Song of the Yukan Club? <context>: 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"
25,756
<question>: What is the Theme Song of 働きマン? <context>: CREATE TABLE table_name_5 (theme_song_s_ VARCHAR, japanese_title VARCHAR)
SELECT theme_song_s_ FROM table_name_5 WHERE japanese_title = "働きマン"
25,757
<question>: What is the Theme Song of the show on Fuji TV Station with Average Ratings of 16.65%? <context>: 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%"
25,758
<question>: What is the Theme Song of Iryu -Team Medical Dragon-2? <context>: 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"
25,759
<question>: what is the road numbers when the build year is 1943, the railroad (quantity) is clinchfield railroad (12 new, 6 secondhand)? <context>: 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)"
25,760
<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? <context>: 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"
25,761
<question>: what is the road numbers when the class is z-7? <context>: CREATE TABLE table_name_66 (road_numbers VARCHAR, class VARCHAR)
SELECT road_numbers FROM table_name_66 WHERE class = "z-7"
25,762
<question>: What was the peak date of Kelis's song? <context>: CREATE TABLE table_name_1 (peak_date VARCHAR, main_artist VARCHAR)
SELECT peak_date FROM table_name_1 WHERE main_artist = "kelis"
25,763
<question>: What is the Nationality of the Swimmer in Lane 4 or larger with a Rank of 5 or more? <context>: CREATE TABLE table_name_37 (nationality VARCHAR, lane VARCHAR, rank VARCHAR)
SELECT nationality FROM table_name_37 WHERE lane > 4 AND rank > 5
25,764
<question>: Who was the opponent the falcons played against on week 3? <context>: CREATE TABLE table_name_87 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_87 WHERE week = 3
25,765
<question>: what is the highest podiums when the stage wins is 91 and the points is less than 140? <context>: 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
25,766
<question>: what is the average wins when the podiums is more than 1, points is 80 and starts is less than 28? <context>: 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
25,767
<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? <context>: 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
25,768
<question>: what is the highest points when the chassis is focus rs wrc 08 and 09 and the stage wins is more than 91? <context>: 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
25,769
<question>: What driver had a total time of 16:58? <context>: CREATE TABLE table_name_66 (driver VARCHAR, total_time VARCHAR)
SELECT driver FROM table_name_66 WHERE total_time = "16:58"
25,770
<question>: What's the lowest capacity when the margin is 03:30? <context>: CREATE TABLE table_name_77 (capacity INTEGER, margin VARCHAR)
SELECT MIN(capacity) FROM table_name_77 WHERE margin = "03:30"
25,771
<question>: Which vehicle has a class 6c3g? <context>: CREATE TABLE table_name_20 (vehicle VARCHAR, class VARCHAR)
SELECT vehicle FROM table_name_20 WHERE class = "6c3g"
25,772
<question>: What is the lowest capacity for the 1975 toyota celica 1600gt? <context>: CREATE TABLE table_name_89 (capacity INTEGER, vehicle VARCHAR)
SELECT MIN(capacity) FROM table_name_89 WHERE vehicle = "1975 toyota celica 1600gt"
25,773
<question>: who is the athlete when react is 0.164? <context>: CREATE TABLE table_name_46 (athlete VARCHAR, react VARCHAR)
SELECT athlete FROM table_name_46 WHERE react = 0.164
25,774
<question>: what is the lowest lane when react is more than 0.164 and the nationality is guinea? <context>: 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"
25,775
<question>: What is the year retired of the locomotive which had the quantity made of 25? <context>: CREATE TABLE table_name_5 (year_s__retired VARCHAR, quantity_made VARCHAR)
SELECT year_s__retired FROM table_name_5 WHERE quantity_made = "25"
25,776
<question>: Which class had a quantity made of 20? <context>: CREATE TABLE table_name_19 (class VARCHAR, quantity_made VARCHAR)
SELECT class FROM table_name_19 WHERE quantity_made = "20"
25,777
<question>: What is the locomotive class that has a wheel arrangement of 2-8-2 and a quantity made of 25? <context>: 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"
25,778
<question>: What is the quantity preserved to the locomotive with a quantity made of 6? <context>: CREATE TABLE table_name_11 (quantity_preserved VARCHAR, quantity_made VARCHAR)
SELECT quantity_preserved FROM table_name_11 WHERE quantity_made = "6"
25,779
<question>: What is Beohari's highest number of electorates? <context>: 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"
25,780
<question>: What is the district with 79 constituency number? <context>: CREATE TABLE table_name_13 (district VARCHAR, constituency_number VARCHAR)
SELECT district FROM table_name_13 WHERE constituency_number = "79"
25,781
<question>: What is Beohari's reserved for (SC/ST/None)? <context>: 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"
25,782
<question>: What is the sum of the prominence in m of moussa ali terara peak? <context>: CREATE TABLE table_name_88 (prominence__m_ INTEGER, peak VARCHAR)
SELECT SUM(prominence__m_) FROM table_name_88 WHERE peak = "moussa ali terara"
25,783
<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? <context>: 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
25,784
<question>: Which team had a start of 8 in years under 2008? <context>: CREATE TABLE table_name_22 (team VARCHAR, start VARCHAR, year VARCHAR)
SELECT team FROM table_name_22 WHERE start = 8 AND year < 2008
25,785
<question>: What was Jeff's finish in 2011? <context>: CREATE TABLE table_name_35 (finish INTEGER, year VARCHAR)
SELECT SUM(finish) FROM table_name_35 WHERE year = 2011
25,786
<question>: What is the number of finishes having a start of 15? <context>: CREATE TABLE table_name_78 (finish VARCHAR, start VARCHAR)
SELECT COUNT(finish) FROM table_name_78 WHERE start = 15
25,787
<question>: How many 2011 1H values have a 2006 of 27.4 and 2007 over 27.7? <context>: CREATE TABLE table_name_9 (Id VARCHAR)
SELECT COUNT(2011 AS _1h) FROM table_name_9 WHERE 2006 = 27.4 AND 2007 > 27.7
25,788
<question>: What is the highest 2011 1H value for a 2005 over 28? <context>: CREATE TABLE table_name_35 (Id VARCHAR)
SELECT MAX(2011 AS _1h) FROM table_name_35 WHERE 2005 > 28
25,789
<question>: What is the average 2007 value for a 2006 of 2.8 and 2009 under 20? <context>: CREATE TABLE table_name_6 (Id VARCHAR)
SELECT AVG(2007) FROM table_name_6 WHERE 2009 < 20 AND 2006 = 2.8
25,790
<question>: What was the round for Villa Park? <context>: CREATE TABLE table_name_85 (round VARCHAR, venue VARCHAR)
SELECT round FROM table_name_85 WHERE venue = "villa park"
25,791
<question>: What is latitude when 2010 population is 24 and water is more than 0.319? <context>: 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
25,792
<question>: Is Blonanserin MHRA approved? <context>: CREATE TABLE table_name_24 (mhra_approved VARCHAR, generic_name VARCHAR)
SELECT mhra_approved FROM table_name_24 WHERE generic_name = "blonanserin"
25,793
<question>: What is the home team when kwong wah was the away team? <context>: CREATE TABLE table_name_41 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_41 WHERE away_team = "kwong wah"
25,794
<question>: What is the score of the match at happy valley recreation ground pitch #2 with a 14:30 time? <context>: 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"
25,795
<question>: What is the venue of the match with a 14:30 time and sun source as the away team? <context>: 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"
25,796
<question>: What is the away team when solon was the home team? <context>: CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_63 WHERE home_team = "solon"
25,797
<question>: What is Elizabeth Simmonds' average lane number? <context>: CREATE TABLE table_name_21 (lane INTEGER, name VARCHAR)
SELECT AVG(lane) FROM table_name_21 WHERE name = "elizabeth simmonds"
25,798
<question>: What is Laure Manaudou's highest rank? <context>: CREATE TABLE table_name_32 (rank INTEGER, name VARCHAR)
SELECT MAX(rank) FROM table_name_32 WHERE name = "laure manaudou"
25,799
<question>: What internet explorer has 1.67% as the opera, with 2012 q1 as the period? <context>: 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"