question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which Team Name has Poles of 0, and a Final Placing of 29th?
CREATE TABLE table_name_25 (team_name VARCHAR, poles VARCHAR, final_placing VARCHAR)
SELECT team_name FROM table_name_25 WHERE poles = "0" AND final_placing = "29th"
### Context: CREATE TABLE table_name_25 (team_name VARCHAR, poles VARCHAR, final_placing VARCHAR) ### Question: Which Team Name has Poles of 0, and a Final Placing of 29th? ### Answer: SELECT team_name FROM table_name_25 WHERE poles = "0" AND final_placing = "29th"
Which Series has a Final Placing of 9th, and Podiums of 2?
CREATE TABLE table_name_31 (series VARCHAR, final_placing VARCHAR, podiums VARCHAR)
SELECT series FROM table_name_31 WHERE final_placing = "9th" AND podiums = "2"
### Context: CREATE TABLE table_name_31 (series VARCHAR, final_placing VARCHAR, podiums VARCHAR) ### Question: Which Series has a Final Placing of 9th, and Podiums of 2? ### Answer: SELECT series FROM table_name_31 WHERE final_placing = "9th" AND podiums = "2"
Which Series has a Team Name of sunred engineering?
CREATE TABLE table_name_34 (series VARCHAR, team_name VARCHAR)
SELECT series FROM table_name_34 WHERE team_name = "sunred engineering"
### Context: CREATE TABLE table_name_34 (series VARCHAR, team_name VARCHAR) ### Question: Which Series has a Team Name of sunred engineering? ### Answer: SELECT series FROM table_name_34 WHERE team_name = "sunred engineering"
Which Points have Wins of 0, and a Final Placing of 21st?
CREATE TABLE table_name_38 (points VARCHAR, wins VARCHAR, final_placing VARCHAR)
SELECT points FROM table_name_38 WHERE wins = "0" AND final_placing = "21st"
### Context: CREATE TABLE table_name_38 (points VARCHAR, wins VARCHAR, final_placing VARCHAR) ### Question: Which Points have Wins of 0, and a Final Placing of 21st? ### Answer: SELECT points FROM table_name_38 WHERE wins = "0" AND final_placing = "21st"
Name the bronze for lahti
CREATE TABLE table_name_46 (bronze VARCHAR, place VARCHAR)
SELECT bronze FROM table_name_46 WHERE place = "lahti"
### Context: CREATE TABLE table_name_46 (bronze VARCHAR, place VARCHAR) ### Question: Name the bronze for lahti ### Answer: SELECT bronze FROM table_name_46 WHERE place = "lahti"
Which Rank has Goals larger than 10, and a Scorer of choi sang-kuk?
CREATE TABLE table_name_35 (rank VARCHAR, goals VARCHAR, scorer VARCHAR)
SELECT rank FROM table_name_35 WHERE goals > 10 AND scorer = "choi sang-kuk"
### Context: CREATE TABLE table_name_35 (rank VARCHAR, goals VARCHAR, scorer VARCHAR) ### Question: Which Rank has Goals larger than 10, and a Scorer of choi sang-kuk? ### Answer: SELECT rank FROM table_name_35 WHERE goals > 10 AND scorer = "choi sang-kuk"
Which Rank has a Scorer of lee sang-cheol?
CREATE TABLE table_name_69 (rank VARCHAR, scorer VARCHAR)
SELECT rank FROM table_name_69 WHERE scorer = "lee sang-cheol"
### Context: CREATE TABLE table_name_69 (rank VARCHAR, scorer VARCHAR) ### Question: Which Rank has a Scorer of lee sang-cheol? ### Answer: SELECT rank FROM table_name_69 WHERE scorer = "lee sang-cheol"
Which Club has a Rank of 5?
CREATE TABLE table_name_40 (club VARCHAR, rank VARCHAR)
SELECT club FROM table_name_40 WHERE rank = "5"
### Context: CREATE TABLE table_name_40 (club VARCHAR, rank VARCHAR) ### Question: Which Club has a Rank of 5? ### Answer: SELECT club FROM table_name_40 WHERE rank = "5"
How many original bills amendments cosponsored lower than 64,with the bill support withdrawn lower than 0?
CREATE TABLE table_name_50 (original_amendments_cosponsored INTEGER, all_bills_sponsored VARCHAR, bill_support_withdrawn VARCHAR)
SELECT MIN(original_amendments_cosponsored) FROM table_name_50 WHERE all_bills_sponsored < 64 AND bill_support_withdrawn < 0
### Context: CREATE TABLE table_name_50 (original_amendments_cosponsored INTEGER, all_bills_sponsored VARCHAR, bill_support_withdrawn VARCHAR) ### Question: How many original bills amendments cosponsored lower than 64,with the bill support withdrawn lower than 0? ### Answer: SELECT MIN(original_amendments_cosponsored) FROM table_name_50 WHERE all_bills_sponsored < 64 AND bill_support_withdrawn < 0
Who is the democratic incumbent that was re-elected?
CREATE TABLE table_name_55 (incumbent VARCHAR, status VARCHAR, party VARCHAR)
SELECT incumbent FROM table_name_55 WHERE status = "re-elected" AND party = "democratic"
### Context: CREATE TABLE table_name_55 (incumbent VARCHAR, status VARCHAR, party VARCHAR) ### Question: Who is the democratic incumbent that was re-elected? ### Answer: SELECT incumbent FROM table_name_55 WHERE status = "re-elected" AND party = "democratic"
What year was republican, re-elected incumbent John all barham elected?
CREATE TABLE table_name_92 (elected VARCHAR, incumbent VARCHAR, party VARCHAR, status VARCHAR)
SELECT elected FROM table_name_92 WHERE party = "republican" AND status = "re-elected" AND incumbent = "john all barham"
### Context: CREATE TABLE table_name_92 (elected VARCHAR, incumbent VARCHAR, party VARCHAR, status VARCHAR) ### Question: What year was republican, re-elected incumbent John all barham elected? ### Answer: SELECT elected FROM table_name_92 WHERE party = "republican" AND status = "re-elected" AND incumbent = "john all barham"
What day in october was game number 4 with under 3 points?
CREATE TABLE table_name_18 (october VARCHAR, game VARCHAR, points VARCHAR)
SELECT COUNT(october) FROM table_name_18 WHERE game = 4 AND points < 3
### Context: CREATE TABLE table_name_18 (october VARCHAR, game VARCHAR, points VARCHAR) ### Question: What day in october was game number 4 with under 3 points? ### Answer: SELECT COUNT(october) FROM table_name_18 WHERE game = 4 AND points < 3
Which school was the drafted player from in a pick larger than 181?
CREATE TABLE table_name_27 (school VARCHAR, pick INTEGER)
SELECT school FROM table_name_27 WHERE pick > 181
### Context: CREATE TABLE table_name_27 (school VARCHAR, pick INTEGER) ### Question: Which school was the drafted player from in a pick larger than 181? ### Answer: SELECT school FROM table_name_27 WHERE pick > 181
Which points against has 17 as the lost?
CREATE TABLE table_name_61 (points_against VARCHAR, lost VARCHAR)
SELECT points_against FROM table_name_61 WHERE lost = "17"
### Context: CREATE TABLE table_name_61 (points_against VARCHAR, lost VARCHAR) ### Question: Which points against has 17 as the lost? ### Answer: SELECT points_against FROM table_name_61 WHERE lost = "17"
What lost has 528 as the points?
CREATE TABLE table_name_78 (lost VARCHAR, points_for VARCHAR)
SELECT lost FROM table_name_78 WHERE points_for = "528"
### Context: CREATE TABLE table_name_78 (lost VARCHAR, points_for VARCHAR) ### Question: What lost has 528 as the points? ### Answer: SELECT lost FROM table_name_78 WHERE points_for = "528"
What is the drawn that has 16 as the trys bonus?
CREATE TABLE table_name_31 (drawn VARCHAR, try_bonus VARCHAR)
SELECT drawn FROM table_name_31 WHERE try_bonus = "16"
### Context: CREATE TABLE table_name_31 (drawn VARCHAR, try_bonus VARCHAR) ### Question: What is the drawn that has 16 as the trys bonus? ### Answer: SELECT drawn FROM table_name_31 WHERE try_bonus = "16"
What club has tries for in the category tries for?
CREATE TABLE table_name_64 (club VARCHAR, tries_for VARCHAR)
SELECT club FROM table_name_64 WHERE tries_for = "tries for"
### Context: CREATE TABLE table_name_64 (club VARCHAR, tries_for VARCHAR) ### Question: What club has tries for in the category tries for? ### Answer: SELECT club FROM table_name_64 WHERE tries_for = "tries for"
What is the drawn that has 22 for played, and 96 for points?
CREATE TABLE table_name_96 (drawn VARCHAR, played VARCHAR, points VARCHAR)
SELECT drawn FROM table_name_96 WHERE played = "22" AND points = "96"
### Context: CREATE TABLE table_name_96 (drawn VARCHAR, played VARCHAR, points VARCHAR) ### Question: What is the drawn that has 22 for played, and 96 for points? ### Answer: SELECT drawn FROM table_name_96 WHERE played = "22" AND points = "96"
What points have 1 for drawn, and 16 as a try bonus?
CREATE TABLE table_name_22 (points_for VARCHAR, drawn VARCHAR, try_bonus VARCHAR)
SELECT points_for FROM table_name_22 WHERE drawn = "1" AND try_bonus = "16"
### Context: CREATE TABLE table_name_22 (points_for VARCHAR, drawn VARCHAR, try_bonus VARCHAR) ### Question: What points have 1 for drawn, and 16 as a try bonus? ### Answer: SELECT points_for FROM table_name_22 WHERE drawn = "1" AND try_bonus = "16"
What is team 1 in group h?
CREATE TABLE table_name_45 (team__number1 VARCHAR, round VARCHAR)
SELECT team__number1 FROM table_name_45 WHERE round = "group h"
### Context: CREATE TABLE table_name_45 (team__number1 VARCHAR, round VARCHAR) ### Question: What is team 1 in group h? ### Answer: SELECT team__number1 FROM table_name_45 WHERE round = "group h"
What was the score on 15 march 2006?
CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_85 WHERE date = "15 march 2006"
### Context: CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR) ### Question: What was the score on 15 march 2006? ### Answer: SELECT score FROM table_name_85 WHERE date = "15 march 2006"
Which winning team has a winning pitcher of Chris Young and was played in Arlington?
CREATE TABLE table_name_46 (winning_team VARCHAR, winning_pitcher VARCHAR, location VARCHAR)
SELECT winning_team FROM table_name_46 WHERE winning_pitcher = "chris young" AND location = "arlington"
### Context: CREATE TABLE table_name_46 (winning_team VARCHAR, winning_pitcher VARCHAR, location VARCHAR) ### Question: Which winning team has a winning pitcher of Chris Young and was played in Arlington? ### Answer: SELECT winning_team FROM table_name_46 WHERE winning_pitcher = "chris young" AND location = "arlington"
What winning team has a losing pitcher of Juan Dominguez?
CREATE TABLE table_name_31 (winning_team VARCHAR, losing_pitcher VARCHAR)
SELECT winning_team FROM table_name_31 WHERE losing_pitcher = "juan dominguez"
### Context: CREATE TABLE table_name_31 (winning_team VARCHAR, losing_pitcher VARCHAR) ### Question: What winning team has a losing pitcher of Juan Dominguez? ### Answer: SELECT winning_team FROM table_name_31 WHERE losing_pitcher = "juan dominguez"
Who was the opponent on August 14?
CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_91 WHERE date = "august 14"
### Context: CREATE TABLE table_name_91 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on August 14? ### Answer: SELECT opponent FROM table_name_91 WHERE date = "august 14"
Which loss had a record of 79-49?
CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR)
SELECT loss FROM table_name_7 WHERE record = "79-49"
### Context: CREATE TABLE table_name_7 (loss VARCHAR, record VARCHAR) ### Question: Which loss had a record of 79-49? ### Answer: SELECT loss FROM table_name_7 WHERE record = "79-49"
What is the semi-final dual television commentator status of the year with Pierre Tchernia as the grand final television commentator and an unknown spokesperson?
CREATE TABLE table_name_96 (semi_final_dual_television_commentator VARCHAR, grand_final_television_commentator VARCHAR, spokesperson VARCHAR)
SELECT semi_final_dual_television_commentator FROM table_name_96 WHERE grand_final_television_commentator = "pierre tchernia" AND spokesperson = "unknown"
### Context: CREATE TABLE table_name_96 (semi_final_dual_television_commentator VARCHAR, grand_final_television_commentator VARCHAR, spokesperson VARCHAR) ### Question: What is the semi-final dual television commentator status of the year with Pierre Tchernia as the grand final television commentator and an unknown spokesperson? ### Answer: SELECT semi_final_dual_television_commentator FROM table_name_96 WHERE grand_final_television_commentator = "pierre tchernia" AND spokesperson = "unknown"
What is the semi-final television commentator status in 1962 with an unknown spokesperson?
CREATE TABLE table_name_54 (semi_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR)
SELECT semi_final_television_commentator FROM table_name_54 WHERE spokesperson = "unknown" AND year_s_ = 1962
### Context: CREATE TABLE table_name_54 (semi_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR) ### Question: What is the semi-final television commentator status in 1962 with an unknown spokesperson? ### Answer: SELECT semi_final_television_commentator FROM table_name_54 WHERE spokesperson = "unknown" AND year_s_ = 1962
What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson?
CREATE TABLE table_name_20 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR)
SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = "dave" AND spokesperson = "marie myriam"
### Context: CREATE TABLE table_name_20 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR) ### Question: What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson? ### Answer: SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = "dave" AND spokesperson = "marie myriam"
What is the grand final dual television commentator status of the year when Amaury Vassili was the spokesperson?
CREATE TABLE table_name_52 (grand_final_dual_television_commentator VARCHAR, spokesperson VARCHAR)
SELECT grand_final_dual_television_commentator FROM table_name_52 WHERE spokesperson = "amaury vassili"
### Context: CREATE TABLE table_name_52 (grand_final_dual_television_commentator VARCHAR, spokesperson VARCHAR) ### Question: What is the grand final dual television commentator status of the year when Amaury Vassili was the spokesperson? ### Answer: SELECT grand_final_dual_television_commentator FROM table_name_52 WHERE spokesperson = "amaury vassili"
What state has lincoln, de as the hometown?
CREATE TABLE table_name_73 (state VARCHAR, hometown VARCHAR)
SELECT state FROM table_name_73 WHERE hometown = "lincoln, de"
### Context: CREATE TABLE table_name_73 (state VARCHAR, hometown VARCHAR) ### Question: What state has lincoln, de as the hometown? ### Answer: SELECT state FROM table_name_73 WHERE hometown = "lincoln, de"
Name the ship with hull number of aor-6
CREATE TABLE table_name_89 (ship VARCHAR, hull_no VARCHAR)
SELECT ship FROM table_name_89 WHERE hull_no = "aor-6"
### Context: CREATE TABLE table_name_89 (ship VARCHAR, hull_no VARCHAR) ### Question: Name the ship with hull number of aor-6 ### Answer: SELECT ship FROM table_name_89 WHERE hull_no = "aor-6"
Name the hull number of Commissioned– Decommissioned of 1973–1996
CREATE TABLE table_name_29 (hull_no VARCHAR, commissioned__decommissioned VARCHAR)
SELECT hull_no FROM table_name_29 WHERE commissioned__decommissioned = "1973–1996"
### Context: CREATE TABLE table_name_29 (hull_no VARCHAR, commissioned__decommissioned VARCHAR) ### Question: Name the hull number of Commissioned– Decommissioned of 1973–1996 ### Answer: SELECT hull_no FROM table_name_29 WHERE commissioned__decommissioned = "1973–1996"
Name the commissioned-decommissioned for oakland and NVR page of aor-1
CREATE TABLE table_name_62 (commissioned__decommissioned VARCHAR, home_port VARCHAR, nvr_page VARCHAR)
SELECT commissioned__decommissioned FROM table_name_62 WHERE home_port = "oakland" AND nvr_page = "aor-1"
### Context: CREATE TABLE table_name_62 (commissioned__decommissioned VARCHAR, home_port VARCHAR, nvr_page VARCHAR) ### Question: Name the commissioned-decommissioned for oakland and NVR page of aor-1 ### Answer: SELECT commissioned__decommissioned FROM table_name_62 WHERE home_port = "oakland" AND nvr_page = "aor-1"
Name the home port for kansas city
CREATE TABLE table_name_15 (home_port VARCHAR, ship VARCHAR)
SELECT home_port FROM table_name_15 WHERE ship = "kansas city"
### Context: CREATE TABLE table_name_15 (home_port VARCHAR, ship VARCHAR) ### Question: Name the home port for kansas city ### Answer: SELECT home_port FROM table_name_15 WHERE ship = "kansas city"
Name the commissioned-decommissioned for NVR page of aor-7
CREATE TABLE table_name_17 (commissioned__decommissioned VARCHAR, nvr_page VARCHAR)
SELECT commissioned__decommissioned FROM table_name_17 WHERE nvr_page = "aor-7"
### Context: CREATE TABLE table_name_17 (commissioned__decommissioned VARCHAR, nvr_page VARCHAR) ### Question: Name the commissioned-decommissioned for NVR page of aor-7 ### Answer: SELECT commissioned__decommissioned FROM table_name_17 WHERE nvr_page = "aor-7"
Name the ship for oakland home port and NVR page of aor-3
CREATE TABLE table_name_28 (ship VARCHAR, home_port VARCHAR, nvr_page VARCHAR)
SELECT ship FROM table_name_28 WHERE home_port = "oakland" AND nvr_page = "aor-3"
### Context: CREATE TABLE table_name_28 (ship VARCHAR, home_port VARCHAR, nvr_page VARCHAR) ### Question: Name the ship for oakland home port and NVR page of aor-3 ### Answer: SELECT ship FROM table_name_28 WHERE home_port = "oakland" AND nvr_page = "aor-3"
What is the name of the location and ship type in the Gulf of Mexico that entered service in 1999?
CREATE TABLE table_name_43 (name VARCHAR, entered_service VARCHAR, location VARCHAR, type VARCHAR)
SELECT name FROM table_name_43 WHERE location = "gulf of mexico" AND type = "ship" AND entered_service = "1999"
### Context: CREATE TABLE table_name_43 (name VARCHAR, entered_service VARCHAR, location VARCHAR, type VARCHAR) ### Question: What is the name of the location and ship type in the Gulf of Mexico that entered service in 1999? ### Answer: SELECT name FROM table_name_43 WHERE location = "gulf of mexico" AND type = "ship" AND entered_service = "1999"
What was the water depth that entered service in 2001 named Cajun Express?
CREATE TABLE table_name_11 (water_depth VARCHAR, entered_service VARCHAR, name VARCHAR)
SELECT water_depth FROM table_name_11 WHERE entered_service = "2001" AND name = "cajun express"
### Context: CREATE TABLE table_name_11 (water_depth VARCHAR, entered_service VARCHAR, name VARCHAR) ### Question: What was the water depth that entered service in 2001 named Cajun Express? ### Answer: SELECT water_depth FROM table_name_11 WHERE entered_service = "2001" AND name = "cajun express"
What was the water depth in the Gulf of Mexico named Discoverer Clear Leader?
CREATE TABLE table_name_87 (water_depth VARCHAR, location VARCHAR, name VARCHAR)
SELECT water_depth FROM table_name_87 WHERE location = "gulf of mexico" AND name = "discoverer clear leader"
### Context: CREATE TABLE table_name_87 (water_depth VARCHAR, location VARCHAR, name VARCHAR) ### Question: What was the water depth in the Gulf of Mexico named Discoverer Clear Leader? ### Answer: SELECT water_depth FROM table_name_87 WHERE location = "gulf of mexico" AND name = "discoverer clear leader"
What is the name of a location in Nigeria?
CREATE TABLE table_name_28 (name VARCHAR, location VARCHAR)
SELECT name FROM table_name_28 WHERE location = "nigeria"
### Context: CREATE TABLE table_name_28 (name VARCHAR, location VARCHAR) ### Question: What is the name of a location in Nigeria? ### Answer: SELECT name FROM table_name_28 WHERE location = "nigeria"
What location entered service in 1999 and had a customer of Anadarko?
CREATE TABLE table_name_5 (location VARCHAR, entered_service VARCHAR, customer VARCHAR)
SELECT location FROM table_name_5 WHERE entered_service = "1999" AND customer = "anadarko"
### Context: CREATE TABLE table_name_5 (location VARCHAR, entered_service VARCHAR, customer VARCHAR) ### Question: What location entered service in 1999 and had a customer of Anadarko? ### Answer: SELECT location FROM table_name_5 WHERE entered_service = "1999" AND customer = "anadarko"
What was the Score on January 30?
CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_93 WHERE date = "january 30"
### Context: CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) ### Question: What was the Score on January 30? ### Answer: SELECT score FROM table_name_93 WHERE date = "january 30"
Who were the Visitor of the Toronto Maple Leafs Home game on December 22?
CREATE TABLE table_name_11 (visitor VARCHAR, home VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_11 WHERE home = "toronto maple leafs" AND date = "december 22"
### Context: CREATE TABLE table_name_11 (visitor VARCHAR, home VARCHAR, date VARCHAR) ### Question: Who were the Visitor of the Toronto Maple Leafs Home game on December 22? ### Answer: SELECT visitor FROM table_name_11 WHERE home = "toronto maple leafs" AND date = "december 22"
On what Date was the Record 9–6–4?
CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_62 WHERE record = "9–6–4"
### Context: CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR) ### Question: On what Date was the Record 9–6–4? ### Answer: SELECT date FROM table_name_62 WHERE record = "9–6–4"
What was the Score on March 1?
CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_18 WHERE date = "march 1"
### Context: CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR) ### Question: What was the Score on March 1? ### Answer: SELECT score FROM table_name_18 WHERE date = "march 1"
What is the primary conference that was founded before 1866 and has an affiliation of private/catholic?
CREATE TABLE table_name_58 (primary_conference VARCHAR, founded VARCHAR, affiliation VARCHAR)
SELECT primary_conference FROM table_name_58 WHERE founded < 1866 AND affiliation = "private/catholic"
### Context: CREATE TABLE table_name_58 (primary_conference VARCHAR, founded VARCHAR, affiliation VARCHAR) ### Question: What is the primary conference that was founded before 1866 and has an affiliation of private/catholic? ### Answer: SELECT primary_conference FROM table_name_58 WHERE founded < 1866 AND affiliation = "private/catholic"
What is the total enrollment for an affiliation of public, and was founded before 1866?
CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR)
SELECT COUNT(enrollment) FROM table_name_43 WHERE affiliation = "public" AND founded < 1866
### Context: CREATE TABLE table_name_43 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR) ### Question: What is the total enrollment for an affiliation of public, and was founded before 1866? ### Answer: SELECT COUNT(enrollment) FROM table_name_43 WHERE affiliation = "public" AND founded < 1866
What is the affiliation for towson, md?
CREATE TABLE table_name_37 (affiliation VARCHAR, location VARCHAR)
SELECT affiliation FROM table_name_37 WHERE location = "towson, md"
### Context: CREATE TABLE table_name_37 (affiliation VARCHAR, location VARCHAR) ### Question: What is the affiliation for towson, md? ### Answer: SELECT affiliation FROM table_name_37 WHERE location = "towson, md"
What is the total enrollment for a private/catholic affiliation and founded after 1842?
CREATE TABLE table_name_1 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR)
SELECT COUNT(enrollment) FROM table_name_1 WHERE affiliation = "private/catholic" AND founded > 1842
### Context: CREATE TABLE table_name_1 (enrollment VARCHAR, affiliation VARCHAR, founded VARCHAR) ### Question: What is the total enrollment for a private/catholic affiliation and founded after 1842? ### Answer: SELECT COUNT(enrollment) FROM table_name_1 WHERE affiliation = "private/catholic" AND founded > 1842
What is the number founded for the nickname mountain hawks?
CREATE TABLE table_name_68 (founded VARCHAR, nickname VARCHAR)
SELECT COUNT(founded) FROM table_name_68 WHERE nickname = "mountain hawks"
### Context: CREATE TABLE table_name_68 (founded VARCHAR, nickname VARCHAR) ### Question: What is the number founded for the nickname mountain hawks? ### Answer: SELECT COUNT(founded) FROM table_name_68 WHERE nickname = "mountain hawks"
What is the score of the season in the host city kėdainiai?
CREATE TABLE table_name_59 (score VARCHAR, host_city VARCHAR)
SELECT score FROM table_name_59 WHERE host_city = "kėdainiai"
### Context: CREATE TABLE table_name_59 (score VARCHAR, host_city VARCHAR) ### Question: What is the score of the season in the host city kėdainiai? ### Answer: SELECT score FROM table_name_59 WHERE host_city = "kėdainiai"
Who was the winner of the season before 2010 with Lietuvos Rytas as a finalist?
CREATE TABLE table_name_39 (winner VARCHAR, finalist VARCHAR, season VARCHAR)
SELECT winner FROM table_name_39 WHERE finalist = "lietuvos rytas" AND season < 2010
### Context: CREATE TABLE table_name_39 (winner VARCHAR, finalist VARCHAR, season VARCHAR) ### Question: Who was the winner of the season before 2010 with Lietuvos Rytas as a finalist? ### Answer: SELECT winner FROM table_name_39 WHERE finalist = "lietuvos rytas" AND season < 2010
Who was the finalist in the 2010 season in the host city tartu?
CREATE TABLE table_name_57 (finalist VARCHAR, host_city VARCHAR, season VARCHAR)
SELECT finalist FROM table_name_57 WHERE host_city = "tartu" AND season = 2010
### Context: CREATE TABLE table_name_57 (finalist VARCHAR, host_city VARCHAR, season VARCHAR) ### Question: Who was the finalist in the 2010 season in the host city tartu? ### Answer: SELECT finalist FROM table_name_57 WHERE host_city = "tartu" AND season = 2010
Who was the winner during the 2009 season?
CREATE TABLE table_name_42 (winner VARCHAR, season VARCHAR)
SELECT winner FROM table_name_42 WHERE season = 2009
### Context: CREATE TABLE table_name_42 (winner VARCHAR, season VARCHAR) ### Question: Who was the winner during the 2009 season? ### Answer: SELECT winner FROM table_name_42 WHERE season = 2009
What is the host city during the 2012 season?
CREATE TABLE table_name_47 (host_city VARCHAR, season VARCHAR)
SELECT host_city FROM table_name_47 WHERE season = 2012
### Context: CREATE TABLE table_name_47 (host_city VARCHAR, season VARCHAR) ### Question: What is the host city during the 2012 season? ### Answer: SELECT host_city FROM table_name_47 WHERE season = 2012
what game had a score of 4–6, 6–3, 7–6(10)?
CREATE TABLE table_name_54 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_54 WHERE score = "4–6, 6–3, 7–6(10)"
### Context: CREATE TABLE table_name_54 (tournament VARCHAR, score VARCHAR) ### Question: what game had a score of 4–6, 6–3, 7–6(10)? ### Answer: SELECT tournament FROM table_name_54 WHERE score = "4–6, 6–3, 7–6(10)"
When did eleonor magdalene of the palatinate-neuburg become duchess?
CREATE TABLE table_name_77 (became_duchess VARCHAR, name VARCHAR)
SELECT became_duchess FROM table_name_77 WHERE name = "eleonor magdalene of the palatinate-neuburg"
### Context: CREATE TABLE table_name_77 (became_duchess VARCHAR, name VARCHAR) ### Question: When did eleonor magdalene of the palatinate-neuburg become duchess? ### Answer: SELECT became_duchess FROM table_name_77 WHERE name = "eleonor magdalene of the palatinate-neuburg"
Which Marriage has a Became Duchess of 12 december 1666?
CREATE TABLE table_name_68 (marriage VARCHAR, became_duchess VARCHAR)
SELECT marriage FROM table_name_68 WHERE became_duchess = "12 december 1666"
### Context: CREATE TABLE table_name_68 (marriage VARCHAR, became_duchess VARCHAR) ### Question: Which Marriage has a Became Duchess of 12 december 1666? ### Answer: SELECT marriage FROM table_name_68 WHERE became_duchess = "12 december 1666"
When did the person die who was born on 18 november 1630?
CREATE TABLE table_name_3 (death VARCHAR, birth VARCHAR)
SELECT death FROM table_name_3 WHERE birth = "18 november 1630"
### Context: CREATE TABLE table_name_3 (death VARCHAR, birth VARCHAR) ### Question: When did the person die who was born on 18 november 1630? ### Answer: SELECT death FROM table_name_3 WHERE birth = "18 november 1630"
Which Birth has a Became Duchess of 17 april 1711 husband's ascension?
CREATE TABLE table_name_65 (birth VARCHAR, became_duchess VARCHAR)
SELECT birth FROM table_name_65 WHERE became_duchess = "17 april 1711 husband's ascension"
### Context: CREATE TABLE table_name_65 (birth VARCHAR, became_duchess VARCHAR) ### Question: Which Birth has a Became Duchess of 17 april 1711 husband's ascension? ### Answer: SELECT birth FROM table_name_65 WHERE became_duchess = "17 april 1711 husband's ascension"
Which Spouse has a Birth of 30 may 1653?
CREATE TABLE table_name_38 (spouse VARCHAR, birth VARCHAR)
SELECT spouse FROM table_name_38 WHERE birth = "30 may 1653"
### Context: CREATE TABLE table_name_38 (spouse VARCHAR, birth VARCHAR) ### Question: Which Spouse has a Birth of 30 may 1653? ### Answer: SELECT spouse FROM table_name_38 WHERE birth = "30 may 1653"
When did the person born on 6 january 1655 die?
CREATE TABLE table_name_34 (death VARCHAR, birth VARCHAR)
SELECT death FROM table_name_34 WHERE birth = "6 january 1655"
### Context: CREATE TABLE table_name_34 (death VARCHAR, birth VARCHAR) ### Question: When did the person born on 6 january 1655 die? ### Answer: SELECT death FROM table_name_34 WHERE birth = "6 january 1655"
Which Club or province has a caps larger than 15 and has Chris Cusiter playing for them?
CREATE TABLE table_name_88 (club_province VARCHAR, caps VARCHAR, player VARCHAR)
SELECT club_province FROM table_name_88 WHERE caps > 15 AND player = "chris cusiter"
### Context: CREATE TABLE table_name_88 (club_province VARCHAR, caps VARCHAR, player VARCHAR) ### Question: Which Club or province has a caps larger than 15 and has Chris Cusiter playing for them? ### Answer: SELECT club_province FROM table_name_88 WHERE caps > 15 AND player = "chris cusiter"
What is the date of birth for the player from Ulster and plays at Centre position?
CREATE TABLE table_name_26 (date_of_birth__age_ VARCHAR, club_province VARCHAR, position VARCHAR)
SELECT date_of_birth__age_ FROM table_name_26 WHERE club_province = "ulster" AND position = "centre"
### Context: CREATE TABLE table_name_26 (date_of_birth__age_ VARCHAR, club_province VARCHAR, position VARCHAR) ### Question: What is the date of birth for the player from Ulster and plays at Centre position? ### Answer: SELECT date_of_birth__age_ FROM table_name_26 WHERE club_province = "ulster" AND position = "centre"
What type of disaster is rms atlantic categorized in that was located in Nova Scotia?
CREATE TABLE table_name_62 (type VARCHAR, location VARCHAR, disaster VARCHAR)
SELECT type FROM table_name_62 WHERE location = "nova scotia" AND disaster = "rms atlantic"
### Context: CREATE TABLE table_name_62 (type VARCHAR, location VARCHAR, disaster VARCHAR) ### Question: What type of disaster is rms atlantic categorized in that was located in Nova Scotia? ### Answer: SELECT type FROM table_name_62 WHERE location = "nova scotia" AND disaster = "rms atlantic"
What is the type of disaster that the Arrow Air Flight 1285 categorized in?
CREATE TABLE table_name_55 (type VARCHAR, disaster VARCHAR)
SELECT type FROM table_name_55 WHERE disaster = "arrow air flight 1285"
### Context: CREATE TABLE table_name_55 (type VARCHAR, disaster VARCHAR) ### Question: What is the type of disaster that the Arrow Air Flight 1285 categorized in? ### Answer: SELECT type FROM table_name_55 WHERE disaster = "arrow air flight 1285"
What is the disaster that was located in Ontario with 223 deaths?
CREATE TABLE table_name_39 (disaster VARCHAR, location VARCHAR, deaths VARCHAR)
SELECT disaster FROM table_name_39 WHERE location = "ontario" AND deaths = "223"
### Context: CREATE TABLE table_name_39 (disaster VARCHAR, location VARCHAR, deaths VARCHAR) ### Question: What is the disaster that was located in Ontario with 223 deaths? ### Answer: SELECT disaster FROM table_name_39 WHERE location = "ontario" AND deaths = "223"
How many deaths were there during the shipwreck in 1873?
CREATE TABLE table_name_56 (deaths VARCHAR, type VARCHAR, date VARCHAR)
SELECT deaths FROM table_name_56 WHERE type = "shipwreck" AND date = "1873"
### Context: CREATE TABLE table_name_56 (deaths VARCHAR, type VARCHAR, date VARCHAR) ### Question: How many deaths were there during the shipwreck in 1873? ### Answer: SELECT deaths FROM table_name_56 WHERE type = "shipwreck" AND date = "1873"
Where was the disaster located that took place on 1916?
CREATE TABLE table_name_49 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_49 WHERE date = "1916"
### Context: CREATE TABLE table_name_49 (location VARCHAR, date VARCHAR) ### Question: Where was the disaster located that took place on 1916? ### Answer: SELECT location FROM table_name_49 WHERE date = "1916"
Which Laps is the highest one that has a Time/Retired of +3.370 secs?
CREATE TABLE table_name_52 (laps INTEGER, time_retired VARCHAR)
SELECT MAX(laps) FROM table_name_52 WHERE time_retired = "+3.370 secs"
### Context: CREATE TABLE table_name_52 (laps INTEGER, time_retired VARCHAR) ### Question: Which Laps is the highest one that has a Time/Retired of +3.370 secs? ### Answer: SELECT MAX(laps) FROM table_name_52 WHERE time_retired = "+3.370 secs"
Which Grid has a Team of rusport, and Laps larger than 221?
CREATE TABLE table_name_62 (grid INTEGER, team VARCHAR, laps VARCHAR)
SELECT SUM(grid) FROM table_name_62 WHERE team = "rusport" AND laps > 221
### Context: CREATE TABLE table_name_62 (grid INTEGER, team VARCHAR, laps VARCHAR) ### Question: Which Grid has a Team of rusport, and Laps larger than 221? ### Answer: SELECT SUM(grid) FROM table_name_62 WHERE team = "rusport" AND laps > 221
What title has a producer of MAQ and Anna as a role?
CREATE TABLE table_name_18 (title VARCHAR, producer VARCHAR, role VARCHAR)
SELECT title FROM table_name_18 WHERE producer = "maq" AND role = "anna"
### Context: CREATE TABLE table_name_18 (title VARCHAR, producer VARCHAR, role VARCHAR) ### Question: What title has a producer of MAQ and Anna as a role? ### Answer: SELECT title FROM table_name_18 WHERE producer = "maq" AND role = "anna"
How many years was Kay Tagal Kang Hinintay directed by Rory Quintos and produced by Star Cinema?
CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR, producer VARCHAR, director VARCHAR)
SELECT COUNT(year) FROM table_name_94 WHERE producer = "star cinema" AND director = "rory quintos" AND title = "kay tagal kang hinintay"
### Context: CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR, producer VARCHAR, director VARCHAR) ### Question: How many years was Kay Tagal Kang Hinintay directed by Rory Quintos and produced by Star Cinema? ### Answer: SELECT COUNT(year) FROM table_name_94 WHERE producer = "star cinema" AND director = "rory quintos" AND title = "kay tagal kang hinintay"
Which title was directed by Joyce Bernal?
CREATE TABLE table_name_76 (title VARCHAR, director VARCHAR)
SELECT title FROM table_name_76 WHERE director = "joyce bernal"
### Context: CREATE TABLE table_name_76 (title VARCHAR, director VARCHAR) ### Question: Which title was directed by Joyce Bernal? ### Answer: SELECT title FROM table_name_76 WHERE director = "joyce bernal"
What song is it that artist morena camilleri does and has more than 38 points
CREATE TABLE table_name_46 (song VARCHAR, points VARCHAR, artist VARCHAR)
SELECT song FROM table_name_46 WHERE points > 38 AND artist = "morena camilleri"
### Context: CREATE TABLE table_name_46 (song VARCHAR, points VARCHAR, artist VARCHAR) ### Question: What song is it that artist morena camilleri does and has more than 38 points ### Answer: SELECT song FROM table_name_46 WHERE points > 38 AND artist = "morena camilleri"
What is the total number of points for ray agius
CREATE TABLE table_name_15 (points INTEGER, lyricist VARCHAR)
SELECT SUM(points) FROM table_name_15 WHERE lyricist = "ray agius"
### Context: CREATE TABLE table_name_15 (points INTEGER, lyricist VARCHAR) ### Question: What is the total number of points for ray agius ### Answer: SELECT SUM(points) FROM table_name_15 WHERE lyricist = "ray agius"
What play did henry s. uber / betty uber (eng) finish in?
CREATE TABLE table_name_99 (place VARCHAR, name VARCHAR)
SELECT COUNT(place) FROM table_name_99 WHERE name = "henry s. uber / betty uber (eng)"
### Context: CREATE TABLE table_name_99 (place VARCHAR, name VARCHAR) ### Question: What play did henry s. uber / betty uber (eng) finish in? ### Answer: SELECT COUNT(place) FROM table_name_99 WHERE name = "henry s. uber / betty uber (eng)"
When Baltimore County, Howard are represented, what's the first elected when the committee is environmental matters (vice-chair)?
CREATE TABLE table_name_37 (first_elected INTEGER, counties_represented VARCHAR, committee VARCHAR)
SELECT MAX(first_elected) FROM table_name_37 WHERE counties_represented = "baltimore county, howard" AND committee = "environmental matters (vice-chair)"
### Context: CREATE TABLE table_name_37 (first_elected INTEGER, counties_represented VARCHAR, committee VARCHAR) ### Question: When Baltimore County, Howard are represented, what's the first elected when the committee is environmental matters (vice-chair)? ### Answer: SELECT MAX(first_elected) FROM table_name_37 WHERE counties_represented = "baltimore county, howard" AND committee = "environmental matters (vice-chair)"
What party is the delegate of Turner, Frank S. Frank S. Turner of Howard County?
CREATE TABLE table_name_50 (party VARCHAR, counties_represented VARCHAR, delegate VARCHAR)
SELECT party FROM table_name_50 WHERE counties_represented = "howard" AND delegate = "turner, frank s. frank s. turner"
### Context: CREATE TABLE table_name_50 (party VARCHAR, counties_represented VARCHAR, delegate VARCHAR) ### Question: What party is the delegate of Turner, Frank S. Frank S. Turner of Howard County? ### Answer: SELECT party FROM table_name_50 WHERE counties_represented = "howard" AND delegate = "turner, frank s. frank s. turner"
What is the damage of storm three?
CREATE TABLE table_name_58 (damage__millions_usd__ VARCHAR, storm_name VARCHAR)
SELECT damage__millions_usd__ FROM table_name_58 WHERE storm_name = "three"
### Context: CREATE TABLE table_name_58 (damage__millions_usd__ VARCHAR, storm_name VARCHAR) ### Question: What is the damage of storm three? ### Answer: SELECT damage__millions_usd__ FROM table_name_58 WHERE storm_name = "three"
Which Round is the lowest one that has a Circuit of donington?
CREATE TABLE table_name_18 (round INTEGER, circuit VARCHAR)
SELECT MIN(round) FROM table_name_18 WHERE circuit = "donington"
### Context: CREATE TABLE table_name_18 (round INTEGER, circuit VARCHAR) ### Question: Which Round is the lowest one that has a Circuit of donington? ### Answer: SELECT MIN(round) FROM table_name_18 WHERE circuit = "donington"
Which 250cc winner has a Round larger than 6, and a Date of 26 july?
CREATE TABLE table_name_5 (round VARCHAR, date VARCHAR)
SELECT 250 AS cc_winner FROM table_name_5 WHERE round > 6 AND date = "26 july"
### Context: CREATE TABLE table_name_5 (round VARCHAR, date VARCHAR) ### Question: Which 250cc winner has a Round larger than 6, and a Date of 26 july? ### Answer: SELECT 250 AS cc_winner FROM table_name_5 WHERE round > 6 AND date = "26 july"
Attendance of 48,510 had what highest week?
CREATE TABLE table_name_30 (week INTEGER, attendance VARCHAR)
SELECT MAX(week) FROM table_name_30 WHERE attendance = 48 OFFSET 510
### Context: CREATE TABLE table_name_30 (week INTEGER, attendance VARCHAR) ### Question: Attendance of 48,510 had what highest week? ### Answer: SELECT MAX(week) FROM table_name_30 WHERE attendance = 48 OFFSET 510
Opponent of at san francisco 49ers had what lowest week?
CREATE TABLE table_name_43 (week INTEGER, opponent VARCHAR)
SELECT MIN(week) FROM table_name_43 WHERE opponent = "at san francisco 49ers"
### Context: CREATE TABLE table_name_43 (week INTEGER, opponent VARCHAR) ### Question: Opponent of at san francisco 49ers had what lowest week? ### Answer: SELECT MIN(week) FROM table_name_43 WHERE opponent = "at san francisco 49ers"
On what Date is the Minnesota Vikings the Opponent?
CREATE TABLE table_name_71 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_71 WHERE opponent = "minnesota vikings"
### Context: CREATE TABLE table_name_71 (date VARCHAR, opponent VARCHAR) ### Question: On what Date is the Minnesota Vikings the Opponent? ### Answer: SELECT date FROM table_name_71 WHERE opponent = "minnesota vikings"
What is the Date of Week 5?
CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_3 WHERE week = 5
### Context: CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR) ### Question: What is the Date of Week 5? ### Answer: SELECT date FROM table_name_3 WHERE week = 5
What is the Date of Week 2?
CREATE TABLE table_name_47 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_47 WHERE week = 2
### Context: CREATE TABLE table_name_47 (date VARCHAR, week VARCHAR) ### Question: What is the Date of Week 2? ### Answer: SELECT date FROM table_name_47 WHERE week = 2
What was the score when the game has a loss of Lary (10-12)?
CREATE TABLE table_name_18 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_18 WHERE loss = "lary (10-12)"
### Context: CREATE TABLE table_name_18 (score VARCHAR, loss VARCHAR) ### Question: What was the score when the game has a loss of Lary (10-12)? ### Answer: SELECT score FROM table_name_18 WHERE loss = "lary (10-12)"
What is the result of the friendly match?
CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR)
SELECT result FROM table_name_37 WHERE competition = "friendly"
### Context: CREATE TABLE table_name_37 (result VARCHAR, competition VARCHAR) ### Question: What is the result of the friendly match? ### Answer: SELECT result FROM table_name_37 WHERE competition = "friendly"
What is the score of the match on June 4, 2008?
CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_76 WHERE date = "june 4, 2008"
### Context: CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) ### Question: What is the score of the match on June 4, 2008? ### Answer: SELECT score FROM table_name_76 WHERE date = "june 4, 2008"
Which Year is the lowest one that has a Length of 3:50?
CREATE TABLE table_name_17 (year INTEGER, length VARCHAR)
SELECT MIN(year) FROM table_name_17 WHERE length = "3:50"
### Context: CREATE TABLE table_name_17 (year INTEGER, length VARCHAR) ### Question: Which Year is the lowest one that has a Length of 3:50? ### Answer: SELECT MIN(year) FROM table_name_17 WHERE length = "3:50"
Which Length has a Year of 2000?
CREATE TABLE table_name_13 (length VARCHAR, year VARCHAR)
SELECT length FROM table_name_13 WHERE year = 2000
### Context: CREATE TABLE table_name_13 (length VARCHAR, year VARCHAR) ### Question: Which Length has a Year of 2000? ### Answer: SELECT length FROM table_name_13 WHERE year = 2000
In what place is the artist Midnight Band with a draw larger than 2 and less than 139 points.
CREATE TABLE table_name_7 (place VARCHAR, artist VARCHAR, draw VARCHAR, points VARCHAR)
SELECT place FROM table_name_7 WHERE draw > 2 AND points < 139 AND artist = "midnight band"
### Context: CREATE TABLE table_name_7 (place VARCHAR, artist VARCHAR, draw VARCHAR, points VARCHAR) ### Question: In what place is the artist Midnight Band with a draw larger than 2 and less than 139 points. ### Answer: SELECT place FROM table_name_7 WHERE draw > 2 AND points < 139 AND artist = "midnight band"
what player matched up with 9
CREATE TABLE table_name_78 (player VARCHAR, matches VARCHAR)
SELECT player FROM table_name_78 WHERE matches = "9"
### Context: CREATE TABLE table_name_78 (player VARCHAR, matches VARCHAR) ### Question: what player matched up with 9 ### Answer: SELECT player FROM table_name_78 WHERE matches = "9"
What is the 2nd leg of the Internacional Team 1?
CREATE TABLE table_name_48 (team_1 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_48 WHERE team_1 = "internacional"
### Context: CREATE TABLE table_name_48 (team_1 VARCHAR) ### Question: What is the 2nd leg of the Internacional Team 1? ### Answer: SELECT 2 AS nd_leg FROM table_name_48 WHERE team_1 = "internacional"
Which City has a Country of spain, and a Stadium of palacio de deportes de santander?
CREATE TABLE table_name_57 (city VARCHAR, country VARCHAR, stadium VARCHAR)
SELECT city FROM table_name_57 WHERE country = "spain" AND stadium = "palacio de deportes de santander"
### Context: CREATE TABLE table_name_57 (city VARCHAR, country VARCHAR, stadium VARCHAR) ### Question: Which City has a Country of spain, and a Stadium of palacio de deportes de santander? ### Answer: SELECT city FROM table_name_57 WHERE country = "spain" AND stadium = "palacio de deportes de santander"
Which Capacity is the lowest one that has a Rank smaller than 15, and a City of belgrade?
CREATE TABLE table_name_76 (capacity INTEGER, rank VARCHAR, city VARCHAR)
SELECT MIN(capacity) FROM table_name_76 WHERE rank < 15 AND city = "belgrade"
### Context: CREATE TABLE table_name_76 (capacity INTEGER, rank VARCHAR, city VARCHAR) ### Question: Which Capacity is the lowest one that has a Rank smaller than 15, and a City of belgrade? ### Answer: SELECT MIN(capacity) FROM table_name_76 WHERE rank < 15 AND city = "belgrade"
Which Capacity is the lowest one that has a City of brisbane, and a Rank smaller than 1?
CREATE TABLE table_name_96 (capacity INTEGER, city VARCHAR, rank VARCHAR)
SELECT MIN(capacity) FROM table_name_96 WHERE city = "brisbane" AND rank < 1
### Context: CREATE TABLE table_name_96 (capacity INTEGER, city VARCHAR, rank VARCHAR) ### Question: Which Capacity is the lowest one that has a City of brisbane, and a Rank smaller than 1? ### Answer: SELECT MIN(capacity) FROM table_name_96 WHERE city = "brisbane" AND rank < 1
What are the total points that had 68 match points, 9 bonus points and 30 games?
CREATE TABLE table_name_29 (total_points VARCHAR, match_points VARCHAR, games VARCHAR, bonus_points VARCHAR)
SELECT total_points FROM table_name_29 WHERE games = "30" AND bonus_points = "9" AND match_points = "68"
### Context: CREATE TABLE table_name_29 (total_points VARCHAR, match_points VARCHAR, games VARCHAR, bonus_points VARCHAR) ### Question: What are the total points that had 68 match points, 9 bonus points and 30 games? ### Answer: SELECT total_points FROM table_name_29 WHERE games = "30" AND bonus_points = "9" AND match_points = "68"
What's the shortest length from north klondike highway that has a length less than 326?
CREATE TABLE table_name_38 (length__km_ INTEGER, name VARCHAR, length__mi_ VARCHAR)
SELECT MIN(length__km_) FROM table_name_38 WHERE name = "north klondike highway" AND length__mi_ < 326
### Context: CREATE TABLE table_name_38 (length__km_ INTEGER, name VARCHAR, length__mi_ VARCHAR) ### Question: What's the shortest length from north klondike highway that has a length less than 326? ### Answer: SELECT MIN(length__km_) FROM table_name_38 WHERE name = "north klondike highway" AND length__mi_ < 326