question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How many Gold does the Nation in Rank 12 with less than 2 Total medals have?
CREATE TABLE table_name_45 (gold INTEGER, rank VARCHAR, total VARCHAR)
SELECT MAX(gold) FROM table_name_45 WHERE rank = "12" AND total < 2
### Context: CREATE TABLE table_name_45 (gold INTEGER, rank VARCHAR, total VARCHAR) ### Question: How many Gold does the Nation in Rank 12 with less than 2 Total medals have? ### Answer: SELECT MAX(gold) FROM table_name_45 WHERE rank = "12" AND total < 2
Which NHL team got pick 89?
CREATE TABLE table_name_49 (nhl_team VARCHAR, pick__number VARCHAR)
SELECT nhl_team FROM table_name_49 WHERE pick__number = "89"
### Context: CREATE TABLE table_name_49 (nhl_team VARCHAR, pick__number VARCHAR) ### Question: Which NHL team got pick 89? ### Answer: SELECT nhl_team FROM table_name_49 WHERE pick__number = "89"
Who plays goaltender for the Vancouver Canucks?
CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, nhl_team VARCHAR)
SELECT player FROM table_name_22 WHERE position = "goaltender" AND nhl_team = "vancouver canucks"
### Context: CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, nhl_team VARCHAR) ### Question: Who plays goaltender for the Vancouver Canucks? ### Answer: SELECT player FROM table_name_22 WHERE position = "goaltender" AND nhl_team = "vancouver canucks"
What is the % Change at London Heathrow airport?
CREATE TABLE table_name_68 (_percentage_change VARCHAR, airport VARCHAR)
SELECT _percentage_change FROM table_name_68 WHERE airport = "london heathrow airport"
### Context: CREATE TABLE table_name_68 (_percentage_change VARCHAR, airport VARCHAR) ### Question: What is the % Change at London Heathrow airport? ### Answer: SELECT _percentage_change FROM table_name_68 WHERE airport = "london heathrow airport"
What 2003 rank does the airport IATA code SIN have?
CREATE TABLE table_name_60 (code__iata_ VARCHAR)
SELECT 2003 AS rank FROM table_name_60 WHERE code__iata_ = "sin"
### Context: CREATE TABLE table_name_60 (code__iata_ VARCHAR) ### Question: What 2003 rank does the airport IATA code SIN have? ### Answer: SELECT 2003 AS rank FROM table_name_60 WHERE code__iata_ = "sin"
Which airport has an IATA code of AMS?
CREATE TABLE table_name_73 (airport VARCHAR, code__iata_ VARCHAR)
SELECT airport FROM table_name_73 WHERE code__iata_ = "ams"
### Context: CREATE TABLE table_name_73 (airport VARCHAR, code__iata_ VARCHAR) ### Question: Which airport has an IATA code of AMS? ### Answer: SELECT airport FROM table_name_73 WHERE code__iata_ = "ams"
What is the IATA code of the airport that has a Total Cargo of 1,838,894 Metric Tonnes?
CREATE TABLE table_name_20 (code__iata_ VARCHAR, total_cargo__metric_tonnes_ VARCHAR)
SELECT code__iata_ FROM table_name_20 WHERE total_cargo__metric_tonnes_ = "1,838,894"
### Context: CREATE TABLE table_name_20 (code__iata_ VARCHAR, total_cargo__metric_tonnes_ VARCHAR) ### Question: What is the IATA code of the airport that has a Total Cargo of 1,838,894 Metric Tonnes? ### Answer: SELECT code__iata_ FROM table_name_20 WHERE total_cargo__metric_tonnes_ = "1,838,894"
What is the 2003 rank for Los Angeles International airport?
CREATE TABLE table_name_17 (airport VARCHAR)
SELECT 2003 AS rank FROM table_name_17 WHERE airport = "los angeles international airport"
### Context: CREATE TABLE table_name_17 (airport VARCHAR) ### Question: What is the 2003 rank for Los Angeles International airport? ### Answer: SELECT 2003 AS rank FROM table_name_17 WHERE airport = "los angeles international airport"
What district is Wyatt Aiken in?
CREATE TABLE table_name_19 (district VARCHAR, incumbent VARCHAR)
SELECT district FROM table_name_19 WHERE incumbent = "wyatt aiken"
### Context: CREATE TABLE table_name_19 (district VARCHAR, incumbent VARCHAR) ### Question: What district is Wyatt Aiken in? ### Answer: SELECT district FROM table_name_19 WHERE incumbent = "wyatt aiken"
Silver larger than 0, and a Total smaller than 3, and a Nation of bulgaria, and a Bronze smaller than 0 had what sum of gold?
CREATE TABLE table_name_51 (gold INTEGER, bronze VARCHAR, nation VARCHAR, silver VARCHAR, total VARCHAR)
SELECT SUM(gold) FROM table_name_51 WHERE silver > 0 AND total < 3 AND nation = "bulgaria" AND bronze < 0
### Context: CREATE TABLE table_name_51 (gold INTEGER, bronze VARCHAR, nation VARCHAR, silver VARCHAR, total VARCHAR) ### Question: Silver larger than 0, and a Total smaller than 3, and a Nation of bulgaria, and a Bronze smaller than 0 had what sum of gold? ### Answer: SELECT SUM(gold) FROM table_name_51 WHERE silver > 0 AND total < 3 AND nation = "bulgaria" AND bronze < 0
Nation of total has what sum of gold?
CREATE TABLE table_name_36 (gold INTEGER, nation VARCHAR)
SELECT SUM(gold) FROM table_name_36 WHERE nation = "total"
### Context: CREATE TABLE table_name_36 (gold INTEGER, nation VARCHAR) ### Question: Nation of total has what sum of gold? ### Answer: SELECT SUM(gold) FROM table_name_36 WHERE nation = "total"
Total of 3, and a Gold larger than 0, and a Nation of belarus, and a Silver larger than 2 has what sum of bronze?
CREATE TABLE table_name_27 (bronze INTEGER, silver VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR)
SELECT SUM(bronze) FROM table_name_27 WHERE total = 3 AND gold > 0 AND nation = "belarus" AND silver > 2
### Context: CREATE TABLE table_name_27 (bronze INTEGER, silver VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR) ### Question: Total of 3, and a Gold larger than 0, and a Nation of belarus, and a Silver larger than 2 has what sum of bronze? ### Answer: SELECT SUM(bronze) FROM table_name_27 WHERE total = 3 AND gold > 0 AND nation = "belarus" AND silver > 2
Bronze of 22 has what average silver?
CREATE TABLE table_name_99 (silver INTEGER, bronze VARCHAR)
SELECT AVG(silver) FROM table_name_99 WHERE bronze = 22
### Context: CREATE TABLE table_name_99 (silver INTEGER, bronze VARCHAR) ### Question: Bronze of 22 has what average silver? ### Answer: SELECT AVG(silver) FROM table_name_99 WHERE bronze = 22
Which position had 5 games played and a record of 1-2-2?
CREATE TABLE table_name_63 (position VARCHAR, games_played VARCHAR, w_l_d VARCHAR)
SELECT position FROM table_name_63 WHERE games_played = 5 AND w_l_d = "1-2-2"
### Context: CREATE TABLE table_name_63 (position VARCHAR, games_played VARCHAR, w_l_d VARCHAR) ### Question: Which position had 5 games played and a record of 1-2-2? ### Answer: SELECT position FROM table_name_63 WHERE games_played = 5 AND w_l_d = "1-2-2"
What was the name of the leader whose term ended in 2013?
CREATE TABLE table_name_49 (name VARCHAR, term_end VARCHAR)
SELECT name FROM table_name_49 WHERE term_end = "2013"
### Context: CREATE TABLE table_name_49 (name VARCHAR, term_end VARCHAR) ### Question: What was the name of the leader whose term ended in 2013? ### Answer: SELECT name FROM table_name_49 WHERE term_end = "2013"
When was the start of the leader's term who was born on January 8, 1859 and whose term ended in 1919?
CREATE TABLE table_name_12 (term_start VARCHAR, term_end VARCHAR, date_of_birth VARCHAR)
SELECT term_start FROM table_name_12 WHERE term_end = "1919" AND date_of_birth = "january 8, 1859"
### Context: CREATE TABLE table_name_12 (term_start VARCHAR, term_end VARCHAR, date_of_birth VARCHAR) ### Question: When was the start of the leader's term who was born on January 8, 1859 and whose term ended in 1919? ### Answer: SELECT term_start FROM table_name_12 WHERE term_end = "1919" AND date_of_birth = "january 8, 1859"
Which leader born on December 17, 1874 started their term before 1984?
CREATE TABLE table_name_50 (name VARCHAR, term_start VARCHAR, date_of_birth VARCHAR)
SELECT name FROM table_name_50 WHERE term_start < 1984 AND date_of_birth = "december 17, 1874"
### Context: CREATE TABLE table_name_50 (name VARCHAR, term_start VARCHAR, date_of_birth VARCHAR) ### Question: Which leader born on December 17, 1874 started their term before 1984? ### Answer: SELECT name FROM table_name_50 WHERE term_start < 1984 AND date_of_birth = "december 17, 1874"
What date shows the Outcome of winner against nikola fraňková carmen klaschka?
CREATE TABLE table_name_54 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_54 WHERE outcome = "winner" AND opponents_in_the_final = "nikola fraňková carmen klaschka"
### Context: CREATE TABLE table_name_54 (date VARCHAR, outcome VARCHAR, opponents_in_the_final VARCHAR) ### Question: What date shows the Outcome of winner against nikola fraňková carmen klaschka? ### Answer: SELECT date FROM table_name_54 WHERE outcome = "winner" AND opponents_in_the_final = "nikola fraňková carmen klaschka"
What is the Outcome of the jounieh tournament?
CREATE TABLE table_name_73 (outcome VARCHAR, tournament VARCHAR)
SELECT outcome FROM table_name_73 WHERE tournament = "jounieh"
### Context: CREATE TABLE table_name_73 (outcome VARCHAR, tournament VARCHAR) ### Question: What is the Outcome of the jounieh tournament? ### Answer: SELECT outcome FROM table_name_73 WHERE tournament = "jounieh"
What date was the score of 6–3 6–4?
CREATE TABLE table_name_53 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_53 WHERE score = "6–3 6–4"
### Context: CREATE TABLE table_name_53 (date VARCHAR, score VARCHAR) ### Question: What date was the score of 6–3 6–4? ### Answer: SELECT date FROM table_name_53 WHERE score = "6–3 6–4"
when indiana pacers were the opponent what was the date?
CREATE TABLE table_name_89 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_89 WHERE opponent = "indiana pacers"
### Context: CREATE TABLE table_name_89 (date VARCHAR, opponent VARCHAR) ### Question: when indiana pacers were the opponent what was the date? ### Answer: SELECT date FROM table_name_89 WHERE opponent = "indiana pacers"
tries against is 55, what is the try bonus?
CREATE TABLE table_name_80 (try_bonus VARCHAR, tries_against VARCHAR)
SELECT try_bonus FROM table_name_80 WHERE tries_against = "55"
### Context: CREATE TABLE table_name_80 (try_bonus VARCHAR, tries_against VARCHAR) ### Question: tries against is 55, what is the try bonus? ### Answer: SELECT try_bonus FROM table_name_80 WHERE tries_against = "55"
tries against is 29, what is the points against?
CREATE TABLE table_name_97 (points_against VARCHAR, tries_against VARCHAR)
SELECT points_against FROM table_name_97 WHERE tries_against = "29"
### Context: CREATE TABLE table_name_97 (points_against VARCHAR, tries_against VARCHAR) ### Question: tries against is 29, what is the points against? ### Answer: SELECT points_against FROM table_name_97 WHERE tries_against = "29"
tries against correct as of 2007-10-15 has what tries for?
CREATE TABLE table_name_54 (tries_for VARCHAR, tries_against VARCHAR)
SELECT tries_for FROM table_name_54 WHERE tries_against = "correct as of 2007-10-15"
### Context: CREATE TABLE table_name_54 (tries_for VARCHAR, tries_against VARCHAR) ### Question: tries against correct as of 2007-10-15 has what tries for? ### Answer: SELECT tries_for FROM table_name_54 WHERE tries_against = "correct as of 2007-10-15"
tries against correct as of 2007-10-15 has what tries for?
CREATE TABLE table_name_31 (tries_for VARCHAR, tries_against VARCHAR)
SELECT tries_for FROM table_name_31 WHERE tries_against = "correct as of 2007-10-15"
### Context: CREATE TABLE table_name_31 (tries_for VARCHAR, tries_against VARCHAR) ### Question: tries against correct as of 2007-10-15 has what tries for? ### Answer: SELECT tries_for FROM table_name_31 WHERE tries_against = "correct as of 2007-10-15"
tries against is 88, played is 22, what is the lost?
CREATE TABLE table_name_57 (lost VARCHAR, played VARCHAR, tries_against VARCHAR)
SELECT lost FROM table_name_57 WHERE played = "22" AND tries_against = "88"
### Context: CREATE TABLE table_name_57 (lost VARCHAR, played VARCHAR, tries_against VARCHAR) ### Question: tries against is 88, played is 22, what is the lost? ### Answer: SELECT lost FROM table_name_57 WHERE played = "22" AND tries_against = "88"
Who won silver in the year before 2010, the year Chan Ming Shu won gold?
CREATE TABLE table_name_21 (silver VARCHAR, year VARCHAR, gold VARCHAR)
SELECT silver FROM table_name_21 WHERE year < 2010 AND gold = "chan ming shu"
### Context: CREATE TABLE table_name_21 (silver VARCHAR, year VARCHAR, gold VARCHAR) ### Question: Who won silver in the year before 2010, the year Chan Ming Shu won gold? ### Answer: SELECT silver FROM table_name_21 WHERE year < 2010 AND gold = "chan ming shu"
What is the location for the year under 2010 and the year Hei Zhi Hong won silver?
CREATE TABLE table_name_67 (location VARCHAR, year VARCHAR, silver VARCHAR)
SELECT location FROM table_name_67 WHERE year < 2010 AND silver = "hei zhi hong"
### Context: CREATE TABLE table_name_67 (location VARCHAR, year VARCHAR, silver VARCHAR) ### Question: What is the location for the year under 2010 and the year Hei Zhi Hong won silver? ### Answer: SELECT location FROM table_name_67 WHERE year < 2010 AND silver = "hei zhi hong"
Which location had a year over 2006?
CREATE TABLE table_name_68 (location VARCHAR, year INTEGER)
SELECT location FROM table_name_68 WHERE year > 2006
### Context: CREATE TABLE table_name_68 (location VARCHAR, year INTEGER) ### Question: Which location had a year over 2006? ### Answer: SELECT location FROM table_name_68 WHERE year > 2006
Score F–A of 2–0, and a Opponents of walsall has what date?
CREATE TABLE table_name_49 (date VARCHAR, score_f_a VARCHAR, opponents VARCHAR)
SELECT date FROM table_name_49 WHERE score_f_a = "2–0" AND opponents = "walsall"
### Context: CREATE TABLE table_name_49 (date VARCHAR, score_f_a VARCHAR, opponents VARCHAR) ### Question: Score F–A of 2–0, and a Opponents of walsall has what date? ### Answer: SELECT date FROM table_name_49 WHERE score_f_a = "2–0" AND opponents = "walsall"
Score F–A of 3–0, and a Date of 31 july 2007 had what opponents?
CREATE TABLE table_name_13 (opponents VARCHAR, score_f_a VARCHAR, date VARCHAR)
SELECT opponents FROM table_name_13 WHERE score_f_a = "3–0" AND date = "31 july 2007"
### Context: CREATE TABLE table_name_13 (opponents VARCHAR, score_f_a VARCHAR, date VARCHAR) ### Question: Score F–A of 3–0, and a Date of 31 july 2007 had what opponents? ### Answer: SELECT opponents FROM table_name_13 WHERE score_f_a = "3–0" AND date = "31 july 2007"
Opponents of sheffield wednesday had what date?
CREATE TABLE table_name_81 (date VARCHAR, opponents VARCHAR)
SELECT date FROM table_name_81 WHERE opponents = "sheffield wednesday"
### Context: CREATE TABLE table_name_81 (date VARCHAR, opponents VARCHAR) ### Question: Opponents of sheffield wednesday had what date? ### Answer: SELECT date FROM table_name_81 WHERE opponents = "sheffield wednesday"
Opponents of sheffield wednesday had what date?
CREATE TABLE table_name_63 (date VARCHAR, opponents VARCHAR)
SELECT date FROM table_name_63 WHERE opponents = "sheffield wednesday"
### Context: CREATE TABLE table_name_63 (date VARCHAR, opponents VARCHAR) ### Question: Opponents of sheffield wednesday had what date? ### Answer: SELECT date FROM table_name_63 WHERE opponents = "sheffield wednesday"
Date of 4 august 2007 had what opponents?
CREATE TABLE table_name_17 (opponents VARCHAR, date VARCHAR)
SELECT opponents FROM table_name_17 WHERE date = "4 august 2007"
### Context: CREATE TABLE table_name_17 (opponents VARCHAR, date VARCHAR) ### Question: Date of 4 august 2007 had what opponents? ### Answer: SELECT opponents FROM table_name_17 WHERE date = "4 august 2007"
WHich Position has a Player of david laliberte?
CREATE TABLE table_name_50 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_50 WHERE player = "david laliberte"
### Context: CREATE TABLE table_name_50 (position VARCHAR, player VARCHAR) ### Question: WHich Position has a Player of david laliberte? ### Answer: SELECT position FROM table_name_50 WHERE player = "david laliberte"
Which Position has a Player of gino pisellini?
CREATE TABLE table_name_13 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_13 WHERE player = "gino pisellini"
### Context: CREATE TABLE table_name_13 (position VARCHAR, player VARCHAR) ### Question: Which Position has a Player of gino pisellini? ### Answer: SELECT position FROM table_name_13 WHERE player = "gino pisellini"
What is the winning score of standard register ping tournament, which has Kelly Robbins as the runner-up?
CREATE TABLE table_name_46 (winning_score VARCHAR, tournament VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_46 WHERE tournament = "standard register ping" AND runner_s__up = "kelly robbins"
### Context: CREATE TABLE table_name_46 (winning_score VARCHAR, tournament VARCHAR, runner_s__up VARCHAR) ### Question: What is the winning score of standard register ping tournament, which has Kelly Robbins as the runner-up? ### Answer: SELECT winning_score FROM table_name_46 WHERE tournament = "standard register ping" AND runner_s__up = "kelly robbins"
What is the winning score of the tournament on 16 May 1993?
CREATE TABLE table_name_20 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_20 WHERE date = "16 may 1993"
### Context: CREATE TABLE table_name_20 (winning_score VARCHAR, date VARCHAR) ### Question: What is the winning score of the tournament on 16 May 1993? ### Answer: SELECT winning_score FROM table_name_20 WHERE date = "16 may 1993"
What is the margin of victory of the tournament on 5 Jun 1988?
CREATE TABLE table_name_75 (margin_of_victory VARCHAR, date VARCHAR)
SELECT margin_of_victory FROM table_name_75 WHERE date = "5 jun 1988"
### Context: CREATE TABLE table_name_75 (margin_of_victory VARCHAR, date VARCHAR) ### Question: What is the margin of victory of the tournament on 5 Jun 1988? ### Answer: SELECT margin_of_victory FROM table_name_75 WHERE date = "5 jun 1988"
What is the winning scor of the tournament with Robin Walton as the runner-up?
CREATE TABLE table_name_88 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_88 WHERE runner_s__up = "robin walton"
### Context: CREATE TABLE table_name_88 (winning_score VARCHAR, runner_s__up VARCHAR) ### Question: What is the winning scor of the tournament with Robin Walton as the runner-up? ### Answer: SELECT winning_score FROM table_name_88 WHERE runner_s__up = "robin walton"
which NHL team has a College/Junior/Club Team (League) of shattuck-saint mary's school (midget major aaa)?
CREATE TABLE table_name_63 (nhl_team VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT nhl_team FROM table_name_63 WHERE college_junior_club_team__league_ = "shattuck-saint mary's school (midget major aaa)"
### Context: CREATE TABLE table_name_63 (nhl_team VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: which NHL team has a College/Junior/Club Team (League) of shattuck-saint mary's school (midget major aaa)? ### Answer: SELECT nhl_team FROM table_name_63 WHERE college_junior_club_team__league_ = "shattuck-saint mary's school (midget major aaa)"
How many Rounds have a Nationality of canada, and a College/Junior/Club Team (League) of fort mcmurray oil barons (ajhl)?
CREATE TABLE table_name_66 (round VARCHAR, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT COUNT(round) FROM table_name_66 WHERE nationality = "canada" AND college_junior_club_team__league_ = "fort mcmurray oil barons (ajhl)"
### Context: CREATE TABLE table_name_66 (round VARCHAR, nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: How many Rounds have a Nationality of canada, and a College/Junior/Club Team (League) of fort mcmurray oil barons (ajhl)? ### Answer: SELECT COUNT(round) FROM table_name_66 WHERE nationality = "canada" AND college_junior_club_team__league_ = "fort mcmurray oil barons (ajhl)"
Which Round has a NHL team of edmonton oilers and a Player of vyacheslav trukhno?
CREATE TABLE table_name_12 (round INTEGER, nhl_team VARCHAR, player VARCHAR)
SELECT AVG(round) FROM table_name_12 WHERE nhl_team = "edmonton oilers" AND player = "vyacheslav trukhno"
### Context: CREATE TABLE table_name_12 (round INTEGER, nhl_team VARCHAR, player VARCHAR) ### Question: Which Round has a NHL team of edmonton oilers and a Player of vyacheslav trukhno? ### Answer: SELECT AVG(round) FROM table_name_12 WHERE nhl_team = "edmonton oilers" AND player = "vyacheslav trukhno"
Which Round has a Nationality of united states, and a College/Junior/Club Team (League) of breck school (ushs)?
CREATE TABLE table_name_19 (round INTEGER, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT MIN(round) FROM table_name_19 WHERE nationality = "united states" AND college_junior_club_team__league_ = "breck school (ushs)"
### Context: CREATE TABLE table_name_19 (round INTEGER, nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: Which Round has a Nationality of united states, and a College/Junior/Club Team (League) of breck school (ushs)? ### Answer: SELECT MIN(round) FROM table_name_19 WHERE nationality = "united states" AND college_junior_club_team__league_ = "breck school (ushs)"
What is the max 1-min wind mph when the minimum press is 997?
CREATE TABLE table_name_57 (max_1_min_wind_mph__km_h_ VARCHAR, min_press___mbar__ VARCHAR)
SELECT max_1_min_wind_mph__km_h_ FROM table_name_57 WHERE min_press___mbar__ = "997"
### Context: CREATE TABLE table_name_57 (max_1_min_wind_mph__km_h_ VARCHAR, min_press___mbar__ VARCHAR) ### Question: What is the max 1-min wind mph when the minimum press is 997? ### Answer: SELECT max_1_min_wind_mph__km_h_ FROM table_name_57 WHERE min_press___mbar__ = "997"
How many deaths occurred during Darby?
CREATE TABLE table_name_64 (deaths VARCHAR, storm_name VARCHAR)
SELECT deaths FROM table_name_64 WHERE storm_name = "darby"
### Context: CREATE TABLE table_name_64 (deaths VARCHAR, storm_name VARCHAR) ### Question: How many deaths occurred during Darby? ### Answer: SELECT deaths FROM table_name_64 WHERE storm_name = "darby"
What is the distance from Jaffa of Jerusalem station?
CREATE TABLE table_name_1 (distance_from_jaffa VARCHAR, name_location VARCHAR)
SELECT distance_from_jaffa FROM table_name_1 WHERE name_location = "jerusalem"
### Context: CREATE TABLE table_name_1 (distance_from_jaffa VARCHAR, name_location VARCHAR) ### Question: What is the distance from Jaffa of Jerusalem station? ### Answer: SELECT distance_from_jaffa FROM table_name_1 WHERE name_location = "jerusalem"
What visitor has February 11 as the date?
CREATE TABLE table_name_37 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_37 WHERE date = "february 11"
### Context: CREATE TABLE table_name_37 (visitor VARCHAR, date VARCHAR) ### Question: What visitor has February 11 as the date? ### Answer: SELECT visitor FROM table_name_37 WHERE date = "february 11"
Which venue is the friendly match in?
CREATE TABLE table_name_7 (venue VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_7 WHERE competition = "friendly match"
### Context: CREATE TABLE table_name_7 (venue VARCHAR, competition VARCHAR) ### Question: Which venue is the friendly match in? ### Answer: SELECT venue FROM table_name_7 WHERE competition = "friendly match"
What is the result of the friendly match in Seoul?
CREATE TABLE table_name_47 (result VARCHAR, competition VARCHAR, venue VARCHAR)
SELECT result FROM table_name_47 WHERE competition = "friendly match" AND venue = "seoul"
### Context: CREATE TABLE table_name_47 (result VARCHAR, competition VARCHAR, venue VARCHAR) ### Question: What is the result of the friendly match in Seoul? ### Answer: SELECT result FROM table_name_47 WHERE competition = "friendly match" AND venue = "seoul"
What is the result of the 2007 AFC asian cup?
CREATE TABLE table_name_19 (result VARCHAR, competition VARCHAR)
SELECT result FROM table_name_19 WHERE competition = "2007 afc asian cup"
### Context: CREATE TABLE table_name_19 (result VARCHAR, competition VARCHAR) ### Question: What is the result of the 2007 AFC asian cup? ### Answer: SELECT result FROM table_name_19 WHERE competition = "2007 afc asian cup"
Which Runner(s)-up has a Margin of victory of 1 stroke, and a Tournament of world seniors invitational?
CREATE TABLE table_name_34 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT runner_s__up FROM table_name_34 WHERE margin_of_victory = "1 stroke" AND tournament = "world seniors invitational"
### Context: CREATE TABLE table_name_34 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### Question: Which Runner(s)-up has a Margin of victory of 1 stroke, and a Tournament of world seniors invitational? ### Answer: SELECT runner_s__up FROM table_name_34 WHERE margin_of_victory = "1 stroke" AND tournament = "world seniors invitational"
Which Runner(s)-up has a Tournament of general foods pga seniors' championship?
CREATE TABLE table_name_65 (runner_s__up VARCHAR, tournament VARCHAR)
SELECT runner_s__up FROM table_name_65 WHERE tournament = "general foods pga seniors' championship"
### Context: CREATE TABLE table_name_65 (runner_s__up VARCHAR, tournament VARCHAR) ### Question: Which Runner(s)-up has a Tournament of general foods pga seniors' championship? ### Answer: SELECT runner_s__up FROM table_name_65 WHERE tournament = "general foods pga seniors' championship"
Which Tournament has a Margin of victory of 2 strokes, and a Winning score of −14 (68-66-68=202)?
CREATE TABLE table_name_10 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_10 WHERE margin_of_victory = "2 strokes" AND winning_score = −14(68 - 66 - 68 = 202)
### Context: CREATE TABLE table_name_10 (tournament VARCHAR, margin_of_victory VARCHAR, winning_score VARCHAR) ### Question: Which Tournament has a Margin of victory of 2 strokes, and a Winning score of −14 (68-66-68=202)? ### Answer: SELECT tournament FROM table_name_10 WHERE margin_of_victory = "2 strokes" AND winning_score = −14(68 - 66 - 68 = 202)
Which Date has a Winning score of −9 (70-64-70=203)?
CREATE TABLE table_name_19 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_name_19 WHERE winning_score = −9(70 - 64 - 70 = 203)
### Context: CREATE TABLE table_name_19 (date VARCHAR, winning_score VARCHAR) ### Question: Which Date has a Winning score of −9 (70-64-70=203)? ### Answer: SELECT date FROM table_name_19 WHERE winning_score = −9(70 - 64 - 70 = 203)
What was the High points when date was February 11?
CREATE TABLE table_name_55 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_name_55 WHERE date = "february 11"
### Context: CREATE TABLE table_name_55 (high_points VARCHAR, date VARCHAR) ### Question: What was the High points when date was February 11? ### Answer: SELECT high_points FROM table_name_55 WHERE date = "february 11"
What was the team that has a High rebounds of popeye jones (14), and when the Record was 16-28?
CREATE TABLE table_name_86 (team VARCHAR, high_rebounds VARCHAR, record VARCHAR)
SELECT team FROM table_name_86 WHERE high_rebounds = "popeye jones (14)" AND record = "16-28"
### Context: CREATE TABLE table_name_86 (team VARCHAR, high_rebounds VARCHAR, record VARCHAR) ### Question: What was the team that has a High rebounds of popeye jones (14), and when the Record was 16-28? ### Answer: SELECT team FROM table_name_86 WHERE high_rebounds = "popeye jones (14)" AND record = "16-28"
What is the Location Attendance when the Date was February 27?
CREATE TABLE table_name_83 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_name_83 WHERE date = "february 27"
### Context: CREATE TABLE table_name_83 (location_attendance VARCHAR, date VARCHAR) ### Question: What is the Location Attendance when the Date was February 27? ### Answer: SELECT location_attendance FROM table_name_83 WHERE date = "february 27"
What is the score of the scores when Game had a Record of 17-29?
CREATE TABLE table_name_27 (game INTEGER, record VARCHAR)
SELECT SUM(game) FROM table_name_27 WHERE record = "17-29"
### Context: CREATE TABLE table_name_27 (game INTEGER, record VARCHAR) ### Question: What is the score of the scores when Game had a Record of 17-29? ### Answer: SELECT SUM(game) FROM table_name_27 WHERE record = "17-29"
Who has the lead on Lisa Weagle?
CREATE TABLE table_name_80 (skip VARCHAR, lead VARCHAR)
SELECT skip FROM table_name_80 WHERE lead = "lisa weagle"
### Context: CREATE TABLE table_name_80 (skip VARCHAR, lead VARCHAR) ### Question: Who has the lead on Lisa Weagle? ### Answer: SELECT skip FROM table_name_80 WHERE lead = "lisa weagle"
Which event shows Matt St. Louis in second and a skip of John Morris?
CREATE TABLE table_name_24 (event VARCHAR, skip VARCHAR, second VARCHAR)
SELECT event FROM table_name_24 WHERE skip = "john morris" AND second = "matt st. louis"
### Context: CREATE TABLE table_name_24 (event VARCHAR, skip VARCHAR, second VARCHAR) ### Question: Which event shows Matt St. Louis in second and a skip of John Morris? ### Answer: SELECT event FROM table_name_24 WHERE skip = "john morris" AND second = "matt st. louis"
What are the highest attempts that have net yards less than 631, and 2 for the touchdowns?
CREATE TABLE table_name_53 (attempts INTEGER, net_yards VARCHAR, touchdowns VARCHAR)
SELECT MAX(attempts) FROM table_name_53 WHERE net_yards < 631 AND touchdowns = 2
### Context: CREATE TABLE table_name_53 (attempts INTEGER, net_yards VARCHAR, touchdowns VARCHAR) ### Question: What are the highest attempts that have net yards less than 631, and 2 for the touchdowns? ### Answer: SELECT MAX(attempts) FROM table_name_53 WHERE net_yards < 631 AND touchdowns = 2
What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8?
CREATE TABLE table_name_87 (net_yards INTEGER, yards_per_attempt VARCHAR, touchdowns VARCHAR, attempts VARCHAR)
SELECT AVG(net_yards) FROM table_name_87 WHERE touchdowns = 9 AND attempts = 145 AND yards_per_attempt > 4.8
### Context: CREATE TABLE table_name_87 (net_yards INTEGER, yards_per_attempt VARCHAR, touchdowns VARCHAR, attempts VARCHAR) ### Question: What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8? ### Answer: SELECT AVG(net_yards) FROM table_name_87 WHERE touchdowns = 9 AND attempts = 145 AND yards_per_attempt > 4.8
How many yards per attempt have net yards greater than 631?
CREATE TABLE table_name_17 (yards_per_attempt INTEGER, net_yards INTEGER)
SELECT SUM(yards_per_attempt) FROM table_name_17 WHERE net_yards > 631
### Context: CREATE TABLE table_name_17 (yards_per_attempt INTEGER, net_yards INTEGER) ### Question: How many yards per attempt have net yards greater than 631? ### Answer: SELECT SUM(yards_per_attempt) FROM table_name_17 WHERE net_yards > 631
What are the highest touchdowns that have net yards greater than 631, with attempts less than 145?
CREATE TABLE table_name_34 (touchdowns INTEGER, net_yards VARCHAR, attempts VARCHAR)
SELECT MAX(touchdowns) FROM table_name_34 WHERE net_yards > 631 AND attempts < 145
### Context: CREATE TABLE table_name_34 (touchdowns INTEGER, net_yards VARCHAR, attempts VARCHAR) ### Question: What are the highest touchdowns that have net yards greater than 631, with attempts less than 145? ### Answer: SELECT MAX(touchdowns) FROM table_name_34 WHERE net_yards > 631 AND attempts < 145
What is the value for Slalom in seasons later than 1994 and overall value greater than 22?
CREATE TABLE table_name_90 (slalom VARCHAR, season VARCHAR, overall VARCHAR)
SELECT slalom FROM table_name_90 WHERE season > 1994 AND overall > 22
### Context: CREATE TABLE table_name_90 (slalom VARCHAR, season VARCHAR, overall VARCHAR) ### Question: What is the value for Slalom in seasons later than 1994 and overall value greater than 22? ### Answer: SELECT slalom FROM table_name_90 WHERE season > 1994 AND overall > 22
How many seasons had a Super G of 2 and overall of 3?
CREATE TABLE table_name_61 (season VARCHAR, super_g VARCHAR, overall VARCHAR)
SELECT COUNT(season) FROM table_name_61 WHERE super_g = "2" AND overall = 3
### Context: CREATE TABLE table_name_61 (season VARCHAR, super_g VARCHAR, overall VARCHAR) ### Question: How many seasons had a Super G of 2 and overall of 3? ### Answer: SELECT COUNT(season) FROM table_name_61 WHERE super_g = "2" AND overall = 3
Who was the Opponent in the Auckland, New Zealand Tournament?
CREATE TABLE table_name_50 (opponent VARCHAR, tournament VARCHAR)
SELECT opponent FROM table_name_50 WHERE tournament = "auckland, new zealand"
### Context: CREATE TABLE table_name_50 (opponent VARCHAR, tournament VARCHAR) ### Question: Who was the Opponent in the Auckland, New Zealand Tournament? ### Answer: SELECT opponent FROM table_name_50 WHERE tournament = "auckland, new zealand"
On what Date was Rafael Nadal the Opponent?
CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_37 WHERE opponent = "rafael nadal"
### Context: CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR) ### Question: On what Date was Rafael Nadal the Opponent? ### Answer: SELECT date FROM table_name_37 WHERE opponent = "rafael nadal"
Who was the Opponent on a Hard (i) Surface?
CREATE TABLE table_name_5 (opponent VARCHAR, surface VARCHAR)
SELECT opponent FROM table_name_5 WHERE surface = "hard (i)"
### Context: CREATE TABLE table_name_5 (opponent VARCHAR, surface VARCHAR) ### Question: Who was the Opponent on a Hard (i) Surface? ### Answer: SELECT opponent FROM table_name_5 WHERE surface = "hard (i)"
What was the Score at the Auckland, New Zealand Tournament?
CREATE TABLE table_name_7 (score VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_7 WHERE tournament = "auckland, new zealand"
### Context: CREATE TABLE table_name_7 (score VARCHAR, tournament VARCHAR) ### Question: What was the Score at the Auckland, New Zealand Tournament? ### Answer: SELECT score FROM table_name_7 WHERE tournament = "auckland, new zealand"
What team plays in Dinamo, Brest?
CREATE TABLE table_name_97 (team VARCHAR, venue VARCHAR)
SELECT team FROM table_name_97 WHERE venue = "dinamo, brest"
### Context: CREATE TABLE table_name_97 (team VARCHAR, venue VARCHAR) ### Question: What team plays in Dinamo, Brest? ### Answer: SELECT team FROM table_name_97 WHERE venue = "dinamo, brest"
What team plays at Spartak, Mogilev?
CREATE TABLE table_name_26 (team VARCHAR, venue VARCHAR)
SELECT team FROM table_name_26 WHERE venue = "spartak, mogilev"
### Context: CREATE TABLE table_name_26 (team VARCHAR, venue VARCHAR) ### Question: What team plays at Spartak, Mogilev? ### Answer: SELECT team FROM table_name_26 WHERE venue = "spartak, mogilev"
Who was the Producer/Director of Fear Beneath?
CREATE TABLE table_name_40 (producer_director VARCHAR, film VARCHAR)
SELECT producer_director FROM table_name_40 WHERE film = "fear beneath"
### Context: CREATE TABLE table_name_40 (producer_director VARCHAR, film VARCHAR) ### Question: Who was the Producer/Director of Fear Beneath? ### Answer: SELECT producer_director FROM table_name_40 WHERE film = "fear beneath"
What film was released in 1996?
CREATE TABLE table_name_76 (film VARCHAR, year VARCHAR)
SELECT film FROM table_name_76 WHERE year = 1996
### Context: CREATE TABLE table_name_76 (film VARCHAR, year VARCHAR) ### Question: What film was released in 1996? ### Answer: SELECT film FROM table_name_76 WHERE year = 1996
Who is the Producer/Director of Political Engagement?
CREATE TABLE table_name_67 (producer_director VARCHAR, film VARCHAR)
SELECT producer_director FROM table_name_67 WHERE film = "political engagement"
### Context: CREATE TABLE table_name_67 (producer_director VARCHAR, film VARCHAR) ### Question: Who is the Producer/Director of Political Engagement? ### Answer: SELECT producer_director FROM table_name_67 WHERE film = "political engagement"
What is the original airdate for episode 7-17 (195) from writer Sidney Slon?
CREATE TABLE table_name_5 (original_airdate VARCHAR, writer_s_ VARCHAR, episode VARCHAR)
SELECT original_airdate FROM table_name_5 WHERE writer_s_ = "sidney slon" AND episode = "7-17 (195)"
### Context: CREATE TABLE table_name_5 (original_airdate VARCHAR, writer_s_ VARCHAR, episode VARCHAR) ### Question: What is the original airdate for episode 7-17 (195) from writer Sidney Slon? ### Answer: SELECT original_airdate FROM table_name_5 WHERE writer_s_ = "sidney slon" AND episode = "7-17 (195)"
What is the date of the tournament played in Madrid, Spain?
CREATE TABLE table_name_90 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_90 WHERE tournament = "madrid, spain"
### Context: CREATE TABLE table_name_90 (date VARCHAR, tournament VARCHAR) ### Question: What is the date of the tournament played in Madrid, Spain? ### Answer: SELECT date FROM table_name_90 WHERE tournament = "madrid, spain"
What opponent has final as the round?
CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_34 WHERE round = "final"
### Context: CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR) ### Question: What opponent has final as the round? ### Answer: SELECT opponent FROM table_name_34 WHERE round = "final"
What round has hereford united as the opponent?
CREATE TABLE table_name_50 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_50 WHERE opponent = "hereford united"
### Context: CREATE TABLE table_name_50 (round VARCHAR, opponent VARCHAR) ### Question: What round has hereford united as the opponent? ### Answer: SELECT round FROM table_name_50 WHERE opponent = "hereford united"
Which Location /State has a Winner of craig lowndes, and a Date of 29–31 may?
CREATE TABLE table_name_67 (location___state VARCHAR, winner VARCHAR, date VARCHAR)
SELECT location___state FROM table_name_67 WHERE winner = "craig lowndes" AND date = "29–31 may"
### Context: CREATE TABLE table_name_67 (location___state VARCHAR, winner VARCHAR, date VARCHAR) ### Question: Which Location /State has a Winner of craig lowndes, and a Date of 29–31 may? ### Answer: SELECT location___state FROM table_name_67 WHERE winner = "craig lowndes" AND date = "29–31 may"
Which Team has a Winner of craig lowndes, and a Circuit of phillip island grand prix circuit?
CREATE TABLE table_name_69 (team VARCHAR, winner VARCHAR, circuit VARCHAR)
SELECT team FROM table_name_69 WHERE winner = "craig lowndes" AND circuit = "phillip island grand prix circuit"
### Context: CREATE TABLE table_name_69 (team VARCHAR, winner VARCHAR, circuit VARCHAR) ### Question: Which Team has a Winner of craig lowndes, and a Circuit of phillip island grand prix circuit? ### Answer: SELECT team FROM table_name_69 WHERE winner = "craig lowndes" AND circuit = "phillip island grand prix circuit"
Which Location/ State has a Date of 29–31 may?
CREATE TABLE table_name_36 (location___state VARCHAR, date VARCHAR)
SELECT location___state FROM table_name_36 WHERE date = "29–31 may"
### Context: CREATE TABLE table_name_36 (location___state VARCHAR, date VARCHAR) ### Question: Which Location/ State has a Date of 29–31 may? ### Answer: SELECT location___state FROM table_name_36 WHERE date = "29–31 may"
Who won at the Circuit of lakeside international raceway?
CREATE TABLE table_name_89 (winner VARCHAR, circuit VARCHAR)
SELECT winner FROM table_name_89 WHERE circuit = "lakeside international raceway"
### Context: CREATE TABLE table_name_89 (winner VARCHAR, circuit VARCHAR) ### Question: Who won at the Circuit of lakeside international raceway? ### Answer: SELECT winner FROM table_name_89 WHERE circuit = "lakeside international raceway"
What is the service charge of the boat howitzers with 456 made?
CREATE TABLE table_name_38 (service_charge VARCHAR, number_made VARCHAR)
SELECT service_charge FROM table_name_38 WHERE number_made = 456
### Context: CREATE TABLE table_name_38 (service_charge VARCHAR, number_made VARCHAR) ### Question: What is the service charge of the boat howitzers with 456 made? ### Answer: SELECT service_charge FROM table_name_38 WHERE number_made = 456
What is the service chage of the boat howitzers with a 12-pdr light destination?
CREATE TABLE table_name_42 (service_charge VARCHAR, designation VARCHAR)
SELECT service_charge FROM table_name_42 WHERE designation = "12-pdr light"
### Context: CREATE TABLE table_name_42 (service_charge VARCHAR, designation VARCHAR) ### Question: What is the service chage of the boat howitzers with a 12-pdr light destination? ### Answer: SELECT service_charge FROM table_name_42 WHERE designation = "12-pdr light"
What is the service charge of the boat howitzers with 1009 made?
CREATE TABLE table_name_9 (service_charge VARCHAR, number_made VARCHAR)
SELECT service_charge FROM table_name_9 WHERE number_made = 1009
### Context: CREATE TABLE table_name_9 (service_charge VARCHAR, number_made VARCHAR) ### Question: What is the service charge of the boat howitzers with 1009 made? ### Answer: SELECT service_charge FROM table_name_9 WHERE number_made = 1009
What is the bore of the boat howitzers with a 12-pdr heavy designation?
CREATE TABLE table_name_8 (bore VARCHAR, designation VARCHAR)
SELECT bore FROM table_name_8 WHERE designation = "12-pdr heavy"
### Context: CREATE TABLE table_name_8 (bore VARCHAR, designation VARCHAR) ### Question: What is the bore of the boat howitzers with a 12-pdr heavy designation? ### Answer: SELECT bore FROM table_name_8 WHERE designation = "12-pdr heavy"
Which attendance has 9 as the tie no.?
CREATE TABLE table_name_43 (attendance VARCHAR, tie_no VARCHAR)
SELECT attendance FROM table_name_43 WHERE tie_no = 9
### Context: CREATE TABLE table_name_43 (attendance VARCHAR, tie_no VARCHAR) ### Question: Which attendance has 9 as the tie no.? ### Answer: SELECT attendance FROM table_name_43 WHERE tie_no = 9
How many Picks have a Position of defensive end, and an Overall smaller than 33?
CREATE TABLE table_name_22 (pick__number VARCHAR, position VARCHAR, overall VARCHAR)
SELECT COUNT(pick__number) FROM table_name_22 WHERE position = "defensive end" AND overall < 33
### Context: CREATE TABLE table_name_22 (pick__number VARCHAR, position VARCHAR, overall VARCHAR) ### Question: How many Picks have a Position of defensive end, and an Overall smaller than 33? ### Answer: SELECT COUNT(pick__number) FROM table_name_22 WHERE position = "defensive end" AND overall < 33
Which Overall is the highest one that has a Name of gregory spann, and a Pick # larger than 19?
CREATE TABLE table_name_9 (overall INTEGER, name VARCHAR, pick__number VARCHAR)
SELECT MAX(overall) FROM table_name_9 WHERE name = "gregory spann" AND pick__number > 19
### Context: CREATE TABLE table_name_9 (overall INTEGER, name VARCHAR, pick__number VARCHAR) ### Question: Which Overall is the highest one that has a Name of gregory spann, and a Pick # larger than 19? ### Answer: SELECT MAX(overall) FROM table_name_9 WHERE name = "gregory spann" AND pick__number > 19
Which Pick # has a Round larger than 5, and a Position of wide receiver, and a Name of gregory spann, and an Overall larger than 228?
CREATE TABLE table_name_67 (pick__number INTEGER, overall VARCHAR, name VARCHAR, round VARCHAR, position VARCHAR)
SELECT AVG(pick__number) FROM table_name_67 WHERE round > 5 AND position = "wide receiver" AND name = "gregory spann" AND overall > 228
### Context: CREATE TABLE table_name_67 (pick__number INTEGER, overall VARCHAR, name VARCHAR, round VARCHAR, position VARCHAR) ### Question: Which Pick # has a Round larger than 5, and a Position of wide receiver, and a Name of gregory spann, and an Overall larger than 228? ### Answer: SELECT AVG(pick__number) FROM table_name_67 WHERE round > 5 AND position = "wide receiver" AND name = "gregory spann" AND overall > 228
What is the score from the 21-27 Record?
CREATE TABLE table_name_96 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_96 WHERE record = "21-27"
### Context: CREATE TABLE table_name_96 (score VARCHAR, record VARCHAR) ### Question: What is the score from the 21-27 Record? ### Answer: SELECT score FROM table_name_96 WHERE record = "21-27"
How many people attended the May 28 game?
CREATE TABLE table_name_99 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_99 WHERE date = "may 28"
### Context: CREATE TABLE table_name_99 (attendance VARCHAR, date VARCHAR) ### Question: How many people attended the May 28 game? ### Answer: SELECT attendance FROM table_name_99 WHERE date = "may 28"
What is the average drawn number of the team with less than 70 points and less than 46 played?
CREATE TABLE table_name_76 (drawn INTEGER, points VARCHAR, played VARCHAR)
SELECT AVG(drawn) FROM table_name_76 WHERE points < 70 AND played < 46
### Context: CREATE TABLE table_name_76 (drawn INTEGER, points VARCHAR, played VARCHAR) ### Question: What is the average drawn number of the team with less than 70 points and less than 46 played? ### Answer: SELECT AVG(drawn) FROM table_name_76 WHERE points < 70 AND played < 46
What is the highest position of the team with 24 lost and a drawn greater than 9?
CREATE TABLE table_name_62 (position INTEGER, lost VARCHAR, drawn VARCHAR)
SELECT MAX(position) FROM table_name_62 WHERE lost = 24 AND drawn > 9
### Context: CREATE TABLE table_name_62 (position INTEGER, lost VARCHAR, drawn VARCHAR) ### Question: What is the highest position of the team with 24 lost and a drawn greater than 9? ### Answer: SELECT MAX(position) FROM table_name_62 WHERE lost = 24 AND drawn > 9
How many Points has a Game of 82 and a April larger than 10?
CREATE TABLE table_name_11 (points INTEGER, game VARCHAR, april VARCHAR)
SELECT AVG(points) FROM table_name_11 WHERE game = 82 AND april > 10
### Context: CREATE TABLE table_name_11 (points INTEGER, game VARCHAR, april VARCHAR) ### Question: How many Points has a Game of 82 and a April larger than 10? ### Answer: SELECT AVG(points) FROM table_name_11 WHERE game = 82 AND april > 10
How many Games have a Score of 3–3 ot?
CREATE TABLE table_name_98 (game VARCHAR, score VARCHAR)
SELECT COUNT(game) FROM table_name_98 WHERE score = "3–3 ot"
### Context: CREATE TABLE table_name_98 (game VARCHAR, score VARCHAR) ### Question: How many Games have a Score of 3–3 ot? ### Answer: SELECT COUNT(game) FROM table_name_98 WHERE score = "3–3 ot"
Which April has a Game of 84
CREATE TABLE table_name_54 (april INTEGER, game VARCHAR)
SELECT MAX(april) FROM table_name_54 WHERE game = 84
### Context: CREATE TABLE table_name_54 (april INTEGER, game VARCHAR) ### Question: Which April has a Game of 84 ### Answer: SELECT MAX(april) FROM table_name_54 WHERE game = 84
what's the played status when the club was banwen rfc?
CREATE TABLE table_name_88 (played VARCHAR, club VARCHAR)
SELECT played FROM table_name_88 WHERE club = "banwen rfc"
### Context: CREATE TABLE table_name_88 (played VARCHAR, club VARCHAR) ### Question: what's the played status when the club was banwen rfc? ### Answer: SELECT played FROM table_name_88 WHERE club = "banwen rfc"