question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the highest Feb value having an opponent of the Philadelphia Flyers and is after game 63?
CREATE TABLE table_name_43 (february INTEGER, opponent VARCHAR, game VARCHAR)
SELECT MAX(february) FROM table_name_43 WHERE opponent = "philadelphia flyers" AND game > 63
### Context: CREATE TABLE table_name_43 (february INTEGER, opponent VARCHAR, game VARCHAR) ### Question: What is the highest Feb value having an opponent of the Philadelphia Flyers and is after game 63? ### Answer: SELECT MAX(february) FROM table_name_43 WHERE opponent = "philadelphia flyers" AND game > 63
Who was the opponent in games over 58, after Feb 16, and having a record of 40-20-4?
CREATE TABLE table_name_47 (opponent VARCHAR, record VARCHAR, game VARCHAR, february VARCHAR)
SELECT opponent FROM table_name_47 WHERE game > 58 AND february > 16 AND record = "40-20-4"
### Context: CREATE TABLE table_name_47 (opponent VARCHAR, record VARCHAR, game VARCHAR, february VARCHAR) ### Question: Who was the opponent in games over 58, after Feb 16, and having a record of 40-20-4? ### Answer: SELECT opponent FROM table_name_47 WHERE game > 58 AND february > 16 AND record = "40-20-4"
Which Year has a Genre of rock (track)?
CREATE TABLE table_name_3 (year INTEGER, genre VARCHAR)
SELECT SUM(year) FROM table_name_3 WHERE genre = "rock (track)"
### Context: CREATE TABLE table_name_3 (year INTEGER, genre VARCHAR) ### Question: Which Year has a Genre of rock (track)? ### Answer: SELECT SUM(year) FROM table_name_3 WHERE genre = "rock (track)"
Which Year Inducted is the highest one that has a Year smaller than 1965?
CREATE TABLE table_name_28 (year INTEGER)
SELECT MAX(year) AS Inducted FROM table_name_28 WHERE year < 1965
### Context: CREATE TABLE table_name_28 (year INTEGER) ### Question: Which Year Inducted is the highest one that has a Year smaller than 1965? ### Answer: SELECT MAX(year) AS Inducted FROM table_name_28 WHERE year < 1965
Which Overall is the highest one that has a Pick # smaller than 9, and a Name of mike pearson?
CREATE TABLE table_name_3 (overall INTEGER, pick__number VARCHAR, name VARCHAR)
SELECT MAX(overall) FROM table_name_3 WHERE pick__number < 9 AND name = "mike pearson"
### Context: CREATE TABLE table_name_3 (overall INTEGER, pick__number VARCHAR, name VARCHAR) ### Question: Which Overall is the highest one that has a Pick # smaller than 9, and a Name of mike pearson? ### Answer: SELECT MAX(overall) FROM table_name_3 WHERE pick__number < 9 AND name = "mike pearson"
Which Round is the lowest one that has a Position of wide receiver, and an Overall smaller than 222?
CREATE TABLE table_name_34 (round INTEGER, position VARCHAR, overall VARCHAR)
SELECT MIN(round) FROM table_name_34 WHERE position = "wide receiver" AND overall < 222
### Context: CREATE TABLE table_name_34 (round INTEGER, position VARCHAR, overall VARCHAR) ### Question: Which Round is the lowest one that has a Position of wide receiver, and an Overall smaller than 222? ### Answer: SELECT MIN(round) FROM table_name_34 WHERE position = "wide receiver" AND overall < 222
What was the Record on September 21?
CREATE TABLE table_name_78 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_78 WHERE date = "september 21"
### Context: CREATE TABLE table_name_78 (record VARCHAR, date VARCHAR) ### Question: What was the Record on September 21? ### Answer: SELECT record FROM table_name_78 WHERE date = "september 21"
What was the record the day David Weathers (15) had a save?
CREATE TABLE table_name_10 (record VARCHAR, save VARCHAR)
SELECT record FROM table_name_10 WHERE save = "david weathers (15)"
### Context: CREATE TABLE table_name_10 (record VARCHAR, save VARCHAR) ### Question: What was the record the day David Weathers (15) had a save? ### Answer: SELECT record FROM table_name_10 WHERE save = "david weathers (15)"
Who had a save on September 2?
CREATE TABLE table_name_49 (save VARCHAR, date VARCHAR)
SELECT save FROM table_name_49 WHERE date = "september 2"
### Context: CREATE TABLE table_name_49 (save VARCHAR, date VARCHAR) ### Question: Who had a save on September 2? ### Answer: SELECT save FROM table_name_49 WHERE date = "september 2"
What was the loss on September 2?
CREATE TABLE table_name_16 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_16 WHERE date = "september 2"
### Context: CREATE TABLE table_name_16 (loss VARCHAR, date VARCHAR) ### Question: What was the loss on September 2? ### Answer: SELECT loss FROM table_name_16 WHERE date = "september 2"
What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses?
CREATE TABLE table_name_70 (byes INTEGER, losses VARCHAR, draws VARCHAR, wins VARCHAR)
SELECT SUM(byes) FROM table_name_70 WHERE draws = 1 AND wins = 5 AND losses < 12
### Context: CREATE TABLE table_name_70 (byes INTEGER, losses VARCHAR, draws VARCHAR, wins VARCHAR) ### Question: What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses? ### Answer: SELECT SUM(byes) FROM table_name_70 WHERE draws = 1 AND wins = 5 AND losses < 12
What is the total number of byes associated with fewer than 8 wins and fewer than 1 draw?
CREATE TABLE table_name_67 (byes VARCHAR, draws VARCHAR, wins VARCHAR)
SELECT COUNT(byes) FROM table_name_67 WHERE draws < 1 AND wins < 8
### Context: CREATE TABLE table_name_67 (byes VARCHAR, draws VARCHAR, wins VARCHAR) ### Question: What is the total number of byes associated with fewer than 8 wins and fewer than 1 draw? ### Answer: SELECT COUNT(byes) FROM table_name_67 WHERE draws < 1 AND wins < 8
What is the NTFA Div 1 team that has 15 wins and less than 1 draw?
CREATE TABLE table_name_30 (ntfa_div_1 VARCHAR, draws VARCHAR, wins VARCHAR)
SELECT ntfa_div_1 FROM table_name_30 WHERE draws < 1 AND wins = 15
### Context: CREATE TABLE table_name_30 (ntfa_div_1 VARCHAR, draws VARCHAR, wins VARCHAR) ### Question: What is the NTFA Div 1 team that has 15 wins and less than 1 draw? ### Answer: SELECT ntfa_div_1 FROM table_name_30 WHERE draws < 1 AND wins = 15
What is the average number of losses for teams with 0 draws and 0 byes?
CREATE TABLE table_name_78 (losses INTEGER, draws VARCHAR, byes VARCHAR)
SELECT AVG(losses) FROM table_name_78 WHERE draws = 0 AND byes < 0
### Context: CREATE TABLE table_name_78 (losses INTEGER, draws VARCHAR, byes VARCHAR) ### Question: What is the average number of losses for teams with 0 draws and 0 byes? ### Answer: SELECT AVG(losses) FROM table_name_78 WHERE draws = 0 AND byes < 0
What is the most number of losses for teams with 5 wins and an against value under 1607?
CREATE TABLE table_name_65 (losses INTEGER, wins VARCHAR, against VARCHAR)
SELECT MAX(losses) FROM table_name_65 WHERE wins = 5 AND against < 1607
### Context: CREATE TABLE table_name_65 (losses INTEGER, wins VARCHAR, against VARCHAR) ### Question: What is the most number of losses for teams with 5 wins and an against value under 1607? ### Answer: SELECT MAX(losses) FROM table_name_65 WHERE wins = 5 AND against < 1607
Race that has a Podium larger than 1, and a Season of 1982, and a flap smaller than 1 had how many number of races?
CREATE TABLE table_name_72 (race VARCHAR, flap VARCHAR, podium VARCHAR, season VARCHAR)
SELECT COUNT(race) FROM table_name_72 WHERE podium > 1 AND season = "1982" AND flap < 1
### Context: CREATE TABLE table_name_72 (race VARCHAR, flap VARCHAR, podium VARCHAR, season VARCHAR) ### Question: Race that has a Podium larger than 1, and a Season of 1982, and a flap smaller than 1 had how many number of races? ### Answer: SELECT COUNT(race) FROM table_name_72 WHERE podium > 1 AND season = "1982" AND flap < 1
Pole smaller than 0 had what lowest podium?
CREATE TABLE table_name_92 (podium INTEGER, pole INTEGER)
SELECT MIN(podium) FROM table_name_92 WHERE pole < 0
### Context: CREATE TABLE table_name_92 (podium INTEGER, pole INTEGER) ### Question: Pole smaller than 0 had what lowest podium? ### Answer: SELECT MIN(podium) FROM table_name_92 WHERE pole < 0
Flap of 0, and a Race smaller than 2, and a Season of 1989, and a Pole smaller than 0 had what average podium?
CREATE TABLE table_name_10 (podium INTEGER, pole VARCHAR, season VARCHAR, flap VARCHAR, race VARCHAR)
SELECT AVG(podium) FROM table_name_10 WHERE flap = 0 AND race < 2 AND season = "1989" AND pole < 0
### Context: CREATE TABLE table_name_10 (podium INTEGER, pole VARCHAR, season VARCHAR, flap VARCHAR, race VARCHAR) ### Question: Flap of 0, and a Race smaller than 2, and a Season of 1989, and a Pole smaller than 0 had what average podium? ### Answer: SELECT AVG(podium) FROM table_name_10 WHERE flap = 0 AND race < 2 AND season = "1989" AND pole < 0
What was the record on august 24?
CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_73 WHERE date = "august 24"
### Context: CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR) ### Question: What was the record on august 24? ### Answer: SELECT record FROM table_name_73 WHERE date = "august 24"
Elevation of 11,158 feet 3401 m had what route?
CREATE TABLE table_name_85 (route VARCHAR, elevation VARCHAR)
SELECT route FROM table_name_85 WHERE elevation = "11,158 feet 3401 m"
### Context: CREATE TABLE table_name_85 (route VARCHAR, elevation VARCHAR) ### Question: Elevation of 11,158 feet 3401 m had what route? ### Answer: SELECT route FROM table_name_85 WHERE elevation = "11,158 feet 3401 m"
Route larger than 24, and a Highway of trail ridge road had what elevation?
CREATE TABLE table_name_24 (elevation VARCHAR, route VARCHAR, highway VARCHAR)
SELECT elevation FROM table_name_24 WHERE route > 24 AND highway = "trail ridge road"
### Context: CREATE TABLE table_name_24 (elevation VARCHAR, route VARCHAR, highway VARCHAR) ### Question: Route larger than 24, and a Highway of trail ridge road had what elevation? ### Answer: SELECT elevation FROM table_name_24 WHERE route > 24 AND highway = "trail ridge road"
Elevation of 12,183 feet 3713 m is what average route?
CREATE TABLE table_name_12 (route INTEGER, elevation VARCHAR)
SELECT AVG(route) FROM table_name_12 WHERE elevation = "12,183 feet 3713 m"
### Context: CREATE TABLE table_name_12 (route INTEGER, elevation VARCHAR) ### Question: Elevation of 12,183 feet 3713 m is what average route? ### Answer: SELECT AVG(route) FROM table_name_12 WHERE elevation = "12,183 feet 3713 m"
What Opponent has a Results¹ of 1:3?
CREATE TABLE table_name_28 (opponent VARCHAR, results¹ VARCHAR)
SELECT opponent FROM table_name_28 WHERE results¹ = "1:3"
### Context: CREATE TABLE table_name_28 (opponent VARCHAR, results¹ VARCHAR) ### Question: What Opponent has a Results¹ of 1:3? ### Answer: SELECT opponent FROM table_name_28 WHERE results¹ = "1:3"
On what Date was the Results¹ 1:2?
CREATE TABLE table_name_76 (date VARCHAR, results¹ VARCHAR)
SELECT date FROM table_name_76 WHERE results¹ = "1:2"
### Context: CREATE TABLE table_name_76 (date VARCHAR, results¹ VARCHAR) ### Question: On what Date was the Results¹ 1:2? ### Answer: SELECT date FROM table_name_76 WHERE results¹ = "1:2"
What City had Results¹ of 1:2?
CREATE TABLE table_name_39 (city VARCHAR, results¹ VARCHAR)
SELECT city FROM table_name_39 WHERE results¹ = "1:2"
### Context: CREATE TABLE table_name_39 (city VARCHAR, results¹ VARCHAR) ### Question: What City had Results¹ of 1:2? ### Answer: SELECT city FROM table_name_39 WHERE results¹ = "1:2"
On what Date was Wales the Opponent?
CREATE TABLE table_name_76 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_76 WHERE opponent = "wales"
### Context: CREATE TABLE table_name_76 (date VARCHAR, opponent VARCHAR) ### Question: On what Date was Wales the Opponent? ### Answer: SELECT date FROM table_name_76 WHERE opponent = "wales"
In what City was Bulgaria the Opponent with Results¹ of 1:0?
CREATE TABLE table_name_6 (city VARCHAR, results¹ VARCHAR, opponent VARCHAR)
SELECT city FROM table_name_6 WHERE results¹ = "1:0" AND opponent = "bulgaria"
### Context: CREATE TABLE table_name_6 (city VARCHAR, results¹ VARCHAR, opponent VARCHAR) ### Question: In what City was Bulgaria the Opponent with Results¹ of 1:0? ### Answer: SELECT city FROM table_name_6 WHERE results¹ = "1:0" AND opponent = "bulgaria"
What Vancouver canucks game was on a date closest to November 4?
CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, november VARCHAR)
SELECT MAX(game) FROM table_name_60 WHERE opponent = "vancouver canucks" AND november < 4
### Context: CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, november VARCHAR) ### Question: What Vancouver canucks game was on a date closest to November 4? ### Answer: SELECT MAX(game) FROM table_name_60 WHERE opponent = "vancouver canucks" AND november < 4
Name the year for jerry sichting
CREATE TABLE table_name_26 (year VARCHAR, color_commentator_s_ VARCHAR)
SELECT year FROM table_name_26 WHERE color_commentator_s_ = "jerry sichting"
### Context: CREATE TABLE table_name_26 (year VARCHAR, color_commentator_s_ VARCHAR) ### Question: Name the year for jerry sichting ### Answer: SELECT year FROM table_name_26 WHERE color_commentator_s_ = "jerry sichting"
Name the studio host for glenn ordway and jerry sichting with year of 1993-94
CREATE TABLE table_name_91 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, color_commentator_s_ VARCHAR)
SELECT studio_host FROM table_name_91 WHERE play_by_play = "glenn ordway" AND color_commentator_s_ = "jerry sichting" AND year = "1993-94"
### Context: CREATE TABLE table_name_91 (studio_host VARCHAR, year VARCHAR, play_by_play VARCHAR, color_commentator_s_ VARCHAR) ### Question: Name the studio host for glenn ordway and jerry sichting with year of 1993-94 ### Answer: SELECT studio_host FROM table_name_91 WHERE play_by_play = "glenn ordway" AND color_commentator_s_ = "jerry sichting" AND year = "1993-94"
Name the flagship station for cedric maxwell and year of 1995-96
CREATE TABLE table_name_74 (flagship_station VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR)
SELECT flagship_station FROM table_name_74 WHERE color_commentator_s_ = "cedric maxwell" AND year = "1995-96"
### Context: CREATE TABLE table_name_74 (flagship_station VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR) ### Question: Name the flagship station for cedric maxwell and year of 1995-96 ### Answer: SELECT flagship_station FROM table_name_74 WHERE color_commentator_s_ = "cedric maxwell" AND year = "1995-96"
Who was the architect of the 10 floor building with a height of 42 M?
CREATE TABLE table_name_68 (architect VARCHAR, floors VARCHAR, height_ VARCHAR, m VARCHAR)
SELECT architect FROM table_name_68 WHERE height_[m] = 42 AND floors = 10
### Context: CREATE TABLE table_name_68 (architect VARCHAR, floors VARCHAR, height_ VARCHAR, m VARCHAR) ### Question: Who was the architect of the 10 floor building with a height of 42 M? ### Answer: SELECT architect FROM table_name_68 WHERE height_[m] = 42 AND floors = 10
What is the height of the building built by architects Ross and Macfarlane?
CREATE TABLE table_name_27 (height_ VARCHAR, m VARCHAR, architect VARCHAR)
SELECT height_[m] FROM table_name_27 WHERE architect = "ross and macfarlane"
### Context: CREATE TABLE table_name_27 (height_ VARCHAR, m VARCHAR, architect VARCHAR) ### Question: What is the height of the building built by architects Ross and Macfarlane? ### Answer: SELECT height_[m] FROM table_name_27 WHERE architect = "ross and macfarlane"
Who was the architect that built the Electric Railway Chambers before 1915?
CREATE TABLE table_name_43 (architect VARCHAR, built VARCHAR, building VARCHAR)
SELECT architect FROM table_name_43 WHERE built < 1915 AND building = "electric railway chambers"
### Context: CREATE TABLE table_name_43 (architect VARCHAR, built VARCHAR, building VARCHAR) ### Question: Who was the architect that built the Electric Railway Chambers before 1915? ### Answer: SELECT architect FROM table_name_43 WHERE built < 1915 AND building = "electric railway chambers"
What is the Time on july 18 that has a Loss of lilly (3-3)?
CREATE TABLE table_name_34 (time VARCHAR, date VARCHAR, loss VARCHAR)
SELECT time FROM table_name_34 WHERE date = "july 18" AND loss = "lilly (3-3)"
### Context: CREATE TABLE table_name_34 (time VARCHAR, date VARCHAR, loss VARCHAR) ### Question: What is the Time on july 18 that has a Loss of lilly (3-3)? ### Answer: SELECT time FROM table_name_34 WHERE date = "july 18" AND loss = "lilly (3-3)"
Which Opponent has a Record of 43-56?
CREATE TABLE table_name_75 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_75 WHERE record = "43-56"
### Context: CREATE TABLE table_name_75 (opponent VARCHAR, record VARCHAR) ### Question: Which Opponent has a Record of 43-56? ### Answer: SELECT opponent FROM table_name_75 WHERE record = "43-56"
What is the Score on July 18 that has Record of 41-51?
CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR, record VARCHAR)
SELECT score FROM table_name_71 WHERE date = "july 18" AND record = "41-51"
### Context: CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR, record VARCHAR) ### Question: What is the Score on July 18 that has Record of 41-51? ### Answer: SELECT score FROM table_name_71 WHERE date = "july 18" AND record = "41-51"
Which Record is on july 31?
CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_23 WHERE date = "july 31"
### Context: CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR) ### Question: Which Record is on july 31? ### Answer: SELECT record FROM table_name_23 WHERE date = "july 31"
Which Opponent has a Loss of weaver (9-9)?
CREATE TABLE table_name_18 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_18 WHERE loss = "weaver (9-9)"
### Context: CREATE TABLE table_name_18 (opponent VARCHAR, loss VARCHAR) ### Question: Which Opponent has a Loss of weaver (9-9)? ### Answer: SELECT opponent FROM table_name_18 WHERE loss = "weaver (9-9)"
Which Season was the Poles greater than 14?
CREATE TABLE table_name_27 (season VARCHAR, poles INTEGER)
SELECT season FROM table_name_27 WHERE poles > 14
### Context: CREATE TABLE table_name_27 (season VARCHAR, poles INTEGER) ### Question: Which Season was the Poles greater than 14? ### Answer: SELECT season FROM table_name_27 WHERE poles > 14
Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver?
CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR)
SELECT MAX(season) FROM table_name_7 WHERE percentage = "67%" AND driver = "alberto ascari"
### Context: CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR) ### Question: Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver? ### Answer: SELECT MAX(season) FROM table_name_7 WHERE percentage = "67%" AND driver = "alberto ascari"
Name the Driver that has Races greater than 16?
CREATE TABLE table_name_16 (driver VARCHAR, races INTEGER)
SELECT driver FROM table_name_16 WHERE races > 16
### Context: CREATE TABLE table_name_16 (driver VARCHAR, races INTEGER) ### Question: Name the Driver that has Races greater than 16? ### Answer: SELECT driver FROM table_name_16 WHERE races > 16
What is the average Long that has a GP-GS less than 14, a AVg/G less than 0.8 and a Gain less than 3 and a Loss greater than 8?
CREATE TABLE table_name_34 (long INTEGER, loss VARCHAR, gain VARCHAR, gp_gs VARCHAR, avg_g VARCHAR)
SELECT AVG(long) FROM table_name_34 WHERE gp_gs < 14 AND avg_g < 0.8 AND gain < 3 AND loss > 8
### Context: CREATE TABLE table_name_34 (long INTEGER, loss VARCHAR, gain VARCHAR, gp_gs VARCHAR, avg_g VARCHAR) ### Question: What is the average Long that has a GP-GS less than 14, a AVg/G less than 0.8 and a Gain less than 3 and a Loss greater than 8? ### Answer: SELECT AVG(long) FROM table_name_34 WHERE gp_gs < 14 AND avg_g < 0.8 AND gain < 3 AND loss > 8
What is the lowest Avg/G with a Long less than 0?
CREATE TABLE table_name_99 (avg_g INTEGER, long INTEGER)
SELECT MIN(avg_g) FROM table_name_99 WHERE long < 0
### Context: CREATE TABLE table_name_99 (avg_g INTEGER, long INTEGER) ### Question: What is the lowest Avg/G with a Long less than 0? ### Answer: SELECT MIN(avg_g) FROM table_name_99 WHERE long < 0
What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30?
CREATE TABLE table_name_79 (avg_g INTEGER, name VARCHAR, long VARCHAR)
SELECT SUM(avg_g) FROM table_name_79 WHERE name = "blaine gabbert" AND long > 30
### Context: CREATE TABLE table_name_79 (avg_g INTEGER, name VARCHAR, long VARCHAR) ### Question: What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30? ### Answer: SELECT SUM(avg_g) FROM table_name_79 WHERE name = "blaine gabbert" AND long > 30
What is the total number of Long with a Av/g of 124.9 but Loss greater than 0?
CREATE TABLE table_name_3 (long VARCHAR, loss VARCHAR, avg_g VARCHAR)
SELECT COUNT(long) FROM table_name_3 WHERE loss > 0 AND avg_g = 124.9
### Context: CREATE TABLE table_name_3 (long VARCHAR, loss VARCHAR, avg_g VARCHAR) ### Question: What is the total number of Long with a Av/g of 124.9 but Loss greater than 0? ### Answer: SELECT COUNT(long) FROM table_name_3 WHERE loss > 0 AND avg_g = 124.9
What date has parlophone as the label, and lp as a format?
CREATE TABLE table_name_17 (date VARCHAR, label VARCHAR, format VARCHAR)
SELECT date FROM table_name_17 WHERE label = "parlophone" AND format = "lp"
### Context: CREATE TABLE table_name_17 (date VARCHAR, label VARCHAR, format VARCHAR) ### Question: What date has parlophone as the label, and lp as a format? ### Answer: SELECT date FROM table_name_17 WHERE label = "parlophone" AND format = "lp"
What school has oregon as the state, and ashland as the city?
CREATE TABLE table_name_37 (school VARCHAR, state VARCHAR, city VARCHAR)
SELECT school FROM table_name_37 WHERE state = "oregon" AND city = "ashland"
### Context: CREATE TABLE table_name_37 (school VARCHAR, state VARCHAR, city VARCHAR) ### Question: What school has oregon as the state, and ashland as the city? ### Answer: SELECT school FROM table_name_37 WHERE state = "oregon" AND city = "ashland"
What conference has mayville state as the school?
CREATE TABLE table_name_71 (conference VARCHAR, school VARCHAR)
SELECT conference FROM table_name_71 WHERE school = "mayville state"
### Context: CREATE TABLE table_name_71 (conference VARCHAR, school VARCHAR) ### Question: What conference has mayville state as the school? ### Answer: SELECT conference FROM table_name_71 WHERE school = "mayville state"
What school has belleville as the city?
CREATE TABLE table_name_37 (school VARCHAR, city VARCHAR)
SELECT school FROM table_name_37 WHERE city = "belleville"
### Context: CREATE TABLE table_name_37 (school VARCHAR, city VARCHAR) ### Question: What school has belleville as the city? ### Answer: SELECT school FROM table_name_37 WHERE city = "belleville"
What city has trojans as the team, and taylor as the school?
CREATE TABLE table_name_43 (city VARCHAR, team VARCHAR, school VARCHAR)
SELECT city FROM table_name_43 WHERE team = "trojans" AND school = "taylor"
### Context: CREATE TABLE table_name_43 (city VARCHAR, team VARCHAR, school VARCHAR) ### Question: What city has trojans as the team, and taylor as the school? ### Answer: SELECT city FROM table_name_43 WHERE team = "trojans" AND school = "taylor"
What team has great plains as the conference, and concordia (ne) as the school?
CREATE TABLE table_name_58 (team VARCHAR, conference VARCHAR, school VARCHAR)
SELECT team FROM table_name_58 WHERE conference = "great plains" AND school = "concordia (ne)"
### Context: CREATE TABLE table_name_58 (team VARCHAR, conference VARCHAR, school VARCHAR) ### Question: What team has great plains as the conference, and concordia (ne) as the school? ### Answer: SELECT team FROM table_name_58 WHERE conference = "great plains" AND school = "concordia (ne)"
What school is in hillsboro city?
CREATE TABLE table_name_53 (school VARCHAR, city VARCHAR)
SELECT school FROM table_name_53 WHERE city = "hillsboro"
### Context: CREATE TABLE table_name_53 (school VARCHAR, city VARCHAR) ### Question: What school is in hillsboro city? ### Answer: SELECT school FROM table_name_53 WHERE city = "hillsboro"
How many games have a February larger than 11, and a Record of 23-7-8?
CREATE TABLE table_name_92 (game VARCHAR, february VARCHAR, record VARCHAR)
SELECT COUNT(game) FROM table_name_92 WHERE february > 11 AND record = "23-7-8"
### Context: CREATE TABLE table_name_92 (game VARCHAR, february VARCHAR, record VARCHAR) ### Question: How many games have a February larger than 11, and a Record of 23-7-8? ### Answer: SELECT COUNT(game) FROM table_name_92 WHERE february > 11 AND record = "23-7-8"
How much February has a Game larger than 37, and an Opponent of chicago black hawks?
CREATE TABLE table_name_95 (february VARCHAR, game VARCHAR, opponent VARCHAR)
SELECT COUNT(february) FROM table_name_95 WHERE game > 37 AND opponent = "chicago black hawks"
### Context: CREATE TABLE table_name_95 (february VARCHAR, game VARCHAR, opponent VARCHAR) ### Question: How much February has a Game larger than 37, and an Opponent of chicago black hawks? ### Answer: SELECT COUNT(february) FROM table_name_95 WHERE game > 37 AND opponent = "chicago black hawks"
Which February has a Game of 40?
CREATE TABLE table_name_91 (february VARCHAR, game VARCHAR)
SELECT february FROM table_name_91 WHERE game = 40
### Context: CREATE TABLE table_name_91 (february VARCHAR, game VARCHAR) ### Question: Which February has a Game of 40? ### Answer: SELECT february FROM table_name_91 WHERE game = 40
Which Record has a February smaller than 8, and an Opponent of montreal canadiens?
CREATE TABLE table_name_51 (record VARCHAR, february VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_51 WHERE february < 8 AND opponent = "montreal canadiens"
### Context: CREATE TABLE table_name_51 (record VARCHAR, february VARCHAR, opponent VARCHAR) ### Question: Which Record has a February smaller than 8, and an Opponent of montreal canadiens? ### Answer: SELECT record FROM table_name_51 WHERE february < 8 AND opponent = "montreal canadiens"
Which Score has a Game larger than 40, and a Record of 25-10-8?
CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR, record VARCHAR)
SELECT score FROM table_name_81 WHERE game > 40 AND record = "25-10-8"
### Context: CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR, record VARCHAR) ### Question: Which Score has a Game larger than 40, and a Record of 25-10-8? ### Answer: SELECT score FROM table_name_81 WHERE game > 40 AND record = "25-10-8"
What was the team performance in 1977?
CREATE TABLE table_name_28 (team_performance VARCHAR, year VARCHAR)
SELECT team_performance FROM table_name_28 WHERE year = 1977
### Context: CREATE TABLE table_name_28 (team_performance VARCHAR, year VARCHAR) ### Question: What was the team performance in 1977? ### Answer: SELECT team_performance FROM table_name_28 WHERE year = 1977
What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3?
CREATE TABLE table_name_47 (position VARCHAR, team_performance VARCHAR, team_defense_rank VARCHAR, year VARCHAR)
SELECT position FROM table_name_47 WHERE team_defense_rank > 3 AND year < 1992 AND team_performance = "lost super bowl xxv"
### Context: CREATE TABLE table_name_47 (position VARCHAR, team_performance VARCHAR, team_defense_rank VARCHAR, year VARCHAR) ### Question: What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3? ### Answer: SELECT position FROM table_name_47 WHERE team_defense_rank > 3 AND year < 1992 AND team_performance = "lost super bowl xxv"
What round was Joe Patton selected with a pick over 68?
CREATE TABLE table_name_94 (round VARCHAR, pick VARCHAR, player VARCHAR)
SELECT round FROM table_name_94 WHERE pick > 68 AND player = "joe patton"
### Context: CREATE TABLE table_name_94 (round VARCHAR, pick VARCHAR, player VARCHAR) ### Question: What round was Joe Patton selected with a pick over 68? ### Answer: SELECT round FROM table_name_94 WHERE pick > 68 AND player = "joe patton"
Which Sail number has a Position smaller than 2?
CREATE TABLE table_name_47 (sail_number VARCHAR, position INTEGER)
SELECT sail_number FROM table_name_47 WHERE position < 2
### Context: CREATE TABLE table_name_47 (sail_number VARCHAR, position INTEGER) ### Question: Which Sail number has a Position smaller than 2? ### Answer: SELECT sail_number FROM table_name_47 WHERE position < 2
WHICH State/country that has ray roberts?
CREATE TABLE table_name_43 (state_country VARCHAR, skipper VARCHAR)
SELECT state_country FROM table_name_43 WHERE skipper = "ray roberts"
### Context: CREATE TABLE table_name_43 (state_country VARCHAR, skipper VARCHAR) ### Question: WHICH State/country that has ray roberts? ### Answer: SELECT state_country FROM table_name_43 WHERE skipper = "ray roberts"
What surface did Smeets play on during the Kuwait tournament?
CREATE TABLE table_name_30 (surface VARCHAR, tournament VARCHAR)
SELECT surface FROM table_name_30 WHERE tournament = "kuwait"
### Context: CREATE TABLE table_name_30 (surface VARCHAR, tournament VARCHAR) ### Question: What surface did Smeets play on during the Kuwait tournament? ### Answer: SELECT surface FROM table_name_30 WHERE tournament = "kuwait"
What tournament did Smeets play against Mark nielsen?
CREATE TABLE table_name_11 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_11 WHERE opponent_in_the_final = "mark nielsen"
### Context: CREATE TABLE table_name_11 (tournament VARCHAR, opponent_in_the_final VARCHAR) ### Question: What tournament did Smeets play against Mark nielsen? ### Answer: SELECT tournament FROM table_name_11 WHERE opponent_in_the_final = "mark nielsen"
Who was the opponent during the tournament in Kuwait?
CREATE TABLE table_name_91 (opponent_in_the_final VARCHAR, tournament VARCHAR)
SELECT opponent_in_the_final FROM table_name_91 WHERE tournament = "kuwait"
### Context: CREATE TABLE table_name_91 (opponent_in_the_final VARCHAR, tournament VARCHAR) ### Question: Who was the opponent during the tournament in Kuwait? ### Answer: SELECT opponent_in_the_final FROM table_name_91 WHERE tournament = "kuwait"
What is the weight of the player from the vk primorac kotor club?
CREATE TABLE table_name_42 (weight VARCHAR, club VARCHAR)
SELECT weight FROM table_name_42 WHERE club = "vk primorac kotor"
### Context: CREATE TABLE table_name_42 (weight VARCHAR, club VARCHAR) ### Question: What is the weight of the player from the vk primorac kotor club? ### Answer: SELECT weight FROM table_name_42 WHERE club = "vk primorac kotor"
What is the weight of the player from pvk jadran club?
CREATE TABLE table_name_96 (weight VARCHAR, club VARCHAR)
SELECT weight FROM table_name_96 WHERE club = "pvk jadran"
### Context: CREATE TABLE table_name_96 (weight VARCHAR, club VARCHAR) ### Question: What is the weight of the player from pvk jadran club? ### Answer: SELECT weight FROM table_name_96 WHERE club = "pvk jadran"
What is the name of the player from club pro recco?
CREATE TABLE table_name_87 (name_v_t_e VARCHAR, club VARCHAR)
SELECT name_v_t_e FROM table_name_87 WHERE club = "pro recco"
### Context: CREATE TABLE table_name_87 (name_v_t_e VARCHAR, club VARCHAR) ### Question: What is the name of the player from club pro recco? ### Answer: SELECT name_v_t_e FROM table_name_87 WHERE club = "pro recco"
What is the height of the player from club vk primorac kotor who plays gk?
CREATE TABLE table_name_96 (height VARCHAR, pos VARCHAR, club VARCHAR)
SELECT height FROM table_name_96 WHERE pos = "gk" AND club = "vk primorac kotor"
### Context: CREATE TABLE table_name_96 (height VARCHAR, pos VARCHAR, club VARCHAR) ### Question: What is the height of the player from club vk primorac kotor who plays gk? ### Answer: SELECT height FROM table_name_96 WHERE pos = "gk" AND club = "vk primorac kotor"
What is Team 1 where Team 2 is gombe united f.c.?
CREATE TABLE table_name_23 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_23 WHERE team_2 = "gombe united f.c."
### Context: CREATE TABLE table_name_23 (team_1 VARCHAR, team_2 VARCHAR) ### Question: What is Team 1 where Team 2 is gombe united f.c.? ### Answer: SELECT team_1 FROM table_name_23 WHERE team_2 = "gombe united f.c."
What is Team 1 where Team 2 is al tahrir?
CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_13 WHERE team_2 = "al tahrir"
### Context: CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR) ### Question: What is Team 1 where Team 2 is al tahrir? ### Answer: SELECT team_1 FROM table_name_13 WHERE team_2 = "al tahrir"
What is the 2nd leg where Team 2 is fc 105 libreville?
CREATE TABLE table_name_9 (team_2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_9 WHERE team_2 = "fc 105 libreville"
### Context: CREATE TABLE table_name_9 (team_2 VARCHAR) ### Question: What is the 2nd leg where Team 2 is fc 105 libreville? ### Answer: SELECT 2 AS nd_leg FROM table_name_9 WHERE team_2 = "fc 105 libreville"
What was the course called that had an Edition of 117th?
CREATE TABLE table_name_68 (course VARCHAR, edition VARCHAR)
SELECT course FROM table_name_68 WHERE edition = "117th"
### Context: CREATE TABLE table_name_68 (course VARCHAR, edition VARCHAR) ### Question: What was the course called that had an Edition of 117th? ### Answer: SELECT course FROM table_name_68 WHERE edition = "117th"
What was the earliest year that had a location of Brookline, Massachusetts?
CREATE TABLE table_name_78 (year INTEGER, location VARCHAR)
SELECT MIN(year) FROM table_name_78 WHERE location = "brookline, massachusetts"
### Context: CREATE TABLE table_name_78 (year INTEGER, location VARCHAR) ### Question: What was the earliest year that had a location of Brookline, Massachusetts? ### Answer: SELECT MIN(year) FROM table_name_78 WHERE location = "brookline, massachusetts"
What year had an edition of 115th?
CREATE TABLE table_name_21 (year INTEGER, edition VARCHAR)
SELECT AVG(year) FROM table_name_21 WHERE edition = "115th"
### Context: CREATE TABLE table_name_21 (year INTEGER, edition VARCHAR) ### Question: What year had an edition of 115th? ### Answer: SELECT AVG(year) FROM table_name_21 WHERE edition = "115th"
How many points did ginger have when she was ranked 5th on a 350cc class bike?
CREATE TABLE table_name_73 (points VARCHAR, class VARCHAR, rank VARCHAR)
SELECT COUNT(points) FROM table_name_73 WHERE class = "350cc" AND rank = "5th"
### Context: CREATE TABLE table_name_73 (points VARCHAR, class VARCHAR, rank VARCHAR) ### Question: How many points did ginger have when she was ranked 5th on a 350cc class bike? ### Answer: SELECT COUNT(points) FROM table_name_73 WHERE class = "350cc" AND rank = "5th"
What year was she ranked 16th with over 12 points?
CREATE TABLE table_name_29 (year VARCHAR, rank VARCHAR, points VARCHAR)
SELECT COUNT(year) FROM table_name_29 WHERE rank = "16th" AND points > 12
### Context: CREATE TABLE table_name_29 (year VARCHAR, rank VARCHAR, points VARCHAR) ### Question: What year was she ranked 16th with over 12 points? ### Answer: SELECT COUNT(year) FROM table_name_29 WHERE rank = "16th" AND points > 12
What year was she on a 350cc class bike, ranked 16th, with over 0 wins?
CREATE TABLE table_name_85 (year INTEGER, wins VARCHAR, class VARCHAR, rank VARCHAR)
SELECT SUM(year) FROM table_name_85 WHERE class = "350cc" AND rank = "16th" AND wins > 0
### Context: CREATE TABLE table_name_85 (year INTEGER, wins VARCHAR, class VARCHAR, rank VARCHAR) ### Question: What year was she on a 350cc class bike, ranked 16th, with over 0 wins? ### Answer: SELECT SUM(year) FROM table_name_85 WHERE class = "350cc" AND rank = "16th" AND wins > 0
How many points did she have with team bultaco, ranked 6th?
CREATE TABLE table_name_40 (points INTEGER, team VARCHAR, rank VARCHAR)
SELECT SUM(points) FROM table_name_40 WHERE team = "bultaco" AND rank = "6th"
### Context: CREATE TABLE table_name_40 (points INTEGER, team VARCHAR, rank VARCHAR) ### Question: How many points did she have with team bultaco, ranked 6th? ### Answer: SELECT SUM(points) FROM table_name_40 WHERE team = "bultaco" AND rank = "6th"
What is the Kashmiri word for the Indonesian word senin?
CREATE TABLE table_name_90 (kashmiri VARCHAR, indonesian VARCHAR)
SELECT kashmiri FROM table_name_90 WHERE indonesian = "senin"
### Context: CREATE TABLE table_name_90 (kashmiri VARCHAR, indonesian VARCHAR) ### Question: What is the Kashmiri word for the Indonesian word senin? ### Answer: SELECT kashmiri FROM table_name_90 WHERE indonesian = "senin"
What is the Turkish word for the Bangla word shombar সোমবার?
CREATE TABLE table_name_51 (turkish VARCHAR, bangla VARCHAR)
SELECT turkish FROM table_name_51 WHERE bangla = "shombar সোমবার"
### Context: CREATE TABLE table_name_51 (turkish VARCHAR, bangla VARCHAR) ### Question: What is the Turkish word for the Bangla word shombar সোমবার? ### Answer: SELECT turkish FROM table_name_51 WHERE bangla = "shombar সোমবার"
What is the Pashto word for the Somali word talaado?
CREATE TABLE table_name_24 (pashto VARCHAR, somali VARCHAR)
SELECT pashto FROM table_name_24 WHERE somali = "talaado"
### Context: CREATE TABLE table_name_24 (pashto VARCHAR, somali VARCHAR) ### Question: What is the Pashto word for the Somali word talaado? ### Answer: SELECT pashto FROM table_name_24 WHERE somali = "talaado"
What is the Punjabi (Pakistan) word for the Kurdish word یـــەک شـەمـمـە yak sham?
CREATE TABLE table_name_58 (punjabi__pakistan_ VARCHAR, kurdish VARCHAR)
SELECT punjabi__pakistan_ FROM table_name_58 WHERE kurdish = "یـــەک شـەمـمـە yak sham"
### Context: CREATE TABLE table_name_58 (punjabi__pakistan_ VARCHAR, kurdish VARCHAR) ### Question: What is the Punjabi (Pakistan) word for the Kurdish word یـــەک شـەمـمـە yak sham? ### Answer: SELECT punjabi__pakistan_ FROM table_name_58 WHERE kurdish = "یـــەک شـەمـمـە yak sham"
What is the Maltese word for the Malay word rabu?
CREATE TABLE table_name_6 (maltese VARCHAR, malay VARCHAR)
SELECT maltese FROM table_name_6 WHERE malay = "rabu"
### Context: CREATE TABLE table_name_6 (maltese VARCHAR, malay VARCHAR) ### Question: What is the Maltese word for the Malay word rabu? ### Answer: SELECT maltese FROM table_name_6 WHERE malay = "rabu"
What is the Pashto word for the Malayalam word വ്യാഴം vyazham?
CREATE TABLE table_name_76 (pashto VARCHAR, malayalam VARCHAR)
SELECT pashto FROM table_name_76 WHERE malayalam = "വ്യാഴം vyazham"
### Context: CREATE TABLE table_name_76 (pashto VARCHAR, malayalam VARCHAR) ### Question: What is the Pashto word for the Malayalam word വ്യാഴം vyazham? ### Answer: SELECT pashto FROM table_name_76 WHERE malayalam = "വ്യാഴം vyazham"
Which Score has a Date of june 22?
CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_80 WHERE date = "june 22"
### Context: CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR) ### Question: Which Score has a Date of june 22? ### Answer: SELECT score FROM table_name_80 WHERE date = "june 22"
How much Attendance has an Opponent of rockies, and a Record of 32-30?
CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
SELECT SUM(attendance) FROM table_name_34 WHERE opponent = "rockies" AND record = "32-30"
### Context: CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR) ### Question: How much Attendance has an Opponent of rockies, and a Record of 32-30? ### Answer: SELECT SUM(attendance) FROM table_name_34 WHERE opponent = "rockies" AND record = "32-30"
Who was the opponent in which the bout ended in round 2?
CREATE TABLE table_name_71 (opponent VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_71 WHERE round = 2
### Context: CREATE TABLE table_name_71 (opponent VARCHAR, round VARCHAR) ### Question: Who was the opponent in which the bout ended in round 2? ### Answer: SELECT opponent FROM table_name_71 WHERE round = 2
What was the method of the bout lasting 4:15?
CREATE TABLE table_name_82 (method VARCHAR, time VARCHAR)
SELECT method FROM table_name_82 WHERE time = "4:15"
### Context: CREATE TABLE table_name_82 (method VARCHAR, time VARCHAR) ### Question: What was the method of the bout lasting 4:15? ### Answer: SELECT method FROM table_name_82 WHERE time = "4:15"
What was the record after the bout lasting 4:15?
CREATE TABLE table_name_57 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_57 WHERE time = "4:15"
### Context: CREATE TABLE table_name_57 (record VARCHAR, time VARCHAR) ### Question: What was the record after the bout lasting 4:15? ### Answer: SELECT record FROM table_name_57 WHERE time = "4:15"
How many Pick has a Round smaller than 13, and a Position of fullback?
CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, position VARCHAR)
SELECT COUNT(pick) FROM table_name_64 WHERE round < 13 AND position = "fullback"
### Context: CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, position VARCHAR) ### Question: How many Pick has a Round smaller than 13, and a Position of fullback? ### Answer: SELECT COUNT(pick) FROM table_name_64 WHERE round < 13 AND position = "fullback"
WHo has a Position of end and a School/Club Team of oregon state?
CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_22 WHERE position = "end" AND school_club_team = "oregon state"
### Context: CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, school_club_team VARCHAR) ### Question: WHo has a Position of end and a School/Club Team of oregon state? ### Answer: SELECT player FROM table_name_22 WHERE position = "end" AND school_club_team = "oregon state"
Which Round has a Player of brunel christensen and a Pick smaller than 293?
CREATE TABLE table_name_38 (round INTEGER, player VARCHAR, pick VARCHAR)
SELECT MIN(round) FROM table_name_38 WHERE player = "brunel christensen" AND pick < 293
### Context: CREATE TABLE table_name_38 (round INTEGER, player VARCHAR, pick VARCHAR) ### Question: Which Round has a Player of brunel christensen and a Pick smaller than 293? ### Answer: SELECT MIN(round) FROM table_name_38 WHERE player = "brunel christensen" AND pick < 293
What score was on July 25?
CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_26 WHERE date = "july 25"
### Context: CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR) ### Question: What score was on July 25? ### Answer: SELECT score FROM table_name_26 WHERE date = "july 25"
Which rule has The Event of n/a, The Result of loss, and The Location of winsford england?
CREATE TABLE table_name_2 (rules VARCHAR, location VARCHAR, event VARCHAR, result VARCHAR)
SELECT rules FROM table_name_2 WHERE event = "n/a" AND result = "loss" AND location = "winsford england"
### Context: CREATE TABLE table_name_2 (rules VARCHAR, location VARCHAR, event VARCHAR, result VARCHAR) ### Question: Which rule has The Event of n/a, The Result of loss, and The Location of winsford england? ### Answer: SELECT rules FROM table_name_2 WHERE event = "n/a" AND result = "loss" AND location = "winsford england"
Which Opponent has a Round of 4, and a Rules of thai boxing?
CREATE TABLE table_name_16 (opponent VARCHAR, round VARCHAR, rules VARCHAR)
SELECT opponent FROM table_name_16 WHERE round = "4" AND rules = "thai boxing"
### Context: CREATE TABLE table_name_16 (opponent VARCHAR, round VARCHAR, rules VARCHAR) ### Question: Which Opponent has a Round of 4, and a Rules of thai boxing? ### Answer: SELECT opponent FROM table_name_16 WHERE round = "4" AND rules = "thai boxing"
Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a?
CREATE TABLE table_name_38 (opponent VARCHAR, rules VARCHAR, round VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_38 WHERE round = "3" AND time = "n/a" AND rules = "n/a"
### Context: CREATE TABLE table_name_38 (opponent VARCHAR, rules VARCHAR, round VARCHAR, time VARCHAR) ### Question: Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a? ### Answer: SELECT opponent FROM table_name_38 WHERE round = "3" AND time = "n/a" AND rules = "n/a"
Where has a Rules of thai boxing, and a Round of n/a, and an Opponent of everton crawford?
CREATE TABLE table_name_99 (location VARCHAR, opponent VARCHAR, rules VARCHAR, round VARCHAR)
SELECT location FROM table_name_99 WHERE rules = "thai boxing" AND round = "n/a" AND opponent = "everton crawford"
### Context: CREATE TABLE table_name_99 (location VARCHAR, opponent VARCHAR, rules VARCHAR, round VARCHAR) ### Question: Where has a Rules of thai boxing, and a Round of n/a, and an Opponent of everton crawford? ### Answer: SELECT location FROM table_name_99 WHERE rules = "thai boxing" AND round = "n/a" AND opponent = "everton crawford"
WHich Rules has a Method of ko (punch)?
CREATE TABLE table_name_26 (rules VARCHAR, method VARCHAR)
SELECT rules FROM table_name_26 WHERE method = "ko (punch)"
### Context: CREATE TABLE table_name_26 (rules VARCHAR, method VARCHAR) ### Question: WHich Rules has a Method of ko (punch)? ### Answer: SELECT rules FROM table_name_26 WHERE method = "ko (punch)"