question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How many years had the best actress in a Revival category?
CREATE TABLE table_name_9 (year VARCHAR, category VARCHAR)
SELECT COUNT(year) FROM table_name_9 WHERE category = "best actress in a revival"
### Context: CREATE TABLE table_name_9 (year VARCHAR, category VARCHAR) ### Question: How many years had the best actress in a Revival category? ### Answer: SELECT COUNT(year) FROM table_name_9 WHERE category = "best actress in a revival"
What categories had a Nominated work of yerma before 1992?
CREATE TABLE table_name_99 (category VARCHAR, year VARCHAR, nominated_work VARCHAR)
SELECT category FROM table_name_99 WHERE year < 1992 AND nominated_work = "yerma"
### Context: CREATE TABLE table_name_99 (category VARCHAR, year VARCHAR, nominated_work VARCHAR) ### Question: What categories had a Nominated work of yerma before 1992? ### Answer: SELECT category FROM table_name_99 WHERE year < 1992 AND nominated_work = "yerma"
How many times is the shot volume (cm3) less than 172.76?
CREATE TABLE table_name_37 (shot_diameter__cm_ VARCHAR, shot_volume__cm_3__ INTEGER)
SELECT COUNT(shot_diameter__cm_) FROM table_name_37 WHERE shot_volume__cm_3__ < 172.76
### Context: CREATE TABLE table_name_37 (shot_diameter__cm_ VARCHAR, shot_volume__cm_3__ INTEGER) ### Question: How many times is the shot volume (cm3) less than 172.76? ### Answer: SELECT COUNT(shot_diameter__cm_) FROM table_name_37 WHERE shot_volume__cm_3__ < 172.76
what is the average shot volume (cm 3) when the shot diameter (cm) is less than 6.04?
CREATE TABLE table_name_73 (shot_volume__cm_3__ INTEGER, shot_diameter__cm_ INTEGER)
SELECT AVG(shot_volume__cm_3__) FROM table_name_73 WHERE shot_diameter__cm_ < 6.04
### Context: CREATE TABLE table_name_73 (shot_volume__cm_3__ INTEGER, shot_diameter__cm_ INTEGER) ### Question: what is the average shot volume (cm 3) when the shot diameter (cm) is less than 6.04? ### Answer: SELECT AVG(shot_volume__cm_3__) FROM table_name_73 WHERE shot_diameter__cm_ < 6.04
What role was nominated at the Sydney Film Festival?
CREATE TABLE table_name_56 (role VARCHAR, festival_organization VARCHAR)
SELECT role FROM table_name_56 WHERE festival_organization = "sydney film festival"
### Context: CREATE TABLE table_name_56 (role VARCHAR, festival_organization VARCHAR) ### Question: What role was nominated at the Sydney Film Festival? ### Answer: SELECT role FROM table_name_56 WHERE festival_organization = "sydney film festival"
In what category was an award won in 2007?
CREATE TABLE table_name_92 (award_category VARCHAR, nominated_won VARCHAR, year VARCHAR)
SELECT award_category FROM table_name_92 WHERE nominated_won = "won" AND year = 2007
### Context: CREATE TABLE table_name_92 (award_category VARCHAR, nominated_won VARCHAR, year VARCHAR) ### Question: In what category was an award won in 2007? ### Answer: SELECT award_category FROM table_name_92 WHERE nominated_won = "won" AND year = 2007
What is the first year that there was a Satellite Award?
CREATE TABLE table_name_90 (year INTEGER, festival_organization VARCHAR)
SELECT MIN(year) FROM table_name_90 WHERE festival_organization = "satellite award"
### Context: CREATE TABLE table_name_90 (year INTEGER, festival_organization VARCHAR) ### Question: What is the first year that there was a Satellite Award? ### Answer: SELECT MIN(year) FROM table_name_90 WHERE festival_organization = "satellite award"
What role was at the Sydney Film Festival in 2008?
CREATE TABLE table_name_4 (role VARCHAR, year VARCHAR, festival_organization VARCHAR)
SELECT role FROM table_name_4 WHERE year = 2008 AND festival_organization = "sydney film festival"
### Context: CREATE TABLE table_name_4 (role VARCHAR, year VARCHAR, festival_organization VARCHAR) ### Question: What role was at the Sydney Film Festival in 2008? ### Answer: SELECT role FROM table_name_4 WHERE year = 2008 AND festival_organization = "sydney film festival"
What was nominated for the Jury Award?
CREATE TABLE table_name_57 (nominated_won VARCHAR, award_category VARCHAR)
SELECT nominated_won FROM table_name_57 WHERE award_category = "jury award"
### Context: CREATE TABLE table_name_57 (nominated_won VARCHAR, award_category VARCHAR) ### Question: What was nominated for the Jury Award? ### Answer: SELECT nominated_won FROM table_name_57 WHERE award_category = "jury award"
what is the released when the series is sorted 6y/ai?
CREATE TABLE table_name_68 (released VARCHAR, series_sorted VARCHAR)
SELECT released FROM table_name_68 WHERE series_sorted = "6y/ai"
### Context: CREATE TABLE table_name_68 (released VARCHAR, series_sorted VARCHAR) ### Question: what is the released when the series is sorted 6y/ai? ### Answer: SELECT released FROM table_name_68 WHERE series_sorted = "6y/ai"
who is the featuring when the doctor is the 6th and the series sorted is 6y/ak?
CREATE TABLE table_name_30 (featuring VARCHAR, doctor VARCHAR, series_sorted VARCHAR)
SELECT featuring FROM table_name_30 WHERE doctor = "6th" AND series_sorted = "6y/ak"
### Context: CREATE TABLE table_name_30 (featuring VARCHAR, doctor VARCHAR, series_sorted VARCHAR) ### Question: who is the featuring when the doctor is the 6th and the series sorted is 6y/ak? ### Answer: SELECT featuring FROM table_name_30 WHERE doctor = "6th" AND series_sorted = "6y/ak"
what is the series sorted when the released is may 2012?
CREATE TABLE table_name_73 (series_sorted VARCHAR, released VARCHAR)
SELECT series_sorted FROM table_name_73 WHERE released = "may 2012"
### Context: CREATE TABLE table_name_73 (series_sorted VARCHAR, released VARCHAR) ### Question: what is the series sorted when the released is may 2012? ### Answer: SELECT series_sorted FROM table_name_73 WHERE released = "may 2012"
who is the featuring when the series sorted is 6eb/b?
CREATE TABLE table_name_38 (featuring VARCHAR, series_sorted VARCHAR)
SELECT featuring FROM table_name_38 WHERE series_sorted = "6eb/b"
### Context: CREATE TABLE table_name_38 (featuring VARCHAR, series_sorted VARCHAR) ### Question: who is the featuring when the series sorted is 6eb/b? ### Answer: SELECT featuring FROM table_name_38 WHERE series_sorted = "6eb/b"
Which Country has a Year(s) won of 1977?
CREATE TABLE table_name_60 (country VARCHAR, year_s__won VARCHAR)
SELECT country FROM table_name_60 WHERE year_s__won = "1977"
### Context: CREATE TABLE table_name_60 (country VARCHAR, year_s__won VARCHAR) ### Question: Which Country has a Year(s) won of 1977? ### Answer: SELECT country FROM table_name_60 WHERE year_s__won = "1977"
Which To par is the lowest one that has a Year(s) won of 1962, 1967, 1972, 1980, and a Total larger than 149?
CREATE TABLE table_name_90 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR)
SELECT MIN(to_par) FROM table_name_90 WHERE year_s__won = "1962, 1967, 1972, 1980" AND total > 149
### Context: CREATE TABLE table_name_90 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR) ### Question: Which To par is the lowest one that has a Year(s) won of 1962, 1967, 1972, 1980, and a Total larger than 149? ### Answer: SELECT MIN(to_par) FROM table_name_90 WHERE year_s__won = "1962, 1967, 1972, 1980" AND total > 149
Which Country has a Total of 148?
CREATE TABLE table_name_74 (country VARCHAR, total VARCHAR)
SELECT country FROM table_name_74 WHERE total = 148
### Context: CREATE TABLE table_name_74 (country VARCHAR, total VARCHAR) ### Question: Which Country has a Total of 148? ### Answer: SELECT country FROM table_name_74 WHERE total = 148
Which Year(s) won has a Total of 147?
CREATE TABLE table_name_57 (year_s__won VARCHAR, total VARCHAR)
SELECT year_s__won FROM table_name_57 WHERE total = 147
### Context: CREATE TABLE table_name_57 (year_s__won VARCHAR, total VARCHAR) ### Question: Which Year(s) won has a Total of 147? ### Answer: SELECT year_s__won FROM table_name_57 WHERE total = 147
Which To par is the highest one that has a Total smaller than 148?
CREATE TABLE table_name_89 (to_par INTEGER, total INTEGER)
SELECT MAX(to_par) FROM table_name_89 WHERE total < 148
### Context: CREATE TABLE table_name_89 (to_par INTEGER, total INTEGER) ### Question: Which To par is the highest one that has a Total smaller than 148? ### Answer: SELECT MAX(to_par) FROM table_name_89 WHERE total < 148
Who is the candidate in the 2008 (2) election?
CREATE TABLE table_name_20 (candidate VARCHAR, election VARCHAR)
SELECT candidate FROM table_name_20 WHERE election = "2008 (2)"
### Context: CREATE TABLE table_name_20 (candidate VARCHAR, election VARCHAR) ### Question: Who is the candidate in the 2008 (2) election? ### Answer: SELECT candidate FROM table_name_20 WHERE election = "2008 (2)"
What is the share of votes in the 2008 (1) election?
CREATE TABLE table_name_99 (share_of_votes VARCHAR, election VARCHAR)
SELECT share_of_votes FROM table_name_99 WHERE election = "2008 (1)"
### Context: CREATE TABLE table_name_99 (share_of_votes VARCHAR, election VARCHAR) ### Question: What is the share of votes in the 2008 (1) election? ### Answer: SELECT share_of_votes FROM table_name_99 WHERE election = "2008 (1)"
What is the share of votes in the 2000 (2nd) election?
CREATE TABLE table_name_20 (share_of_votes VARCHAR, election VARCHAR)
SELECT share_of_votes FROM table_name_20 WHERE election = "2000 (2nd)"
### Context: CREATE TABLE table_name_20 (share_of_votes VARCHAR, election VARCHAR) ### Question: What is the share of votes in the 2000 (2nd) election? ### Answer: SELECT share_of_votes FROM table_name_20 WHERE election = "2000 (2nd)"
What is the election with an outcome of ndc opposition and 2,728,241 votes?
CREATE TABLE table_name_63 (election VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR)
SELECT election FROM table_name_63 WHERE outcome_of_election = "ndc opposition" AND number_of_votes = "2,728,241"
### Context: CREATE TABLE table_name_63 (election VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR) ### Question: What is the election with an outcome of ndc opposition and 2,728,241 votes? ### Answer: SELECT election FROM table_name_63 WHERE outcome_of_election = "ndc opposition" AND number_of_votes = "2,728,241"
What is the outcome of the election with 43.3% share of votes?
CREATE TABLE table_name_26 (outcome_of_election VARCHAR, share_of_votes VARCHAR)
SELECT outcome_of_election FROM table_name_26 WHERE share_of_votes = "43.3%"
### Context: CREATE TABLE table_name_26 (outcome_of_election VARCHAR, share_of_votes VARCHAR) ### Question: What is the outcome of the election with 43.3% share of votes? ### Answer: SELECT outcome_of_election FROM table_name_26 WHERE share_of_votes = "43.3%"
Who is the candidate in the 2012 election?
CREATE TABLE table_name_50 (candidate VARCHAR, election VARCHAR)
SELECT candidate FROM table_name_50 WHERE election = "2012"
### Context: CREATE TABLE table_name_50 (candidate VARCHAR, election VARCHAR) ### Question: Who is the candidate in the 2012 election? ### Answer: SELECT candidate FROM table_name_50 WHERE election = "2012"
What is Mark O'Meara's Score?
CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_44 WHERE player = "mark o'meara"
### Context: CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR) ### Question: What is Mark O'Meara's Score? ### Answer: SELECT score FROM table_name_44 WHERE player = "mark o'meara"
What is Curtis Strange's Score?
CREATE TABLE table_name_11 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_11 WHERE player = "curtis strange"
### Context: CREATE TABLE table_name_11 (score VARCHAR, player VARCHAR) ### Question: What is Curtis Strange's Score? ### Answer: SELECT score FROM table_name_11 WHERE player = "curtis strange"
What is the Tracks of the release in Catalog BA 222304 with a Length of 2:57?
CREATE TABLE table_name_20 (tracks VARCHAR, catalog VARCHAR, length VARCHAR)
SELECT tracks FROM table_name_20 WHERE catalog = "ba 222304" AND length = "2:57"
### Context: CREATE TABLE table_name_20 (tracks VARCHAR, catalog VARCHAR, length VARCHAR) ### Question: What is the Tracks of the release in Catalog BA 222304 with a Length of 2:57? ### Answer: SELECT tracks FROM table_name_20 WHERE catalog = "ba 222304" AND length = "2:57"
What is the highest Match No., when Date is 2008-03-21, and when Time is 16:00?
CREATE TABLE table_name_92 (match_no INTEGER, date VARCHAR, time VARCHAR)
SELECT MAX(match_no) FROM table_name_92 WHERE date = "2008-03-21" AND time = "16:00"
### Context: CREATE TABLE table_name_92 (match_no INTEGER, date VARCHAR, time VARCHAR) ### Question: What is the highest Match No., when Date is 2008-03-21, and when Time is 16:00? ### Answer: SELECT MAX(match_no) FROM table_name_92 WHERE date = "2008-03-21" AND time = "16:00"
What was the venue for runs 325/6?
CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR)
SELECT venue FROM table_name_12 WHERE runs = "325/6"
### Context: CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR) ### Question: What was the venue for runs 325/6? ### Answer: SELECT venue FROM table_name_12 WHERE runs = "325/6"
What season were the runs 310/9?
CREATE TABLE table_name_25 (season VARCHAR, runs VARCHAR)
SELECT season FROM table_name_25 WHERE runs = "310/9"
### Context: CREATE TABLE table_name_25 (season VARCHAR, runs VARCHAR) ### Question: What season were the runs 310/9? ### Answer: SELECT season FROM table_name_25 WHERE runs = "310/9"
What were the runs for the opponent from the West Indies?
CREATE TABLE table_name_64 (runs VARCHAR, opponent VARCHAR)
SELECT runs FROM table_name_64 WHERE opponent = "west indies"
### Context: CREATE TABLE table_name_64 (runs VARCHAR, opponent VARCHAR) ### Question: What were the runs for the opponent from the West Indies? ### Answer: SELECT runs FROM table_name_64 WHERE opponent = "west indies"
Which Money ($) has a Score of 70-66-73-69=278?
CREATE TABLE table_name_95 (money___ INTEGER, score VARCHAR)
SELECT AVG(money___) AS $__ FROM table_name_95 WHERE score = 70 - 66 - 73 - 69 = 278
### Context: CREATE TABLE table_name_95 (money___ INTEGER, score VARCHAR) ### Question: Which Money ($) has a Score of 70-66-73-69=278? ### Answer: SELECT AVG(money___) AS $__ FROM table_name_95 WHERE score = 70 - 66 - 73 - 69 = 278
How many rounds did the match last with Sam Sotello as the opponent?
CREATE TABLE table_name_78 (round INTEGER, opponent VARCHAR)
SELECT AVG(round) FROM table_name_78 WHERE opponent = "sam sotello"
### Context: CREATE TABLE table_name_78 (round INTEGER, opponent VARCHAR) ### Question: How many rounds did the match last with Sam Sotello as the opponent? ### Answer: SELECT AVG(round) FROM table_name_78 WHERE opponent = "sam sotello"
What is the record for the loss in UFC 62?
CREATE TABLE table_name_26 (record VARCHAR, res VARCHAR, event VARCHAR)
SELECT record FROM table_name_26 WHERE res = "loss" AND event = "ufc 62"
### Context: CREATE TABLE table_name_26 (record VARCHAR, res VARCHAR, event VARCHAR) ### Question: What is the record for the loss in UFC 62? ### Answer: SELECT record FROM table_name_26 WHERE res = "loss" AND event = "ufc 62"
What is the part 4 with *heguldun *febungun in part 3?
CREATE TABLE table_name_6 (part_4 VARCHAR, part_3 VARCHAR)
SELECT part_4 FROM table_name_6 WHERE part_3 = "*heguldun *febungun"
### Context: CREATE TABLE table_name_6 (part_4 VARCHAR, part_3 VARCHAR) ### Question: What is the part 4 with *heguldun *febungun in part 3? ### Answer: SELECT part_4 FROM table_name_6 WHERE part_3 = "*heguldun *febungun"
What is the part 3 with *hegait in part 2?
CREATE TABLE table_name_31 (part_3 VARCHAR, part_2 VARCHAR)
SELECT part_3 FROM table_name_31 WHERE part_2 = "*hegait"
### Context: CREATE TABLE table_name_31 (part_3 VARCHAR, part_2 VARCHAR) ### Question: What is the part 3 with *hegait in part 2? ### Answer: SELECT part_3 FROM table_name_31 WHERE part_2 = "*hegait"
What is the part 4 with *hlaupaną *stautaną in part 1?
CREATE TABLE table_name_6 (part_4 VARCHAR, part_1 VARCHAR)
SELECT part_4 FROM table_name_6 WHERE part_1 = "*hlaupaną *stautaną"
### Context: CREATE TABLE table_name_6 (part_4 VARCHAR, part_1 VARCHAR) ### Question: What is the part 4 with *hlaupaną *stautaną in part 1? ### Answer: SELECT part_4 FROM table_name_6 WHERE part_1 = "*hlaupaną *stautaną"
What is the verb meaning of *haldaną *fanhaną in part 1?
CREATE TABLE table_name_26 (verb_meaning VARCHAR, part_1 VARCHAR)
SELECT verb_meaning FROM table_name_26 WHERE part_1 = "*haldaną *fanhaną"
### Context: CREATE TABLE table_name_26 (verb_meaning VARCHAR, part_1 VARCHAR) ### Question: What is the verb meaning of *haldaną *fanhaną in part 1? ### Answer: SELECT verb_meaning FROM table_name_26 WHERE part_1 = "*haldaną *fanhaną"
Who is sezen aksu's producer?
CREATE TABLE table_name_43 (producer_s_ VARCHAR, songwriter_s_ VARCHAR)
SELECT producer_s_ FROM table_name_43 WHERE songwriter_s_ = "sezen aksu"
### Context: CREATE TABLE table_name_43 (producer_s_ VARCHAR, songwriter_s_ VARCHAR) ### Question: Who is sezen aksu's producer? ### Answer: SELECT producer_s_ FROM table_name_43 WHERE songwriter_s_ = "sezen aksu"
Which Title has a Songwriter(s) of hadise açıkgöz, stefaan fernande, elio deepcore?
CREATE TABLE table_name_72 (title VARCHAR, songwriter_s_ VARCHAR)
SELECT title FROM table_name_72 WHERE songwriter_s_ = "hadise açıkgöz, stefaan fernande, elio deepcore"
### Context: CREATE TABLE table_name_72 (title VARCHAR, songwriter_s_ VARCHAR) ### Question: Which Title has a Songwriter(s) of hadise açıkgöz, stefaan fernande, elio deepcore? ### Answer: SELECT title FROM table_name_72 WHERE songwriter_s_ = "hadise açıkgöz, stefaan fernande, elio deepcore"
Which Title has a Length of 3:32, and a Producer(s) of hadise açıkgöz, yves jongen?
CREATE TABLE table_name_91 (title VARCHAR, length VARCHAR, producer_s_ VARCHAR)
SELECT title FROM table_name_91 WHERE length = "3:32" AND producer_s_ = "hadise açıkgöz, yves jongen"
### Context: CREATE TABLE table_name_91 (title VARCHAR, length VARCHAR, producer_s_ VARCHAR) ### Question: Which Title has a Length of 3:32, and a Producer(s) of hadise açıkgöz, yves jongen? ### Answer: SELECT title FROM table_name_91 WHERE length = "3:32" AND producer_s_ = "hadise açıkgöz, yves jongen"
Which Producer(s) has a Track smaller than 8, and a Songwriter(s) of hadise açıkgöz, yves jongen, and a Length of 3:08?
CREATE TABLE table_name_46 (producer_s_ VARCHAR, length VARCHAR, track VARCHAR, songwriter_s_ VARCHAR)
SELECT producer_s_ FROM table_name_46 WHERE track < 8 AND songwriter_s_ = "hadise açıkgöz, yves jongen" AND length = "3:08"
### Context: CREATE TABLE table_name_46 (producer_s_ VARCHAR, length VARCHAR, track VARCHAR, songwriter_s_ VARCHAR) ### Question: Which Producer(s) has a Track smaller than 8, and a Songwriter(s) of hadise açıkgöz, yves jongen, and a Length of 3:08? ### Answer: SELECT producer_s_ FROM table_name_46 WHERE track < 8 AND songwriter_s_ = "hadise açıkgöz, yves jongen" AND length = "3:08"
What is track 6's title?
CREATE TABLE table_name_62 (title VARCHAR, track VARCHAR)
SELECT title FROM table_name_62 WHERE track = 6
### Context: CREATE TABLE table_name_62 (title VARCHAR, track VARCHAR) ### Question: What is track 6's title? ### Answer: SELECT title FROM table_name_62 WHERE track = 6
What company makes the Nokia 700?
CREATE TABLE table_name_31 (company_name VARCHAR, hardware_model VARCHAR)
SELECT company_name FROM table_name_31 WHERE hardware_model = "nokia 700"
### Context: CREATE TABLE table_name_31 (company_name VARCHAR, hardware_model VARCHAR) ### Question: What company makes the Nokia 700? ### Answer: SELECT company_name FROM table_name_31 WHERE hardware_model = "nokia 700"
What is the accreditation level for the approved (awarded 05.12.12) date?
CREATE TABLE table_name_72 (accreditation_level VARCHAR, date VARCHAR)
SELECT accreditation_level FROM table_name_72 WHERE date = "approved (awarded 05.12.12)"
### Context: CREATE TABLE table_name_72 (accreditation_level VARCHAR, date VARCHAR) ### Question: What is the accreditation level for the approved (awarded 05.12.12) date? ### Answer: SELECT accreditation_level FROM table_name_72 WHERE date = "approved (awarded 05.12.12)"
When did Samsung Electronics Co LTD make the GT-i9100?
CREATE TABLE table_name_99 (date VARCHAR, company_name VARCHAR, hardware_model VARCHAR)
SELECT date FROM table_name_99 WHERE company_name = "samsung electronics co ltd" AND hardware_model = "gt-i9100"
### Context: CREATE TABLE table_name_99 (date VARCHAR, company_name VARCHAR, hardware_model VARCHAR) ### Question: When did Samsung Electronics Co LTD make the GT-i9100? ### Answer: SELECT date FROM table_name_99 WHERE company_name = "samsung electronics co ltd" AND hardware_model = "gt-i9100"
When the Nokia corporation had an accreditation level of joyn, what was the accreditation type?
CREATE TABLE table_name_5 (accreditation_type VARCHAR, accreditation_level VARCHAR, company_name VARCHAR)
SELECT accreditation_type FROM table_name_5 WHERE accreditation_level = "joyn" AND company_name = "nokia corporation"
### Context: CREATE TABLE table_name_5 (accreditation_type VARCHAR, accreditation_level VARCHAR, company_name VARCHAR) ### Question: When the Nokia corporation had an accreditation level of joyn, what was the accreditation type? ### Answer: SELECT accreditation_type FROM table_name_5 WHERE accreditation_level = "joyn" AND company_name = "nokia corporation"
What is Round, when Record is "4-1"?
CREATE TABLE table_name_53 (round VARCHAR, record VARCHAR)
SELECT round FROM table_name_53 WHERE record = "4-1"
### Context: CREATE TABLE table_name_53 (round VARCHAR, record VARCHAR) ### Question: What is Round, when Record is "4-1"? ### Answer: SELECT round FROM table_name_53 WHERE record = "4-1"
What is Opponent, when Location is "Tokyo , Japan", when Method is "Decision (unanimous)", and when Record is "4-1"?
CREATE TABLE table_name_43 (opponent VARCHAR, record VARCHAR, location VARCHAR, method VARCHAR)
SELECT opponent FROM table_name_43 WHERE location = "tokyo , japan" AND method = "decision (unanimous)" AND record = "4-1"
### Context: CREATE TABLE table_name_43 (opponent VARCHAR, record VARCHAR, location VARCHAR, method VARCHAR) ### Question: What is Opponent, when Location is "Tokyo , Japan", when Method is "Decision (unanimous)", and when Record is "4-1"? ### Answer: SELECT opponent FROM table_name_43 WHERE location = "tokyo , japan" AND method = "decision (unanimous)" AND record = "4-1"
What is Method, when Opponent is "Thiago Alves"?
CREATE TABLE table_name_19 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_19 WHERE opponent = "thiago alves"
### Context: CREATE TABLE table_name_19 (method VARCHAR, opponent VARCHAR) ### Question: What is Method, when Opponent is "Thiago Alves"? ### Answer: SELECT method FROM table_name_19 WHERE opponent = "thiago alves"
What is Event, when Round is "1", when Location is "Osaka , Japan", and when Method is "TKO (corner stoppage)"?
CREATE TABLE table_name_64 (event VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR)
SELECT event FROM table_name_64 WHERE round = "1" AND location = "osaka , japan" AND method = "tko (corner stoppage)"
### Context: CREATE TABLE table_name_64 (event VARCHAR, method VARCHAR, round VARCHAR, location VARCHAR) ### Question: What is Event, when Round is "1", when Location is "Osaka , Japan", and when Method is "TKO (corner stoppage)"? ### Answer: SELECT event FROM table_name_64 WHERE round = "1" AND location = "osaka , japan" AND method = "tko (corner stoppage)"
What is Record, when Event is "UFC 64"?
CREATE TABLE table_name_78 (record VARCHAR, event VARCHAR)
SELECT record FROM table_name_78 WHERE event = "ufc 64"
### Context: CREATE TABLE table_name_78 (record VARCHAR, event VARCHAR) ### Question: What is Record, when Event is "UFC 64"? ### Answer: SELECT record FROM table_name_78 WHERE event = "ufc 64"
What is the Record for a game smaller than 24, Lundqvist was the decision, November less than 8, and opponent Was New York Islanders?
CREATE TABLE table_name_57 (record VARCHAR, opponent VARCHAR, november VARCHAR, game VARCHAR, decision VARCHAR)
SELECT record FROM table_name_57 WHERE game < 24 AND decision = "lundqvist" AND november < 8 AND opponent = "new york islanders"
### Context: CREATE TABLE table_name_57 (record VARCHAR, opponent VARCHAR, november VARCHAR, game VARCHAR, decision VARCHAR) ### Question: What is the Record for a game smaller than 24, Lundqvist was the decision, November less than 8, and opponent Was New York Islanders? ### Answer: SELECT record FROM table_name_57 WHERE game < 24 AND decision = "lundqvist" AND november < 8 AND opponent = "new york islanders"
What is the smallest game number with a record of 16-7-2?
CREATE TABLE table_name_44 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_name_44 WHERE record = "16-7-2"
### Context: CREATE TABLE table_name_44 (game INTEGER, record VARCHAR) ### Question: What is the smallest game number with a record of 16-7-2? ### Answer: SELECT MIN(game) FROM table_name_44 WHERE record = "16-7-2"
What is the Score of the game with a decision of Lundqvist, the November less than 28, and opponent was Boston Bruins?
CREATE TABLE table_name_31 (score VARCHAR, opponent VARCHAR, decision VARCHAR, november VARCHAR)
SELECT score FROM table_name_31 WHERE decision = "lundqvist" AND november < 28 AND opponent = "boston bruins"
### Context: CREATE TABLE table_name_31 (score VARCHAR, opponent VARCHAR, decision VARCHAR, november VARCHAR) ### Question: What is the Score of the game with a decision of Lundqvist, the November less than 28, and opponent was Boston Bruins? ### Answer: SELECT score FROM table_name_31 WHERE decision = "lundqvist" AND november < 28 AND opponent = "boston bruins"
Where was the 2013 Eaff East Asian Cup Qualifier played?
CREATE TABLE table_name_78 (venue VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_78 WHERE competition = "2013 eaff east asian cup qualifier"
### Context: CREATE TABLE table_name_78 (venue VARCHAR, competition VARCHAR) ### Question: Where was the 2013 Eaff East Asian Cup Qualifier played? ### Answer: SELECT venue FROM table_name_78 WHERE competition = "2013 eaff east asian cup qualifier"
What is the highest amount of points with a goal average larger than 4, less than 12 draws, and a goal of 63?
CREATE TABLE table_name_63 (points INTEGER, goals_for VARCHAR, goal_average VARCHAR, draws VARCHAR)
SELECT MAX(points) FROM table_name_63 WHERE goal_average > 4 AND draws < 12 AND goals_for = 63
### Context: CREATE TABLE table_name_63 (points INTEGER, goals_for VARCHAR, goal_average VARCHAR, draws VARCHAR) ### Question: What is the highest amount of points with a goal average larger than 4, less than 12 draws, and a goal of 63? ### Answer: SELECT MAX(points) FROM table_name_63 WHERE goal_average > 4 AND draws < 12 AND goals_for = 63
What is the lowest goal for a goal against 37 and less than 15 victories?
CREATE TABLE table_name_43 (goals_for INTEGER, goals_against VARCHAR, victories VARCHAR)
SELECT MIN(goals_for) FROM table_name_43 WHERE goals_against = 37 AND victories < 15
### Context: CREATE TABLE table_name_43 (goals_for INTEGER, goals_against VARCHAR, victories VARCHAR) ### Question: What is the lowest goal for a goal against 37 and less than 15 victories? ### Answer: SELECT MIN(goals_for) FROM table_name_43 WHERE goals_against = 37 AND victories < 15
How many goals on average are there for rank 3?
CREATE TABLE table_name_52 (goals_for INTEGER, rank VARCHAR)
SELECT AVG(goals_for) FROM table_name_52 WHERE rank = 3
### Context: CREATE TABLE table_name_52 (goals_for INTEGER, rank VARCHAR) ### Question: How many goals on average are there for rank 3? ### Answer: SELECT AVG(goals_for) FROM table_name_52 WHERE rank = 3
What is the average goals against when there are more than 42 played?
CREATE TABLE table_name_55 (goals_against INTEGER, played INTEGER)
SELECT AVG(goals_against) FROM table_name_55 WHERE played > 42
### Context: CREATE TABLE table_name_55 (goals_against INTEGER, played INTEGER) ### Question: What is the average goals against when there are more than 42 played? ### Answer: SELECT AVG(goals_against) FROM table_name_55 WHERE played > 42
What is the goal difference for the team from Chorley?
CREATE TABLE table_name_99 (goal_difference VARCHAR, team VARCHAR)
SELECT goal_difference FROM table_name_99 WHERE team = "chorley"
### Context: CREATE TABLE table_name_99 (goal_difference VARCHAR, team VARCHAR) ### Question: What is the goal difference for the team from Chorley? ### Answer: SELECT goal_difference FROM table_name_99 WHERE team = "chorley"
What is T8 Place Player Scott Hoch's Score?
CREATE TABLE table_name_26 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_26 WHERE place = "t8" AND player = "scott hoch"
### Context: CREATE TABLE table_name_26 (score VARCHAR, place VARCHAR, player VARCHAR) ### Question: What is T8 Place Player Scott Hoch's Score? ### Answer: SELECT score FROM table_name_26 WHERE place = "t8" AND player = "scott hoch"
What is the Place of the Player with a Score of 67-76-74-67=284?
CREATE TABLE table_name_37 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_37 WHERE score = 67 - 76 - 74 - 67 = 284
### Context: CREATE TABLE table_name_37 (place VARCHAR, score VARCHAR) ### Question: What is the Place of the Player with a Score of 67-76-74-67=284? ### Answer: SELECT place FROM table_name_37 WHERE score = 67 - 76 - 74 - 67 = 284
What is the Money of the Player with a Score of 69-71-69-72=281?
CREATE TABLE table_name_70 (money___$__ VARCHAR, score VARCHAR)
SELECT money___$__ FROM table_name_70 WHERE score = 69 - 71 - 69 - 72 = 281
### Context: CREATE TABLE table_name_70 (money___$__ VARCHAR, score VARCHAR) ### Question: What is the Money of the Player with a Score of 69-71-69-72=281? ### Answer: SELECT money___$__ FROM table_name_70 WHERE score = 69 - 71 - 69 - 72 = 281
What is the highest Rank, when U-17 Goals is "7", and when Player is "Cesc Fàbregas"?
CREATE TABLE table_name_82 (rank INTEGER, u_17_goals VARCHAR, player VARCHAR)
SELECT MAX(rank) FROM table_name_82 WHERE u_17_goals = 7 AND player = "cesc fàbregas"
### Context: CREATE TABLE table_name_82 (rank INTEGER, u_17_goals VARCHAR, player VARCHAR) ### Question: What is the highest Rank, when U-17 Goals is "7", and when Player is "Cesc Fàbregas"? ### Answer: SELECT MAX(rank) FROM table_name_82 WHERE u_17_goals = 7 AND player = "cesc fàbregas"
What is the highest Rank, when U-17 Goals is "9"?
CREATE TABLE table_name_49 (rank INTEGER, u_17_goals VARCHAR)
SELECT MAX(rank) FROM table_name_49 WHERE u_17_goals = 9
### Context: CREATE TABLE table_name_49 (rank INTEGER, u_17_goals VARCHAR) ### Question: What is the highest Rank, when U-17 Goals is "9"? ### Answer: SELECT MAX(rank) FROM table_name_49 WHERE u_17_goals = 9
What Competition has a Result of Draw?
CREATE TABLE table_name_50 (competition VARCHAR, result VARCHAR)
SELECT competition FROM table_name_50 WHERE result = "draw"
### Context: CREATE TABLE table_name_50 (competition VARCHAR, result VARCHAR) ### Question: What Competition has a Result of Draw? ### Answer: SELECT competition FROM table_name_50 WHERE result = "draw"
What is the Date of the Competition with a Score of 1–2?
CREATE TABLE table_name_85 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_85 WHERE score = "1–2"
### Context: CREATE TABLE table_name_85 (date VARCHAR, score VARCHAR) ### Question: What is the Date of the Competition with a Score of 1–2? ### Answer: SELECT date FROM table_name_85 WHERE score = "1–2"
What New Delhi Competition has a Result of Loss?
CREATE TABLE table_name_33 (competition VARCHAR, venue VARCHAR, result VARCHAR)
SELECT competition FROM table_name_33 WHERE venue = "new delhi" AND result = "loss"
### Context: CREATE TABLE table_name_33 (competition VARCHAR, venue VARCHAR, result VARCHAR) ### Question: What New Delhi Competition has a Result of Loss? ### Answer: SELECT competition FROM table_name_33 WHERE venue = "new delhi" AND result = "loss"
How many rounds in the event when record is 1-5?
CREATE TABLE table_name_7 (round VARCHAR, record VARCHAR)
SELECT COUNT(round) FROM table_name_7 WHERE record = "1-5"
### Context: CREATE TABLE table_name_7 (round VARCHAR, record VARCHAR) ### Question: How many rounds in the event when record is 1-5? ### Answer: SELECT COUNT(round) FROM table_name_7 WHERE record = "1-5"
Who is the opponent when there is a win in round greater than 1 and the record is 42-27-10?
CREATE TABLE table_name_23 (opponent VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_23 WHERE res = "win" AND round > 1 AND record = "42-27-10"
### Context: CREATE TABLE table_name_23 (opponent VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR) ### Question: Who is the opponent when there is a win in round greater than 1 and the record is 42-27-10? ### Answer: SELECT opponent FROM table_name_23 WHERE res = "win" AND round > 1 AND record = "42-27-10"
Who is team E when Jason Manning is Team F?
CREATE TABLE table_name_89 (team_e VARCHAR, team_f VARCHAR)
SELECT team_e FROM table_name_89 WHERE team_f = "jason manning"
### Context: CREATE TABLE table_name_89 (team_e VARCHAR, team_f VARCHAR) ### Question: Who is team E when Jason Manning is Team F? ### Answer: SELECT team_e FROM table_name_89 WHERE team_f = "jason manning"
Who is Team A when wilma hofschneider-david is team C?
CREATE TABLE table_name_35 (team_a VARCHAR, team_c VARCHAR)
SELECT team_a FROM table_name_35 WHERE team_c = "wilma hofschneider-david"
### Context: CREATE TABLE table_name_35 (team_a VARCHAR, team_c VARCHAR) ### Question: Who is Team A when wilma hofschneider-david is team C? ### Answer: SELECT team_a FROM table_name_35 WHERE team_c = "wilma hofschneider-david"
Who is team f when Aida Gagaring is team A?
CREATE TABLE table_name_16 (team_f VARCHAR, team_a VARCHAR)
SELECT team_f FROM table_name_16 WHERE team_a = "aida gagaring"
### Context: CREATE TABLE table_name_16 (team_f VARCHAR, team_a VARCHAR) ### Question: Who is team f when Aida Gagaring is team A? ### Answer: SELECT team_f FROM table_name_16 WHERE team_a = "aida gagaring"
Who is Team D when Carmen Ada is team C?
CREATE TABLE table_name_61 (team_d VARCHAR, team_c VARCHAR)
SELECT team_d FROM table_name_61 WHERE team_c = "carmen ada"
### Context: CREATE TABLE table_name_61 (team_d VARCHAR, team_c VARCHAR) ### Question: Who is Team D when Carmen Ada is team C? ### Answer: SELECT team_d FROM table_name_61 WHERE team_c = "carmen ada"
Who is team e when Aaron Solloway is team D?
CREATE TABLE table_name_94 (team_e VARCHAR, team_d VARCHAR)
SELECT team_e FROM table_name_94 WHERE team_d = "aaron solloway"
### Context: CREATE TABLE table_name_94 (team_e VARCHAR, team_d VARCHAR) ### Question: Who is team e when Aaron Solloway is team D? ### Answer: SELECT team_e FROM table_name_94 WHERE team_d = "aaron solloway"
Who is team c when dhez javier is team e?
CREATE TABLE table_name_44 (team_c VARCHAR, team_e VARCHAR)
SELECT team_c FROM table_name_44 WHERE team_e = "dhez javier"
### Context: CREATE TABLE table_name_44 (team_c VARCHAR, team_e VARCHAR) ### Question: Who is team c when dhez javier is team e? ### Answer: SELECT team_c FROM table_name_44 WHERE team_e = "dhez javier"
What was the country of the player at +5?
CREATE TABLE table_name_68 (country VARCHAR, to_par VARCHAR)
SELECT country FROM table_name_68 WHERE to_par = "+5"
### Context: CREATE TABLE table_name_68 (country VARCHAR, to_par VARCHAR) ### Question: What was the country of the player at +5? ### Answer: SELECT country FROM table_name_68 WHERE to_par = "+5"
Which player finished at +4?
CREATE TABLE table_name_31 (player VARCHAR, to_par VARCHAR)
SELECT player FROM table_name_31 WHERE to_par = "+4"
### Context: CREATE TABLE table_name_31 (player VARCHAR, to_par VARCHAR) ### Question: Which player finished at +4? ### Answer: SELECT player FROM table_name_31 WHERE to_par = "+4"
What was Bert Yancey's finishing score to par?
CREATE TABLE table_name_21 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_21 WHERE player = "bert yancey"
### Context: CREATE TABLE table_name_21 (to_par VARCHAR, player VARCHAR) ### Question: What was Bert Yancey's finishing score to par? ### Answer: SELECT to_par FROM table_name_21 WHERE player = "bert yancey"
Who was the bachelorette of the season where ian mckee was the winner?
CREATE TABLE table_name_20 (bachelorette VARCHAR, winner VARCHAR)
SELECT bachelorette FROM table_name_20 WHERE winner = "ian mckee"
### Context: CREATE TABLE table_name_20 (bachelorette VARCHAR, winner VARCHAR) ### Question: Who was the bachelorette of the season where ian mckee was the winner? ### Answer: SELECT bachelorette FROM table_name_20 WHERE winner = "ian mckee"
What is the earliest season with an advertising account manager profile?
CREATE TABLE table_name_38 (season INTEGER, profile VARCHAR)
SELECT MIN(season) FROM table_name_38 WHERE profile = "advertising account manager"
### Context: CREATE TABLE table_name_38 (season INTEGER, profile VARCHAR) ### Question: What is the earliest season with an advertising account manager profile? ### Answer: SELECT MIN(season) FROM table_name_38 WHERE profile = "advertising account manager"
Who is the bachelorette of the season that premiered on May 24, 2010?
CREATE TABLE table_name_37 (bachelorette VARCHAR, premiered VARCHAR)
SELECT bachelorette FROM table_name_37 WHERE premiered = "may 24, 2010"
### Context: CREATE TABLE table_name_37 (bachelorette VARCHAR, premiered VARCHAR) ### Question: Who is the bachelorette of the season that premiered on May 24, 2010? ### Answer: SELECT bachelorette FROM table_name_37 WHERE premiered = "may 24, 2010"
Who is the bachelorette after season 8?
CREATE TABLE table_name_25 (bachelorette VARCHAR, season INTEGER)
SELECT bachelorette FROM table_name_25 WHERE season > 8
### Context: CREATE TABLE table_name_25 (bachelorette VARCHAR, season INTEGER) ### Question: Who is the bachelorette after season 8? ### Answer: SELECT bachelorette FROM table_name_25 WHERE season > 8
When the conference is west coast and the number of bids are at 2, what's the percentage of games won?
CREATE TABLE table_name_51 (win__percentage VARCHAR, _number_of_bids VARCHAR, conference VARCHAR)
SELECT win__percentage FROM table_name_51 WHERE _number_of_bids = 2 AND conference = "west coast"
### Context: CREATE TABLE table_name_51 (win__percentage VARCHAR, _number_of_bids VARCHAR, conference VARCHAR) ### Question: When the conference is west coast and the number of bids are at 2, what's the percentage of games won? ### Answer: SELECT win__percentage FROM table_name_51 WHERE _number_of_bids = 2 AND conference = "west coast"
If a team had a percentage of games won recorded as .429, what Championship Game was played?
CREATE TABLE table_name_82 (championship_game VARCHAR, win__percentage VARCHAR)
SELECT championship_game FROM table_name_82 WHERE win__percentage = ".429"
### Context: CREATE TABLE table_name_82 (championship_game VARCHAR, win__percentage VARCHAR) ### Question: If a team had a percentage of games won recorded as .429, what Championship Game was played? ### Answer: SELECT championship_game FROM table_name_82 WHERE win__percentage = ".429"
What was the attendance for the game in Week 3?
CREATE TABLE table_name_94 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_94 WHERE week = 3
### Context: CREATE TABLE table_name_94 (attendance VARCHAR, week VARCHAR) ### Question: What was the attendance for the game in Week 3? ### Answer: SELECT attendance FROM table_name_94 WHERE week = 3
On what date was the opponent the Green Bay Packers?
CREATE TABLE table_name_43 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_43 WHERE opponent = "green bay packers"
### Context: CREATE TABLE table_name_43 (date VARCHAR, opponent VARCHAR) ### Question: On what date was the opponent the Green Bay Packers? ### Answer: SELECT date FROM table_name_43 WHERE opponent = "green bay packers"
When did Ismail Qemali Bej's term start?
CREATE TABLE table_name_61 (term_start VARCHAR, name VARCHAR)
SELECT term_start FROM table_name_61 WHERE name = "ismail qemali bej"
### Context: CREATE TABLE table_name_61 (term_start VARCHAR, name VARCHAR) ### Question: When did Ismail Qemali Bej's term start? ### Answer: SELECT term_start FROM table_name_61 WHERE name = "ismail qemali bej"
When did Fejzi Bej Alizoti's term end?
CREATE TABLE table_name_5 (term_end VARCHAR, name VARCHAR)
SELECT term_end FROM table_name_5 WHERE name = "fejzi bej alizoti"
### Context: CREATE TABLE table_name_5 (term_end VARCHAR, name VARCHAR) ### Question: When did Fejzi Bej Alizoti's term end? ### Answer: SELECT term_end FROM table_name_5 WHERE name = "fejzi bej alizoti"
When did the term end for the person who started their term on 28 November 1912?
CREATE TABLE table_name_89 (term_end VARCHAR, term_start VARCHAR)
SELECT term_end FROM table_name_89 WHERE term_start = "28 november 1912"
### Context: CREATE TABLE table_name_89 (term_end VARCHAR, term_start VARCHAR) ### Question: When did the term end for the person who started their term on 28 November 1912? ### Answer: SELECT term_end FROM table_name_89 WHERE term_start = "28 november 1912"
When did Fejzi Bej Alizoti's term start?
CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR)
SELECT term_start FROM table_name_38 WHERE name = "fejzi bej alizoti"
### Context: CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR) ### Question: When did Fejzi Bej Alizoti's term start? ### Answer: SELECT term_start FROM table_name_38 WHERE name = "fejzi bej alizoti"
What is the sum of Points 1, when Team is "Gainsborough Trinity", and when Played is greater than 46?
CREATE TABLE table_name_55 (points_1 INTEGER, team VARCHAR, played VARCHAR)
SELECT SUM(points_1) FROM table_name_55 WHERE team = "gainsborough trinity" AND played > 46
### Context: CREATE TABLE table_name_55 (points_1 INTEGER, team VARCHAR, played VARCHAR) ### Question: What is the sum of Points 1, when Team is "Gainsborough Trinity", and when Played is greater than 46? ### Answer: SELECT SUM(points_1) FROM table_name_55 WHERE team = "gainsborough trinity" AND played > 46
What is the total number of Points 1, when Lost is less than 20, and when Goals For is greater than 92?
CREATE TABLE table_name_10 (points_1 VARCHAR, lost VARCHAR, goals_for VARCHAR)
SELECT COUNT(points_1) FROM table_name_10 WHERE lost < 20 AND goals_for > 92
### Context: CREATE TABLE table_name_10 (points_1 VARCHAR, lost VARCHAR, goals_for VARCHAR) ### Question: What is the total number of Points 1, when Lost is less than 20, and when Goals For is greater than 92? ### Answer: SELECT COUNT(points_1) FROM table_name_10 WHERE lost < 20 AND goals_for > 92
What is the total number of Position, when Played is less than 46?
CREATE TABLE table_name_51 (position VARCHAR, played INTEGER)
SELECT COUNT(position) FROM table_name_51 WHERE played < 46
### Context: CREATE TABLE table_name_51 (position VARCHAR, played INTEGER) ### Question: What is the total number of Position, when Played is less than 46? ### Answer: SELECT COUNT(position) FROM table_name_51 WHERE played < 46
Which Location has a Frequency of 102.5 fm?
CREATE TABLE table_name_4 (location VARCHAR, frequency VARCHAR)
SELECT location FROM table_name_4 WHERE frequency = "102.5 fm"
### Context: CREATE TABLE table_name_4 (location VARCHAR, frequency VARCHAR) ### Question: Which Location has a Frequency of 102.5 fm? ### Answer: SELECT location FROM table_name_4 WHERE frequency = "102.5 fm"
Which Call sign has a Frequency of 102.5 fm?
CREATE TABLE table_name_26 (call_sign VARCHAR, frequency VARCHAR)
SELECT call_sign FROM table_name_26 WHERE frequency = "102.5 fm"
### Context: CREATE TABLE table_name_26 (call_sign VARCHAR, frequency VARCHAR) ### Question: Which Call sign has a Frequency of 102.5 fm? ### Answer: SELECT call_sign FROM table_name_26 WHERE frequency = "102.5 fm"
Which Owner has a Name / Format of 105.3 kool fm - hot adult contemporary?
CREATE TABLE table_name_18 (owner VARCHAR, name___format VARCHAR)
SELECT owner FROM table_name_18 WHERE name___format = "105.3 kool fm - hot adult contemporary"
### Context: CREATE TABLE table_name_18 (owner VARCHAR, name___format VARCHAR) ### Question: Which Owner has a Name / Format of 105.3 kool fm - hot adult contemporary? ### Answer: SELECT owner FROM table_name_18 WHERE name___format = "105.3 kool fm - hot adult contemporary"
Which Location has a Call sign of cjtw-fm?
CREATE TABLE table_name_90 (location VARCHAR, call_sign VARCHAR)
SELECT location FROM table_name_90 WHERE call_sign = "cjtw-fm"
### Context: CREATE TABLE table_name_90 (location VARCHAR, call_sign VARCHAR) ### Question: Which Location has a Call sign of cjtw-fm? ### Answer: SELECT location FROM table_name_90 WHERE call_sign = "cjtw-fm"
Which Frequency has an Owner of rogers communications rogers radio, and a Call sign of cikz-fm?
CREATE TABLE table_name_77 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR)
SELECT frequency FROM table_name_77 WHERE owner = "rogers communications rogers radio" AND call_sign = "cikz-fm"
### Context: CREATE TABLE table_name_77 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR) ### Question: Which Frequency has an Owner of rogers communications rogers radio, and a Call sign of cikz-fm? ### Answer: SELECT frequency FROM table_name_77 WHERE owner = "rogers communications rogers radio" AND call_sign = "cikz-fm"