text
stringlengths
114
1.06k
### 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 ### context: CREATE TABLE table_name_43 (february INTEGER, opponent VARCHAR, game 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" ### context: CREATE TABLE table_name_47 (opponent VARCHAR, record VARCHAR, game VARCHAR, february VARCHAR)
### question: Which Year has a Genre of rock (track)? ### answer: SELECT SUM(year) FROM table_name_3 WHERE genre = "rock (track)" ### context: CREATE TABLE table_name_3 (year INTEGER, genre VARCHAR)
### 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 ### context: CREATE TABLE table_name_28 (year INTEGER)
### 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" ### context: CREATE TABLE table_name_3 (overall INTEGER, pick__number VARCHAR, name 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 ### context: CREATE TABLE table_name_34 (round INTEGER, position VARCHAR, overall VARCHAR)
### question: What was the Record on September 21? ### answer: 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 the day David Weathers (15) had a save? ### answer: SELECT record FROM table_name_10 WHERE save = "david weathers (15)" ### context: CREATE TABLE table_name_10 (record VARCHAR, save VARCHAR)
### question: Who had a save on September 2? ### answer: SELECT save FROM table_name_49 WHERE date = "september 2" ### context: CREATE TABLE table_name_49 (save VARCHAR, date VARCHAR)
### question: What was the loss on September 2? ### answer: SELECT loss FROM table_name_16 WHERE date = "september 2" ### context: CREATE TABLE table_name_16 (loss VARCHAR, date 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 ### context: CREATE TABLE table_name_70 (byes INTEGER, losses 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 ### context: CREATE TABLE table_name_67 (byes 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 ### context: CREATE TABLE table_name_30 (ntfa_div_1 VARCHAR, draws VARCHAR, wins 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 ### context: CREATE TABLE table_name_78 (losses INTEGER, draws VARCHAR, byes 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 ### context: CREATE TABLE table_name_65 (losses INTEGER, wins VARCHAR, against 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 ### context: CREATE TABLE table_name_72 (race VARCHAR, flap VARCHAR, podium VARCHAR, seaso...
### question: Pole smaller than 0 had what lowest podium? ### answer: SELECT MIN(podium) FROM table_name_92 WHERE pole < 0 ### context: CREATE TABLE table_name_92 (podium INTEGER, pole INTEGER)
### 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 ### context: CREATE TABLE table_name_10 (podium INTEGER, pole VARCHAR, season VARCHA...
### question: What was the record on august 24? ### answer: SELECT record FROM table_name_73 WHERE date = "august 24" ### context: CREATE TABLE table_name_73 (record VARCHAR, date 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" ### context: CREATE TABLE table_name_85 (route VARCHAR, elevation 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" ### context: CREATE TABLE table_name_24 (elevation VARCHAR, route VARCHAR, highway 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" ### context: CREATE TABLE table_name_12 (route INTEGER, elevation VARCHAR)
### question: What Opponent has a Results¹ of 1:3? ### answer: SELECT opponent FROM table_name_28 WHERE results¹ = "1:3" ### context: CREATE TABLE table_name_28 (opponent VARCHAR, results¹ VARCHAR)
### question: On what Date was the Results¹ 1:2? ### answer: SELECT date FROM table_name_76 WHERE results¹ = "1:2" ### context: CREATE TABLE table_name_76 (date VARCHAR, results¹ VARCHAR)
### question: What City had Results¹ of 1:2? ### answer: SELECT city FROM table_name_39 WHERE results¹ = "1:2" ### context: CREATE TABLE table_name_39 (city VARCHAR, results¹ VARCHAR)
### question: On what Date was Wales the Opponent? ### answer: SELECT date FROM table_name_76 WHERE opponent = "wales" ### context: CREATE TABLE table_name_76 (date 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" ### context: CREATE TABLE table_name_6 (city VARCHAR, results¹ VARCHAR, opponent 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 ### context: CREATE TABLE table_name_60 (game INTEGER, opponent VARCHAR, november VARCHAR)
### question: Name the year for jerry sichting ### answer: 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 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" ### context: CREATE TABLE table_name_91 (studio_host VARCHAR, year VARCHAR, p...
### 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" ### context: CREATE TABLE table_name_74 (flagship_station VARCHAR, color_commentator_s_ VARCHAR, year 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 ### context: CREATE TABLE table_name_68 (architect VARCHAR, floors VARCHAR, height_ VARCHAR, m 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" ### context: CREATE TABLE table_name_27 (height_ VARCHAR, m VARCHAR, architect 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" ### context: CREATE TABLE table_name_43 (architect VARCHAR, built VARCHAR, building 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)" ### context: CREATE TABLE table_name_34 (time VARCHAR, date VARCHAR, loss VARCHAR)
### question: Which Opponent has a Record of 43-56? ### answer: SELECT opponent FROM table_name_75 WHERE record = "43-56" ### context: CREATE TABLE table_name_75 (opponent 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" ### context: CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR, record VARCHAR)
### question: Which Record is on july 31? ### answer: SELECT record FROM table_name_23 WHERE date = "july 31" ### context: CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)
### question: Which Opponent has a Loss of weaver (9-9)? ### answer: SELECT opponent FROM table_name_18 WHERE loss = "weaver (9-9)" ### context: CREATE TABLE table_name_18 (opponent VARCHAR, loss VARCHAR)
### question: Which Season was the Poles greater than 14? ### answer: SELECT season FROM table_name_27 WHERE poles > 14 ### context: CREATE TABLE table_name_27 (season VARCHAR, poles INTEGER)
### 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" ### context: CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR)
### question: Name the Driver that has Races greater than 16? ### answer: SELECT driver FROM table_name_16 WHERE races > 16 ### context: CREATE TABLE table_name_16 (driver VARCHAR, races INTEGER)
### 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 ### context: CREATE TABLE table_name_34 (long INTEGER, loss VARCHAR, ga...
### 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 ### context: CREATE TABLE table_name_99 (avg_g INTEGER, long INTEGER)
### 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 ### context: CREATE TABLE table_name_79 (avg_g INTEGER, name VARCHAR, long 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 ### context: CREATE TABLE table_name_3 (long VARCHAR, loss VARCHAR, avg_g 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" ### context: CREATE TABLE table_name_17 (date VARCHAR, label VARCHAR, format 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" ### context: CREATE TABLE table_name_37 (school VARCHAR, state VARCHAR, city VARCHAR)
### question: What conference has mayville state as the school? ### answer: SELECT conference FROM table_name_71 WHERE school = "mayville state" ### context: CREATE TABLE table_name_71 (conference VARCHAR, school VARCHAR)
### question: What school has belleville as the city? ### answer: SELECT school FROM table_name_37 WHERE city = "belleville" ### context: CREATE TABLE table_name_37 (school VARCHAR, city 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" ### context: CREATE TABLE table_name_43 (city VARCHAR, team 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)" ### context: CREATE TABLE table_name_58 (team VARCHAR, conference VARCHAR, school VARCHAR)
### question: What school is in hillsboro city? ### answer: SELECT school FROM table_name_53 WHERE city = "hillsboro" ### context: CREATE TABLE table_name_53 (school VARCHAR, city 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" ### context: CREATE TABLE table_name_92 (game VARCHAR, february VARCHAR, record 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" ### context: CREATE TABLE table_name_95 (february VARCHAR, game VARCHAR, opponent VARCHAR)
### question: Which February has a Game of 40? ### answer: SELECT february FROM table_name_91 WHERE game = 40 ### context: CREATE TABLE table_name_91 (february VARCHAR, game 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" ### context: CREATE TABLE table_name_51 (record VARCHAR, february VARCHAR, opponent 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" ### context: CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR, record VARCHAR)
### question: What was the team performance in 1977? ### answer: 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 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" ### context: CREATE TABLE table_name_47 (position ...
### 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" ### context: CREATE TABLE table_name_94 (round VARCHAR, pick VARCHAR, player VARCHAR)
### question: Which Sail number has a Position smaller than 2? ### answer: SELECT sail_number FROM table_name_47 WHERE position < 2 ### context: CREATE TABLE table_name_47 (sail_number VARCHAR, position INTEGER)
### question: WHICH State/country that has ray roberts? ### answer: SELECT state_country FROM table_name_43 WHERE skipper = "ray roberts" ### context: CREATE TABLE table_name_43 (state_country VARCHAR, skipper VARCHAR)
### question: What surface did Smeets play on during the Kuwait tournament? ### answer: SELECT surface FROM table_name_30 WHERE tournament = "kuwait" ### context: CREATE TABLE table_name_30 (surface VARCHAR, tournament VARCHAR)
### question: What tournament did Smeets play against Mark nielsen? ### answer: 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: Who was the opponent during the tournament in Kuwait? ### answer: 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: 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" ### context: CREATE TABLE table_name_42 (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" ### context: CREATE TABLE table_name_96 (weight 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" ### context: CREATE TABLE table_name_87 (name_v_t_e 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" ### context: CREATE TABLE table_name_96 (height VARCHAR, pos VARCHAR, club 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." ### context: CREATE TABLE table_name_23 (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" ### context: CREATE TABLE table_name_13 (team_1 VARCHAR, 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" ### context: CREATE TABLE table_name_9 (team_2 VARCHAR)
### question: What was the course called that had an Edition of 117th? ### answer: SELECT course FROM table_name_68 WHERE edition = "117th" ### context: CREATE TABLE table_name_68 (course VARCHAR, edition 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" ### context: CREATE TABLE table_name_78 (year INTEGER, location VARCHAR)
### question: What year had an edition of 115th? ### answer: SELECT AVG(year) FROM table_name_21 WHERE edition = "115th" ### context: CREATE TABLE table_name_21 (year INTEGER, edition 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" ### context: CREATE TABLE table_name_73 (points VARCHAR, class VARCHAR, rank 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 ### context: CREATE TABLE table_name_29 (year VARCHAR, rank VARCHAR, points 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 ### context: CREATE TABLE table_name_85 (year INTEGER, wins VARCHAR, class 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" ### context: CREATE TABLE table_name_40 (points INTEGER, team VARCHAR, rank VARCHAR)
### question: What is the Kashmiri word for the Indonesian word senin? ### answer: SELECT kashmiri FROM table_name_90 WHERE indonesian = "senin" ### context: CREATE TABLE table_name_90 (kashmiri VARCHAR, indonesian VARCHAR)
### question: What is the Turkish word for the Bangla word shombar সোমবার? ### answer: SELECT turkish FROM table_name_51 WHERE bangla = "shombar সোমবার" ### context: CREATE TABLE table_name_51 (turkish VARCHAR, bangla VARCHAR)
### question: What is the Pashto word for the Somali word talaado? ### answer: SELECT pashto FROM table_name_24 WHERE somali = "talaado" ### context: CREATE TABLE table_name_24 (pashto VARCHAR, somali 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" ### context: CREATE TABLE table_name_58 (punjabi__pakistan_ VARCHAR, kurdish VARCHAR)
### question: What is the Maltese word for the Malay word rabu? ### answer: SELECT maltese FROM table_name_6 WHERE malay = "rabu" ### context: CREATE TABLE table_name_6 (maltese VARCHAR, malay VARCHAR)
### question: What is the Pashto word for the Malayalam word വ്യാഴം vyazham? ### answer: SELECT pashto FROM table_name_76 WHERE malayalam = "വ്യാഴം vyazham" ### context: CREATE TABLE table_name_76 (pashto VARCHAR, malayalam VARCHAR)
### question: Which Score has a Date of june 22? ### answer: SELECT score FROM table_name_80 WHERE date = "june 22" ### context: CREATE TABLE table_name_80 (score VARCHAR, date 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" ### context: CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
### question: Who was the opponent in which the bout ended in round 2? ### answer: SELECT opponent FROM table_name_71 WHERE round = 2 ### context: CREATE TABLE table_name_71 (opponent VARCHAR, round VARCHAR)
### question: What was the method of the bout lasting 4:15? ### answer: SELECT method FROM table_name_82 WHERE time = "4:15" ### context: CREATE TABLE table_name_82 (method 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" ### context: CREATE TABLE table_name_57 (record VARCHAR, time 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" ### context: CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, position 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" ### context: CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, school_club_team 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 ### context: CREATE TABLE table_name_38 (round INTEGER, player VARCHAR, pick VARCHAR)
### question: What score was on July 25? ### answer: SELECT score FROM table_name_26 WHERE date = "july 25" ### context: CREATE TABLE table_name_26 (score VARCHAR, date 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" ### context: CREATE TABLE table_name_2 (rules VARCHAR, location VARCHAR, event VARCHAR, result VAR...
### 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" ### context: CREATE TABLE table_name_16 (opponent VARCHAR, round VARCHAR, rules 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" ### context: CREATE TABLE table_name_38 (opponent VARCHAR, rules VARCHAR, round VARCHAR, time 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" ### context: CREATE TABLE table_name_99 (location VARCHAR, opponent VARCHAR, rules VARCH...
### question: WHich Rules has a Method of ko (punch)? ### answer: SELECT rules FROM table_name_26 WHERE method = "ko (punch)" ### context: CREATE TABLE table_name_26 (rules VARCHAR, method VARCHAR)