question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which Position has a DOB of 13 may 1987?
CREATE TABLE table_name_21 (position VARCHAR, dob VARCHAR)
SELECT position FROM table_name_21 WHERE dob = "13 may 1987"
### Context: CREATE TABLE table_name_21 (position VARCHAR, dob VARCHAR) ### Question: Which Position has a DOB of 13 may 1987? ### Answer: SELECT position FROM table_name_21 WHERE dob = "13 may 1987"
Which Bats have Throws of r, and a DOB of 22 may 1973?
CREATE TABLE table_name_49 (bats VARCHAR, throws VARCHAR, dob VARCHAR)
SELECT bats FROM table_name_49 WHERE throws = "r" AND dob = "22 may 1973"
### Context: CREATE TABLE table_name_49 (bats VARCHAR, throws VARCHAR, dob VARCHAR) ### Question: Which Bats have Throws of r, and a DOB of 22 may 1973? ### Answer: SELECT bats FROM table_name_49 WHERE throws = "r" AND dob = "22 may 1973"
Which Croatia has a Friendly of world cup 2006 qualifier, and a 149 of 152?
CREATE TABLE table_name_53 (croatia VARCHAR, friendly VARCHAR)
SELECT croatia FROM table_name_53 WHERE friendly = "world cup 2006 qualifier" AND 149 = 152
### Context: CREATE TABLE table_name_53 (croatia VARCHAR, friendly VARCHAR) ### Question: Which Croatia has a Friendly of world cup 2006 qualifier, and a 149 of 152? ### Answer: SELECT croatia FROM table_name_53 WHERE friendly = "world cup 2006 qualifier" AND 149 = 152
For which production company did Sam Mccarthy produce?
CREATE TABLE table_name_61 (production_company VARCHAR, producer_s_ VARCHAR)
SELECT production_company FROM table_name_61 WHERE producer_s_ = "sam mccarthy"
### Context: CREATE TABLE table_name_61 (production_company VARCHAR, producer_s_ VARCHAR) ### Question: For which production company did Sam Mccarthy produce? ### Answer: SELECT production_company FROM table_name_61 WHERE producer_s_ = "sam mccarthy"
Who was the director that worked with Dana Dorian as the writer?
CREATE TABLE table_name_44 (director_s_ VARCHAR, writer_s_ VARCHAR)
SELECT director_s_ FROM table_name_44 WHERE writer_s_ = "dana dorian"
### Context: CREATE TABLE table_name_44 (director_s_ VARCHAR, writer_s_ VARCHAR) ### Question: Who was the director that worked with Dana Dorian as the writer? ### Answer: SELECT director_s_ FROM table_name_44 WHERE writer_s_ = "dana dorian"
Which film, directed by Dana Dorian, was nominated?
CREATE TABLE table_name_40 (film VARCHAR, rank VARCHAR, director_s_ VARCHAR)
SELECT film FROM table_name_40 WHERE rank = "nominated" AND director_s_ = "dana dorian"
### Context: CREATE TABLE table_name_40 (film VARCHAR, rank VARCHAR, director_s_ VARCHAR) ### Question: Which film, directed by Dana Dorian, was nominated? ### Answer: SELECT film FROM table_name_40 WHERE rank = "nominated" AND director_s_ = "dana dorian"
What is the sum for December against the vancouver canucks earlier than game 33?
CREATE TABLE table_name_59 (december INTEGER, opponent VARCHAR, game VARCHAR)
SELECT SUM(december) FROM table_name_59 WHERE opponent = "vancouver canucks" AND game < 33
### Context: CREATE TABLE table_name_59 (december INTEGER, opponent VARCHAR, game VARCHAR) ### Question: What is the sum for December against the vancouver canucks earlier than game 33? ### Answer: SELECT SUM(december) FROM table_name_59 WHERE opponent = "vancouver canucks" AND game < 33
What is the sum for December when the record was 22-12-5?
CREATE TABLE table_name_56 (december INTEGER, record VARCHAR)
SELECT SUM(december) FROM table_name_56 WHERE record = "22-12-5"
### Context: CREATE TABLE table_name_56 (december INTEGER, record VARCHAR) ### Question: What is the sum for December when the record was 22-12-5? ### Answer: SELECT SUM(december) FROM table_name_56 WHERE record = "22-12-5"
When is the earliest year associated with team norton and 0 wins?
CREATE TABLE table_name_12 (year INTEGER, team VARCHAR, wins VARCHAR)
SELECT MIN(year) FROM table_name_12 WHERE team = "norton" AND wins < 0
### Context: CREATE TABLE table_name_12 (year INTEGER, team VARCHAR, wins VARCHAR) ### Question: When is the earliest year associated with team norton and 0 wins? ### Answer: SELECT MIN(year) FROM table_name_12 WHERE team = "norton" AND wins < 0
What is the year that there were 0 wins, team AJS, and under 12 points?
CREATE TABLE table_name_42 (year VARCHAR, points VARCHAR, wins VARCHAR, team VARCHAR)
SELECT COUNT(year) FROM table_name_42 WHERE wins = 0 AND team = "ajs" AND points < 12
### Context: CREATE TABLE table_name_42 (year VARCHAR, points VARCHAR, wins VARCHAR, team VARCHAR) ### Question: What is the year that there were 0 wins, team AJS, and under 12 points? ### Answer: SELECT COUNT(year) FROM table_name_42 WHERE wins = 0 AND team = "ajs" AND points < 12
What year is associated with a drama desk award ceremony and a Category of outstanding featured actress in a musical?
CREATE TABLE table_name_96 (year INTEGER, award_ceremony VARCHAR, category VARCHAR)
SELECT AVG(year) FROM table_name_96 WHERE award_ceremony = "drama desk award" AND category = "outstanding featured actress in a musical"
### Context: CREATE TABLE table_name_96 (year INTEGER, award_ceremony VARCHAR, category VARCHAR) ### Question: What year is associated with a drama desk award ceremony and a Category of outstanding featured actress in a musical? ### Answer: SELECT AVG(year) FROM table_name_96 WHERE award_ceremony = "drama desk award" AND category = "outstanding featured actress in a musical"
What is the average Loss for the long of more than 12 with a name of opponents with a Gain larger than 1751?
CREATE TABLE table_name_26 (loss INTEGER, gain VARCHAR, long VARCHAR, name VARCHAR)
SELECT AVG(loss) FROM table_name_26 WHERE long > 12 AND name = "opponents" AND gain > 1751
### Context: CREATE TABLE table_name_26 (loss INTEGER, gain VARCHAR, long VARCHAR, name VARCHAR) ### Question: What is the average Loss for the long of more than 12 with a name of opponents with a Gain larger than 1751? ### Answer: SELECT AVG(loss) FROM table_name_26 WHERE long > 12 AND name = "opponents" AND gain > 1751
Who was the winner/2nd place finisher in the Caulfield Guineas?
CREATE TABLE table_name_18 (winner_2nd VARCHAR, race VARCHAR)
SELECT winner_2nd FROM table_name_18 WHERE race = "caulfield guineas"
### Context: CREATE TABLE table_name_18 (winner_2nd VARCHAR, race VARCHAR) ### Question: Who was the winner/2nd place finisher in the Caulfield Guineas? ### Answer: SELECT winner_2nd FROM table_name_18 WHERE race = "caulfield guineas"
Which jockey had a group of G3?
CREATE TABLE table_name_76 (jockey VARCHAR, group VARCHAR)
SELECT jockey FROM table_name_76 WHERE group = "g3"
### Context: CREATE TABLE table_name_76 (jockey VARCHAR, group VARCHAR) ### Question: Which jockey had a group of G3? ### Answer: SELECT jockey FROM table_name_76 WHERE group = "g3"
What was the time for the G2 group at the Hobartville Stakes?
CREATE TABLE table_name_62 (time VARCHAR, group VARCHAR, race VARCHAR)
SELECT time FROM table_name_62 WHERE group = "g2" AND race = "hobartville stakes"
### Context: CREATE TABLE table_name_62 (time VARCHAR, group VARCHAR, race VARCHAR) ### Question: What was the time for the G2 group at the Hobartville Stakes? ### Answer: SELECT time FROM table_name_62 WHERE group = "g2" AND race = "hobartville stakes"
Which airport has perth as the city?
CREATE TABLE table_name_39 (airport VARCHAR, city VARCHAR)
SELECT airport FROM table_name_39 WHERE city = "perth"
### Context: CREATE TABLE table_name_39 (airport VARCHAR, city VARCHAR) ### Question: Which airport has perth as the city? ### Answer: SELECT airport FROM table_name_39 WHERE city = "perth"
Which city has tasmania as the state/territory and a ICAO of ymhb?
CREATE TABLE table_name_24 (city VARCHAR, state_territory VARCHAR, icao VARCHAR)
SELECT city FROM table_name_24 WHERE state_territory = "tasmania" AND icao = "ymhb"
### Context: CREATE TABLE table_name_24 (city VARCHAR, state_territory VARCHAR, icao VARCHAR) ### Question: Which city has tasmania as the state/territory and a ICAO of ymhb? ### Answer: SELECT city FROM table_name_24 WHERE state_territory = "tasmania" AND icao = "ymhb"
Which airport has an ICAO of ybcg?
CREATE TABLE table_name_11 (airport VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_11 WHERE icao = "ybcg"
### Context: CREATE TABLE table_name_11 (airport VARCHAR, icao VARCHAR) ### Question: Which airport has an ICAO of ybcg? ### Answer: SELECT airport FROM table_name_11 WHERE icao = "ybcg"
What is the IATA that has new south wales as the state/territory beginning on july 2009?
CREATE TABLE table_name_1 (iata VARCHAR, state_territory VARCHAR, begin VARCHAR)
SELECT iata FROM table_name_1 WHERE state_territory = "new south wales" AND begin = "july 2009"
### Context: CREATE TABLE table_name_1 (iata VARCHAR, state_territory VARCHAR, begin VARCHAR) ### Question: What is the IATA that has new south wales as the state/territory beginning on july 2009? ### Answer: SELECT iata FROM table_name_1 WHERE state_territory = "new south wales" AND begin = "july 2009"
What IATA has queensland as the state/territory and an ICAO of ybrk?
CREATE TABLE table_name_30 (iata VARCHAR, state_territory VARCHAR, icao VARCHAR)
SELECT iata FROM table_name_30 WHERE state_territory = "queensland" AND icao = "ybrk"
### Context: CREATE TABLE table_name_30 (iata VARCHAR, state_territory VARCHAR, icao VARCHAR) ### Question: What IATA has queensland as the state/territory and an ICAO of ybrk? ### Answer: SELECT iata FROM table_name_30 WHERE state_territory = "queensland" AND icao = "ybrk"
What begin has victoria as the state/territory and a ICA0 of ymml?
CREATE TABLE table_name_18 (begin VARCHAR, state_territory VARCHAR, icao VARCHAR)
SELECT begin FROM table_name_18 WHERE state_territory = "victoria" AND icao = "ymml"
### Context: CREATE TABLE table_name_18 (begin VARCHAR, state_territory VARCHAR, icao VARCHAR) ### Question: What begin has victoria as the state/territory and a ICA0 of ymml? ### Answer: SELECT begin FROM table_name_18 WHERE state_territory = "victoria" AND icao = "ymml"
Who was the visitor on March 27?
CREATE TABLE table_name_59 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_59 WHERE date = "march 27"
### Context: CREATE TABLE table_name_59 (visitor VARCHAR, date VARCHAR) ### Question: Who was the visitor on March 27? ### Answer: SELECT visitor FROM table_name_59 WHERE date = "march 27"
What was the record on March 14?
CREATE TABLE table_name_30 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_30 WHERE date = "march 14"
### Context: CREATE TABLE table_name_30 (record VARCHAR, date VARCHAR) ### Question: What was the record on March 14? ### Answer: SELECT record FROM table_name_30 WHERE date = "march 14"
What format is at frequency 99.5 FM?
CREATE TABLE table_name_14 (format VARCHAR, frequency VARCHAR)
SELECT format FROM table_name_14 WHERE frequency = "99.5 fm"
### Context: CREATE TABLE table_name_14 (format VARCHAR, frequency VARCHAR) ### Question: What format is at frequency 99.5 FM? ### Answer: SELECT format FROM table_name_14 WHERE frequency = "99.5 fm"
What format has the call sign DZFE?
CREATE TABLE table_name_42 (format VARCHAR, call_sign VARCHAR)
SELECT format FROM table_name_42 WHERE call_sign = "dzfe"
### Context: CREATE TABLE table_name_42 (format VARCHAR, call_sign VARCHAR) ### Question: What format has the call sign DZFE? ### Answer: SELECT format FROM table_name_42 WHERE call_sign = "dzfe"
What covered location has a frequency of 90.7 FM
CREATE TABLE table_name_32 (covered_location VARCHAR, frequency VARCHAR)
SELECT covered_location FROM table_name_32 WHERE frequency = "90.7 fm"
### Context: CREATE TABLE table_name_32 (covered_location VARCHAR, frequency VARCHAR) ### Question: What covered location has a frequency of 90.7 FM ### Answer: SELECT covered_location FROM table_name_32 WHERE frequency = "90.7 fm"
What is the frequency of 104.3 business radio?
CREATE TABLE table_name_95 (frequency VARCHAR, name VARCHAR)
SELECT frequency FROM table_name_95 WHERE name = "104.3 business radio"
### Context: CREATE TABLE table_name_95 (frequency VARCHAR, name VARCHAR) ### Question: What is the frequency of 104.3 business radio? ### Answer: SELECT frequency FROM table_name_95 WHERE name = "104.3 business radio"
What name has the call sign DWYS?
CREATE TABLE table_name_40 (name VARCHAR, call_sign VARCHAR)
SELECT name FROM table_name_40 WHERE call_sign = "dwys"
### Context: CREATE TABLE table_name_40 (name VARCHAR, call_sign VARCHAR) ### Question: What name has the call sign DWYS? ### Answer: SELECT name FROM table_name_40 WHERE call_sign = "dwys"
Who has a DCSF number of 3373?
CREATE TABLE table_name_19 (name VARCHAR, dcsf_number VARCHAR)
SELECT name FROM table_name_19 WHERE dcsf_number = 3373
### Context: CREATE TABLE table_name_19 (name VARCHAR, dcsf_number VARCHAR) ### Question: Who has a DCSF number of 3373? ### Answer: SELECT name FROM table_name_19 WHERE dcsf_number = 3373
What is the average primary intake with an Ofsted number of 117433 and a DCSF number greater than 3335?
CREATE TABLE table_name_62 (intake INTEGER, dcsf_number VARCHAR, type VARCHAR, ofsted_number VARCHAR)
SELECT AVG(intake) FROM table_name_62 WHERE type = "primary" AND ofsted_number = 117433 AND dcsf_number > 3335
### Context: CREATE TABLE table_name_62 (intake INTEGER, dcsf_number VARCHAR, type VARCHAR, ofsted_number VARCHAR) ### Question: What is the average primary intake with an Ofsted number of 117433 and a DCSF number greater than 3335? ### Answer: SELECT AVG(intake) FROM table_name_62 WHERE type = "primary" AND ofsted_number = 117433 AND dcsf_number > 3335
What is the lowest Ofsted number for a primary with a CE faith, intake of 30 and a DCSF number lower than 3349?
CREATE TABLE table_name_72 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR, faith VARCHAR)
SELECT MIN(ofsted_number) FROM table_name_72 WHERE type = "primary" AND faith = "ce" AND intake = 30 AND dcsf_number < 3349
### Context: CREATE TABLE table_name_72 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR, faith VARCHAR) ### Question: What is the lowest Ofsted number for a primary with a CE faith, intake of 30 and a DCSF number lower than 3349? ### Answer: SELECT MIN(ofsted_number) FROM table_name_72 WHERE type = "primary" AND faith = "ce" AND intake = 30 AND dcsf_number < 3349
Can you tell me the Opponent that has the Result of w 37-14?
CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_25 WHERE result = "w 37-14"
### Context: CREATE TABLE table_name_25 (opponent VARCHAR, result VARCHAR) ### Question: Can you tell me the Opponent that has the Result of w 37-14? ### Answer: SELECT opponent FROM table_name_25 WHERE result = "w 37-14"
Can you tell me the Opponent that has the Date of october 11, 1953?
CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_62 WHERE date = "october 11, 1953"
### Context: CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR) ### Question: Can you tell me the Opponent that has the Date of october 11, 1953? ### Answer: SELECT opponent FROM table_name_62 WHERE date = "october 11, 1953"
What year was the West Coast League established than the championships are greater than 0?
CREATE TABLE table_name_32 (established VARCHAR, championships VARCHAR, league VARCHAR)
SELECT established FROM table_name_32 WHERE championships > 0 AND league = "west coast league"
### Context: CREATE TABLE table_name_32 (established VARCHAR, championships VARCHAR, league VARCHAR) ### Question: What year was the West Coast League established than the championships are greater than 0? ### Answer: SELECT established FROM table_name_32 WHERE championships > 0 AND league = "west coast league"
During the Apple Bowl having 0 championships, what was the established year?
CREATE TABLE table_name_65 (established INTEGER, championships VARCHAR, venue VARCHAR)
SELECT MAX(established) FROM table_name_65 WHERE championships = 0 AND venue = "apple bowl"
### Context: CREATE TABLE table_name_65 (established INTEGER, championships VARCHAR, venue VARCHAR) ### Question: During the Apple Bowl having 0 championships, what was the established year? ### Answer: SELECT MAX(established) FROM table_name_65 WHERE championships = 0 AND venue = "apple bowl"
What sport happened at Wildcat Stadium?
CREATE TABLE table_name_3 (sport VARCHAR, venue VARCHAR)
SELECT sport FROM table_name_3 WHERE venue = "wildcat stadium"
### Context: CREATE TABLE table_name_3 (sport VARCHAR, venue VARCHAR) ### Question: What sport happened at Wildcat Stadium? ### Answer: SELECT sport FROM table_name_3 WHERE venue = "wildcat stadium"
How many championships does Evergreen Premier League have?
CREATE TABLE table_name_48 (championships INTEGER, league VARCHAR)
SELECT MAX(championships) FROM table_name_48 WHERE league = "evergreen premier league"
### Context: CREATE TABLE table_name_48 (championships INTEGER, league VARCHAR) ### Question: How many championships does Evergreen Premier League have? ### Answer: SELECT MAX(championships) FROM table_name_48 WHERE league = "evergreen premier league"
Which Position has a Round larger than 10, and a Name of shawn mccarthy?
CREATE TABLE table_name_36 (position VARCHAR, round VARCHAR, name VARCHAR)
SELECT position FROM table_name_36 WHERE round > 10 AND name = "shawn mccarthy"
### Context: CREATE TABLE table_name_36 (position VARCHAR, round VARCHAR, name VARCHAR) ### Question: Which Position has a Round larger than 10, and a Name of shawn mccarthy? ### Answer: SELECT position FROM table_name_36 WHERE round > 10 AND name = "shawn mccarthy"
How many Pick #s have a Name of tory epps, and a Round larger than 8?
CREATE TABLE table_name_96 (pick__number VARCHAR, name VARCHAR, round VARCHAR)
SELECT COUNT(pick__number) FROM table_name_96 WHERE name = "tory epps" AND round > 8
### Context: CREATE TABLE table_name_96 (pick__number VARCHAR, name VARCHAR, round VARCHAR) ### Question: How many Pick #s have a Name of tory epps, and a Round larger than 8? ### Answer: SELECT COUNT(pick__number) FROM table_name_96 WHERE name = "tory epps" AND round > 8
Which team was the visitor with a record of 5-2-0?
CREATE TABLE table_name_41 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_41 WHERE record = "5-2-0"
### Context: CREATE TABLE table_name_41 (visitor VARCHAR, record VARCHAR) ### Question: Which team was the visitor with a record of 5-2-0? ### Answer: SELECT visitor FROM table_name_41 WHERE record = "5-2-0"
What is the score for the November 3 game?
CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_10 WHERE date = "november 3"
### Context: CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR) ### Question: What is the score for the November 3 game? ### Answer: SELECT score FROM table_name_10 WHERE date = "november 3"
What percent of others did ogm/news count when MARTIN had 9%?
CREATE TABLE table_name_33 (others VARCHAR, martin VARCHAR, source VARCHAR)
SELECT others FROM table_name_33 WHERE martin = "9%" AND source = "ogm/news"
### Context: CREATE TABLE table_name_33 (others VARCHAR, martin VARCHAR, source VARCHAR) ### Question: What percent of others did ogm/news count when MARTIN had 9%? ### Answer: SELECT others FROM table_name_33 WHERE martin = "9%" AND source = "ogm/news"
What is the Undecided the others was 4%?
CREATE TABLE table_name_70 (undecided VARCHAR, others VARCHAR)
SELECT undecided FROM table_name_70 WHERE others = "4%"
### Context: CREATE TABLE table_name_70 (undecided VARCHAR, others VARCHAR) ### Question: What is the Undecided the others was 4%? ### Answer: SELECT undecided FROM table_name_70 WHERE others = "4%"
What is the Undecided on 2009-05-24?
CREATE TABLE table_name_66 (undecided VARCHAR, date VARCHAR)
SELECT undecided FROM table_name_66 WHERE date = "2009-05-24"
### Context: CREATE TABLE table_name_66 (undecided VARCHAR, date VARCHAR) ### Question: What is the Undecided on 2009-05-24? ### Answer: SELECT undecided FROM table_name_66 WHERE date = "2009-05-24"
What is the Date that has MARTIN of 7–9% and no Undecided?
CREATE TABLE table_name_93 (date VARCHAR, undecided VARCHAR, martin VARCHAR)
SELECT date FROM table_name_93 WHERE undecided = "–" AND martin = "7–9%"
### Context: CREATE TABLE table_name_93 (date VARCHAR, undecided VARCHAR, martin VARCHAR) ### Question: What is the Date that has MARTIN of 7–9% and no Undecided? ### Answer: SELECT date FROM table_name_93 WHERE undecided = "–" AND martin = "7–9%"
What is the Date when MARTIN had 8%?
CREATE TABLE table_name_21 (date VARCHAR, martin VARCHAR)
SELECT date FROM table_name_21 WHERE martin = "8%"
### Context: CREATE TABLE table_name_21 (date VARCHAR, martin VARCHAR) ### Question: What is the Date when MARTIN had 8%? ### Answer: SELECT date FROM table_name_21 WHERE martin = "8%"
Which Attendance has a Game smaller than 3, and a Date of october 31?
CREATE TABLE table_name_49 (attendance VARCHAR, game VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_49 WHERE game < 3 AND date = "october 31"
### Context: CREATE TABLE table_name_49 (attendance VARCHAR, game VARCHAR, date VARCHAR) ### Question: Which Attendance has a Game smaller than 3, and a Date of october 31? ### Answer: SELECT COUNT(attendance) FROM table_name_49 WHERE game < 3 AND date = "october 31"
What is rank of player Charles Eady and a Bowling of 12/63?
CREATE TABLE table_name_2 (rank VARCHAR, player VARCHAR, bowling VARCHAR)
SELECT rank FROM table_name_2 WHERE player = "charles eady" AND bowling = "12/63"
### Context: CREATE TABLE table_name_2 (rank VARCHAR, player VARCHAR, bowling VARCHAR) ### Question: What is rank of player Charles Eady and a Bowling of 12/63? ### Answer: SELECT rank FROM table_name_2 WHERE player = "charles eady" AND bowling = "12/63"
Who was the Opponent partnering with Jordan Kerr, on a hard surface that was the winner?
CREATE TABLE table_name_18 (opponent VARCHAR, partnering VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT opponent FROM table_name_18 WHERE surface = "hard" AND outcome = "winner" AND partnering = "jordan kerr"
### Context: CREATE TABLE table_name_18 (opponent VARCHAR, partnering VARCHAR, surface VARCHAR, outcome VARCHAR) ### Question: Who was the Opponent partnering with Jordan Kerr, on a hard surface that was the winner? ### Answer: SELECT opponent FROM table_name_18 WHERE surface = "hard" AND outcome = "winner" AND partnering = "jordan kerr"
What's the Year Average that has a Power of BHP (KW) and Trim of LS/2LT?
CREATE TABLE table_name_25 (year INTEGER, power VARCHAR, trim VARCHAR)
SELECT AVG(year) FROM table_name_25 WHERE power = "bhp (kw)" AND trim = "ls/2lt"
### Context: CREATE TABLE table_name_25 (year INTEGER, power VARCHAR, trim VARCHAR) ### Question: What's the Year Average that has a Power of BHP (KW) and Trim of LS/2LT? ### Answer: SELECT AVG(year) FROM table_name_25 WHERE power = "bhp (kw)" AND trim = "ls/2lt"
Which Engine has a Year that's Larger than 2006 and Power of BHP (KW)?
CREATE TABLE table_name_8 (engine VARCHAR, year VARCHAR, power VARCHAR)
SELECT engine FROM table_name_8 WHERE year > 2006 AND power = "bhp (kw)"
### Context: CREATE TABLE table_name_8 (engine VARCHAR, year VARCHAR, power VARCHAR) ### Question: Which Engine has a Year that's Larger than 2006 and Power of BHP (KW)? ### Answer: SELECT engine FROM table_name_8 WHERE year > 2006 AND power = "bhp (kw)"
What Torque has a Power of HP (KW)?
CREATE TABLE table_name_21 (torque VARCHAR, power VARCHAR)
SELECT torque FROM table_name_21 WHERE power = "hp (kw)"
### Context: CREATE TABLE table_name_21 (torque VARCHAR, power VARCHAR) ### Question: What Torque has a Power of HP (KW)? ### Answer: SELECT torque FROM table_name_21 WHERE power = "hp (kw)"
What's the Year average that's got Trim of LS/LT and Power of HP (KW)?
CREATE TABLE table_name_51 (year INTEGER, trim VARCHAR, power VARCHAR)
SELECT AVG(year) FROM table_name_51 WHERE trim = "ls/lt" AND power = "hp (kw)"
### Context: CREATE TABLE table_name_51 (year INTEGER, trim VARCHAR, power VARCHAR) ### Question: What's the Year average that's got Trim of LS/LT and Power of HP (KW)? ### Answer: SELECT AVG(year) FROM table_name_51 WHERE trim = "ls/lt" AND power = "hp (kw)"
Name the college with overall of 17
CREATE TABLE table_name_65 (college VARCHAR, overall VARCHAR)
SELECT college FROM table_name_65 WHERE overall = 17
### Context: CREATE TABLE table_name_65 (college VARCHAR, overall VARCHAR) ### Question: Name the college with overall of 17 ### Answer: SELECT college FROM table_name_65 WHERE overall = 17
Name the least overall for tony baker
CREATE TABLE table_name_15 (overall INTEGER, name VARCHAR)
SELECT MIN(overall) FROM table_name_15 WHERE name = "tony baker"
### Context: CREATE TABLE table_name_15 (overall INTEGER, name VARCHAR) ### Question: Name the least overall for tony baker ### Answer: SELECT MIN(overall) FROM table_name_15 WHERE name = "tony baker"
Who was the visiting team when Winnipeg was the home team?
CREATE TABLE table_name_33 (visitor VARCHAR, home VARCHAR)
SELECT visitor FROM table_name_33 WHERE home = "winnipeg"
### Context: CREATE TABLE table_name_33 (visitor VARCHAR, home VARCHAR) ### Question: Who was the visiting team when Winnipeg was the home team? ### Answer: SELECT visitor FROM table_name_33 WHERE home = "winnipeg"
What was the score of the game with a decision of Peeters and a record of 29–3–11?
CREATE TABLE table_name_25 (score VARCHAR, decision VARCHAR, record VARCHAR)
SELECT score FROM table_name_25 WHERE decision = "peeters" AND record = "29–3–11"
### Context: CREATE TABLE table_name_25 (score VARCHAR, decision VARCHAR, record VARCHAR) ### Question: What was the score of the game with a decision of Peeters and a record of 29–3–11? ### Answer: SELECT score FROM table_name_25 WHERE decision = "peeters" AND record = "29–3–11"
What is the Label of Catalogue # HVNLP26CD from United Kingdom?
CREATE TABLE table_name_14 (label VARCHAR, country VARCHAR, catalogue__number VARCHAR)
SELECT label FROM table_name_14 WHERE country = "united kingdom" AND catalogue__number = "hvnlp26cd"
### Context: CREATE TABLE table_name_14 (label VARCHAR, country VARCHAR, catalogue__number VARCHAR) ### Question: What is the Label of Catalogue # HVNLP26CD from United Kingdom? ### Answer: SELECT label FROM table_name_14 WHERE country = "united kingdom" AND catalogue__number = "hvnlp26cd"
What Country is Catalogue # ASW 50248 (724385024825) from?
CREATE TABLE table_name_77 (country VARCHAR, catalogue__number VARCHAR)
SELECT country FROM table_name_77 WHERE catalogue__number = "asw 50248 (724385024825)"
### Context: CREATE TABLE table_name_77 (country VARCHAR, catalogue__number VARCHAR) ### Question: What Country is Catalogue # ASW 50248 (724385024825) from? ### Answer: SELECT country FROM table_name_77 WHERE catalogue__number = "asw 50248 (724385024825)"
Who is the winning team of the South Pacific Trophy?
CREATE TABLE table_name_22 (winning_team VARCHAR, name VARCHAR)
SELECT winning_team FROM table_name_22 WHERE name = "south pacific trophy"
### Context: CREATE TABLE table_name_22 (winning_team VARCHAR, name VARCHAR) ### Question: Who is the winning team of the South Pacific Trophy? ### Answer: SELECT winning_team FROM table_name_22 WHERE name = "south pacific trophy"
Loss of gonzález (0–3) had what attendance?
CREATE TABLE table_name_32 (attendance VARCHAR, loss VARCHAR)
SELECT attendance FROM table_name_32 WHERE loss = "gonzález (0–3)"
### Context: CREATE TABLE table_name_32 (attendance VARCHAR, loss VARCHAR) ### Question: Loss of gonzález (0–3) had what attendance? ### Answer: SELECT attendance FROM table_name_32 WHERE loss = "gonzález (0–3)"
Record of 92–70 had what date?
CREATE TABLE table_name_70 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_70 WHERE record = "92–70"
### Context: CREATE TABLE table_name_70 (date VARCHAR, record VARCHAR) ### Question: Record of 92–70 had what date? ### Answer: SELECT date FROM table_name_70 WHERE record = "92–70"
Loss of kendrick (11–8) had what record?
CREATE TABLE table_name_54 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_54 WHERE loss = "kendrick (11–8)"
### Context: CREATE TABLE table_name_54 (record VARCHAR, loss VARCHAR) ### Question: Loss of kendrick (11–8) had what record? ### Answer: SELECT record FROM table_name_54 WHERE loss = "kendrick (11–8)"
Date of september 28 had what record?
CREATE TABLE table_name_12 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_12 WHERE date = "september 28"
### Context: CREATE TABLE table_name_12 (record VARCHAR, date VARCHAR) ### Question: Date of september 28 had what record? ### Answer: SELECT record FROM table_name_12 WHERE date = "september 28"
Attendance of 23,150 had what opponent?
CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_49 WHERE attendance = "23,150"
### Context: CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR) ### Question: Attendance of 23,150 had what opponent? ### Answer: SELECT opponent FROM table_name_49 WHERE attendance = "23,150"
Attendance of 36,796 had what score?
CREATE TABLE table_name_46 (score VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_46 WHERE attendance = "36,796"
### Context: CREATE TABLE table_name_46 (score VARCHAR, attendance VARCHAR) ### Question: Attendance of 36,796 had what score? ### Answer: SELECT score FROM table_name_46 WHERE attendance = "36,796"
What is the sum of Long for derrick locke?
CREATE TABLE table_name_30 (long INTEGER, name VARCHAR)
SELECT SUM(long) FROM table_name_30 WHERE name = "derrick locke"
### Context: CREATE TABLE table_name_30 (long INTEGER, name VARCHAR) ### Question: What is the sum of Long for derrick locke? ### Answer: SELECT SUM(long) FROM table_name_30 WHERE name = "derrick locke"
What is the lowest Loss with Gain larger than 319 for derrick locke?
CREATE TABLE table_name_10 (loss INTEGER, name VARCHAR, gain VARCHAR)
SELECT MIN(loss) FROM table_name_10 WHERE name = "derrick locke" AND gain > 319
### Context: CREATE TABLE table_name_10 (loss INTEGER, name VARCHAR, gain VARCHAR) ### Question: What is the lowest Loss with Gain larger than 319 for derrick locke? ### Answer: SELECT MIN(loss) FROM table_name_10 WHERE name = "derrick locke" AND gain > 319
Head Coach of wojciech kamiński is what club?
CREATE TABLE table_name_96 (club VARCHAR, head_coach VARCHAR)
SELECT club FROM table_name_96 WHERE head_coach = "wojciech kamiński"
### Context: CREATE TABLE table_name_96 (club VARCHAR, head_coach VARCHAR) ### Question: Head Coach of wojciech kamiński is what club? ### Answer: SELECT club FROM table_name_96 WHERE head_coach = "wojciech kamiński"
Sport of football, and a Venue of stadion polonii is what league?
CREATE TABLE table_name_20 (league VARCHAR, sport VARCHAR, venue VARCHAR)
SELECT league FROM table_name_20 WHERE sport = "football" AND venue = "stadion polonii"
### Context: CREATE TABLE table_name_20 (league VARCHAR, sport VARCHAR, venue VARCHAR) ### Question: Sport of football, and a Venue of stadion polonii is what league? ### Answer: SELECT league FROM table_name_20 WHERE sport = "football" AND venue = "stadion polonii"
Sport of gaelic football and hurling is what league?
CREATE TABLE table_name_8 (league VARCHAR, sport VARCHAR)
SELECT league FROM table_name_8 WHERE sport = "gaelic football and hurling"
### Context: CREATE TABLE table_name_8 (league VARCHAR, sport VARCHAR) ### Question: Sport of gaelic football and hurling is what league? ### Answer: SELECT league FROM table_name_8 WHERE sport = "gaelic football and hurling"
Venue of Pepsi arena involved what club?
CREATE TABLE table_name_34 (club VARCHAR, venue VARCHAR)
SELECT club FROM table_name_34 WHERE venue = "pepsi arena"
### Context: CREATE TABLE table_name_34 (club VARCHAR, venue VARCHAR) ### Question: Venue of Pepsi arena involved what club? ### Answer: SELECT club FROM table_name_34 WHERE venue = "pepsi arena"
What is the highest earnings for Tom watson who had a ranking larger than 2?
CREATE TABLE table_name_26 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)
SELECT MAX(earnings___) AS $__ FROM table_name_26 WHERE player = "tom watson" AND rank > 2
### Context: CREATE TABLE table_name_26 (earnings___ INTEGER, player VARCHAR, rank VARCHAR) ### Question: What is the highest earnings for Tom watson who had a ranking larger than 2? ### Answer: SELECT MAX(earnings___) AS $__ FROM table_name_26 WHERE player = "tom watson" AND rank > 2
What is the highest earnings for curtis strange?
CREATE TABLE table_name_60 (earnings___ INTEGER, player VARCHAR)
SELECT MAX(earnings___) AS $__ FROM table_name_60 WHERE player = "curtis strange"
### Context: CREATE TABLE table_name_60 (earnings___ INTEGER, player VARCHAR) ### Question: What is the highest earnings for curtis strange? ### Answer: SELECT MAX(earnings___) AS $__ FROM table_name_60 WHERE player = "curtis strange"
What is the average year with an average start smaller than 6.3 and fewer than 0 wins?
CREATE TABLE table_name_89 (year INTEGER, avg_start VARCHAR, wins VARCHAR)
SELECT AVG(year) FROM table_name_89 WHERE avg_start < 6.3 AND wins < 0
### Context: CREATE TABLE table_name_89 (year INTEGER, avg_start VARCHAR, wins VARCHAR) ### Question: What is the average year with an average start smaller than 6.3 and fewer than 0 wins? ### Answer: SELECT AVG(year) FROM table_name_89 WHERE avg_start < 6.3 AND wins < 0
Which Second has a Skip of barbora vojtusova?
CREATE TABLE table_name_27 (second VARCHAR, skip VARCHAR)
SELECT second FROM table_name_27 WHERE skip = "barbora vojtusova"
### Context: CREATE TABLE table_name_27 (second VARCHAR, skip VARCHAR) ### Question: Which Second has a Skip of barbora vojtusova? ### Answer: SELECT second FROM table_name_27 WHERE skip = "barbora vojtusova"
Which Skip did marju velga lead?
CREATE TABLE table_name_22 (skip VARCHAR, lead VARCHAR)
SELECT skip FROM table_name_22 WHERE lead = "marju velga"
### Context: CREATE TABLE table_name_22 (skip VARCHAR, lead VARCHAR) ### Question: Which Skip did marju velga lead? ### Answer: SELECT skip FROM table_name_22 WHERE lead = "marju velga"
Which Lead has a Second of katrin kuusk?
CREATE TABLE table_name_23 (lead VARCHAR, second VARCHAR)
SELECT lead FROM table_name_23 WHERE second = "katrin kuusk"
### Context: CREATE TABLE table_name_23 (lead VARCHAR, second VARCHAR) ### Question: Which Lead has a Second of katrin kuusk? ### Answer: SELECT lead FROM table_name_23 WHERE second = "katrin kuusk"
Which Third has a Skip of ellen vogt?
CREATE TABLE table_name_58 (third VARCHAR, skip VARCHAR)
SELECT third FROM table_name_58 WHERE skip = "ellen vogt"
### Context: CREATE TABLE table_name_58 (third VARCHAR, skip VARCHAR) ### Question: Which Third has a Skip of ellen vogt? ### Answer: SELECT third FROM table_name_58 WHERE skip = "ellen vogt"
Which Third has a Second of agnieszka ogrodniczek?
CREATE TABLE table_name_11 (third VARCHAR, second VARCHAR)
SELECT third FROM table_name_11 WHERE second = "agnieszka ogrodniczek"
### Context: CREATE TABLE table_name_11 (third VARCHAR, second VARCHAR) ### Question: Which Third has a Second of agnieszka ogrodniczek? ### Answer: SELECT third FROM table_name_11 WHERE second = "agnieszka ogrodniczek"
What is Spain's skip?
CREATE TABLE table_name_92 (skip VARCHAR, nation VARCHAR)
SELECT skip FROM table_name_92 WHERE nation = "spain"
### Context: CREATE TABLE table_name_92 (skip VARCHAR, nation VARCHAR) ### Question: What is Spain's skip? ### Answer: SELECT skip FROM table_name_92 WHERE nation = "spain"
What is the Per capita income associated with a Median household income of $55,800?
CREATE TABLE table_name_49 (per_capita_income VARCHAR, median_household_income VARCHAR)
SELECT per_capita_income FROM table_name_49 WHERE median_household_income = "$55,800"
### Context: CREATE TABLE table_name_49 (per_capita_income VARCHAR, median_household_income VARCHAR) ### Question: What is the Per capita income associated with a Median household income of $55,800? ### Answer: SELECT per_capita_income FROM table_name_49 WHERE median_household_income = "$55,800"
What was the margin of victory at the Texas International Open?
CREATE TABLE table_name_44 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_44 WHERE tournament = "texas international open"
### Context: CREATE TABLE table_name_44 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What was the margin of victory at the Texas International Open? ### Answer: SELECT margin_of_victory FROM table_name_44 WHERE tournament = "texas international open"
What was the margin of victory in the tournament with a winning score of −3 (74-68-72-71=285)?
CREATE TABLE table_name_60 (margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT margin_of_victory FROM table_name_60 WHERE winning_score = −3(74 - 68 - 72 - 71 = 285)
### Context: CREATE TABLE table_name_60 (margin_of_victory VARCHAR, winning_score VARCHAR) ### Question: What was the margin of victory in the tournament with a winning score of −3 (74-68-72-71=285)? ### Answer: SELECT margin_of_victory FROM table_name_60 WHERE winning_score = −3(74 - 68 - 72 - 71 = 285)
Which Avg/G has an Effic larger than 129.73, and a Cmp-Att-Int of 333-500-13?
CREATE TABLE table_name_63 (avg_g INTEGER, effic VARCHAR, cmp_att_int VARCHAR)
SELECT SUM(avg_g) FROM table_name_63 WHERE effic > 129.73 AND cmp_att_int = "333-500-13"
### Context: CREATE TABLE table_name_63 (avg_g INTEGER, effic VARCHAR, cmp_att_int VARCHAR) ### Question: Which Avg/G has an Effic larger than 129.73, and a Cmp-Att-Int of 333-500-13? ### Answer: SELECT SUM(avg_g) FROM table_name_63 WHERE effic > 129.73 AND cmp_att_int = "333-500-13"
Which Effic is the highest one that has an Avg/G smaller than 305.6, and a GP-GS of 13-13?
CREATE TABLE table_name_56 (effic INTEGER, avg_g VARCHAR, gp_gs VARCHAR)
SELECT MAX(effic) FROM table_name_56 WHERE avg_g < 305.6 AND gp_gs = "13-13"
### Context: CREATE TABLE table_name_56 (effic INTEGER, avg_g VARCHAR, gp_gs VARCHAR) ### Question: Which Effic is the highest one that has an Avg/G smaller than 305.6, and a GP-GS of 13-13? ### Answer: SELECT MAX(effic) FROM table_name_56 WHERE avg_g < 305.6 AND gp_gs = "13-13"
Which Avg/G that has a Name of opponents, and an Effic smaller than 129.73?
CREATE TABLE table_name_69 (avg_g INTEGER, name VARCHAR, effic VARCHAR)
SELECT SUM(avg_g) FROM table_name_69 WHERE name = "opponents" AND effic < 129.73
### Context: CREATE TABLE table_name_69 (avg_g INTEGER, name VARCHAR, effic VARCHAR) ### Question: Which Avg/G that has a Name of opponents, and an Effic smaller than 129.73? ### Answer: SELECT SUM(avg_g) FROM table_name_69 WHERE name = "opponents" AND effic < 129.73
Which Cmp-Att-Int has a GP-GS of 3-0?
CREATE TABLE table_name_61 (cmp_att_int VARCHAR, gp_gs VARCHAR)
SELECT cmp_att_int FROM table_name_61 WHERE gp_gs = "3-0"
### Context: CREATE TABLE table_name_61 (cmp_att_int VARCHAR, gp_gs VARCHAR) ### Question: Which Cmp-Att-Int has a GP-GS of 3-0? ### Answer: SELECT cmp_att_int FROM table_name_61 WHERE gp_gs = "3-0"
Which Effic is the average one that has an Avg/G larger than 3.7, and a GP-GS of 13, and a Cmp-Att-Int of 318-521-15?
CREATE TABLE table_name_9 (effic INTEGER, cmp_att_int VARCHAR, avg_g VARCHAR, gp_gs VARCHAR)
SELECT AVG(effic) FROM table_name_9 WHERE avg_g > 3.7 AND gp_gs = "13" AND cmp_att_int = "318-521-15"
### Context: CREATE TABLE table_name_9 (effic INTEGER, cmp_att_int VARCHAR, avg_g VARCHAR, gp_gs VARCHAR) ### Question: Which Effic is the average one that has an Avg/G larger than 3.7, and a GP-GS of 13, and a Cmp-Att-Int of 318-521-15? ### Answer: SELECT AVG(effic) FROM table_name_9 WHERE avg_g > 3.7 AND gp_gs = "13" AND cmp_att_int = "318-521-15"
Which home team was playing on January 13?
CREATE TABLE table_name_87 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_87 WHERE date = "january 13"
### Context: CREATE TABLE table_name_87 (home VARCHAR, date VARCHAR) ### Question: Which home team was playing on January 13? ### Answer: SELECT home FROM table_name_87 WHERE date = "january 13"
How many runs were there when the high score was 55 and there were more than 12 innings?
CREATE TABLE table_name_34 (runs INTEGER, high_score VARCHAR, innings VARCHAR)
SELECT SUM(runs) FROM table_name_34 WHERE high_score = 55 AND innings > 12
### Context: CREATE TABLE table_name_34 (runs INTEGER, high_score VARCHAR, innings VARCHAR) ### Question: How many runs were there when the high score was 55 and there were more than 12 innings? ### Answer: SELECT SUM(runs) FROM table_name_34 WHERE high_score = 55 AND innings > 12
How many runs were there when there was 1 match and les than 86 average?
CREATE TABLE table_name_1 (runs INTEGER, matches VARCHAR, average VARCHAR)
SELECT SUM(runs) FROM table_name_1 WHERE matches = 1 AND average < 86
### Context: CREATE TABLE table_name_1 (runs INTEGER, matches VARCHAR, average VARCHAR) ### Question: How many runs were there when there was 1 match and les than 86 average? ### Answer: SELECT SUM(runs) FROM table_name_1 WHERE matches = 1 AND average < 86
Which station has programming of Me-TV?
CREATE TABLE table_name_78 (station VARCHAR, programming VARCHAR)
SELECT station FROM table_name_78 WHERE programming = "me-tv"
### Context: CREATE TABLE table_name_78 (station VARCHAR, programming VARCHAR) ### Question: Which station has programming of Me-TV? ### Answer: SELECT station FROM table_name_78 WHERE programming = "me-tv"
Which station has programming of Me-TV?
CREATE TABLE table_name_33 (station VARCHAR, programming VARCHAR)
SELECT station FROM table_name_33 WHERE programming = "me-tv"
### Context: CREATE TABLE table_name_33 (station VARCHAR, programming VARCHAR) ### Question: Which station has programming of Me-TV? ### Answer: SELECT station FROM table_name_33 WHERE programming = "me-tv"
What is the short name having video of 720p and programming of Main KSTC-TV programming?
CREATE TABLE table_name_19 (psip_short_name VARCHAR, video VARCHAR, programming VARCHAR)
SELECT psip_short_name FROM table_name_19 WHERE video = "720p" AND programming = "main kstc-tv programming"
### Context: CREATE TABLE table_name_19 (psip_short_name VARCHAR, video VARCHAR, programming VARCHAR) ### Question: What is the short name having video of 720p and programming of Main KSTC-TV programming? ### Answer: SELECT psip_short_name FROM table_name_19 WHERE video = "720p" AND programming = "main kstc-tv programming"
What is the video associated with a short name of KSTCDT2?
CREATE TABLE table_name_36 (video VARCHAR, psip_short_name VARCHAR)
SELECT video FROM table_name_36 WHERE psip_short_name = "kstcdt2"
### Context: CREATE TABLE table_name_36 (video VARCHAR, psip_short_name VARCHAR) ### Question: What is the video associated with a short name of KSTCDT2? ### Answer: SELECT video FROM table_name_36 WHERE psip_short_name = "kstcdt2"
What is the short name of channel 5.5, KSTC-TV?
CREATE TABLE table_name_95 (psip_short_name VARCHAR, station VARCHAR, channel VARCHAR)
SELECT psip_short_name FROM table_name_95 WHERE station = "kstc-tv" AND channel = 5.5
### Context: CREATE TABLE table_name_95 (psip_short_name VARCHAR, station VARCHAR, channel VARCHAR) ### Question: What is the short name of channel 5.5, KSTC-TV? ### Answer: SELECT psip_short_name FROM table_name_95 WHERE station = "kstc-tv" AND channel = 5.5
What is the short name of the channel under 5.2?
CREATE TABLE table_name_2 (psip_short_name VARCHAR, channel INTEGER)
SELECT psip_short_name FROM table_name_2 WHERE channel < 5.2
### Context: CREATE TABLE table_name_2 (psip_short_name VARCHAR, channel INTEGER) ### Question: What is the short name of the channel under 5.2? ### Answer: SELECT psip_short_name FROM table_name_2 WHERE channel < 5.2
Which prefecture is in Hubei province and Enshi county?
CREATE TABLE table_name_94 (prefecture VARCHAR, province VARCHAR, county VARCHAR)
SELECT prefecture FROM table_name_94 WHERE province = "hubei" AND county = "enshi"
### Context: CREATE TABLE table_name_94 (prefecture VARCHAR, province VARCHAR, county VARCHAR) ### Question: Which prefecture is in Hubei province and Enshi county? ### Answer: SELECT prefecture FROM table_name_94 WHERE province = "hubei" AND county = "enshi"
What is the sum of Tujia population with the Zhangjiajie prefecture in Sangzhi county?
CREATE TABLE table_name_20 (tujia_population INTEGER, prefecture VARCHAR, county VARCHAR)
SELECT SUM(tujia_population) FROM table_name_20 WHERE prefecture = "zhangjiajie" AND county = "sangzhi"
### Context: CREATE TABLE table_name_20 (tujia_population INTEGER, prefecture VARCHAR, county VARCHAR) ### Question: What is the sum of Tujia population with the Zhangjiajie prefecture in Sangzhi county? ### Answer: SELECT SUM(tujia_population) FROM table_name_20 WHERE prefecture = "zhangjiajie" AND county = "sangzhi"