Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
45,600
<question>: What is the highest Feb value having an opponent of the Philadelphia Flyers and is after game 63? <context>: 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
45,601
<question>: Who was the opponent in games over 58, after Feb 16, and having a record of 40-20-4? <context>: 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"
45,602
<question>: Which Year has a Genre of rock (track)? <context>: CREATE TABLE table_name_3 (year INTEGER, genre VARCHAR)
SELECT SUM(year) FROM table_name_3 WHERE genre = "rock (track)"
45,603
<question>: Which Year Inducted is the highest one that has a Year smaller than 1965? <context>: CREATE TABLE table_name_28 (year INTEGER)
SELECT MAX(year) AS Inducted FROM table_name_28 WHERE year < 1965
45,604
<question>: Which Overall is the highest one that has a Pick # smaller than 9, and a Name of mike pearson? <context>: 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"
45,605
<question>: Which Round is the lowest one that has a Position of wide receiver, and an Overall smaller than 222? <context>: 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
45,606
<question>: What was the Record on September 21? <context>: CREATE TABLE table_name_78 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_78 WHERE date = "september 21"
45,607
<question>: What was the record the day David Weathers (15) had a save? <context>: CREATE TABLE table_name_10 (record VARCHAR, save VARCHAR)
SELECT record FROM table_name_10 WHERE save = "david weathers (15)"
45,608
<question>: Who had a save on September 2? <context>: CREATE TABLE table_name_49 (save VARCHAR, date VARCHAR)
SELECT save FROM table_name_49 WHERE date = "september 2"
45,609
<question>: What was the loss on September 2? <context>: CREATE TABLE table_name_16 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_16 WHERE date = "september 2"
45,610
<question>: What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses? <context>: 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
45,611
<question>: What is the total number of byes associated with fewer than 8 wins and fewer than 1 draw? <context>: CREATE TABLE table_name_67 (byes VARCHAR, draws VARCHAR, wins VARCHAR)
SELECT COUNT(byes) FROM table_name_67 WHERE draws < 1 AND wins < 8
45,612
<question>: What is the NTFA Div 1 team that has 15 wins and less than 1 draw? <context>: 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
45,613
<question>: What is the average number of losses for teams with 0 draws and 0 byes? <context>: CREATE TABLE table_name_78 (losses INTEGER, draws VARCHAR, byes VARCHAR)
SELECT AVG(losses) FROM table_name_78 WHERE draws = 0 AND byes < 0
45,614
<question>: What is the most number of losses for teams with 5 wins and an against value under 1607? <context>: CREATE TABLE table_name_65 (losses INTEGER, wins VARCHAR, against VARCHAR)
SELECT MAX(losses) FROM table_name_65 WHERE wins = 5 AND against < 1607
45,615
<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? <context>: 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
45,616
<question>: Pole smaller than 0 had what lowest podium? <context>: CREATE TABLE table_name_92 (podium INTEGER, pole INTEGER)
SELECT MIN(podium) FROM table_name_92 WHERE pole < 0
45,617
<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? <context>: 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
45,618
<question>: What was the record on august 24? <context>: CREATE TABLE table_name_73 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_73 WHERE date = "august 24"
45,619
<question>: Elevation of 11,158 feet 3401 m had what route? <context>: CREATE TABLE table_name_85 (route VARCHAR, elevation VARCHAR)
SELECT route FROM table_name_85 WHERE elevation = "11,158 feet 3401 m"
45,620
<question>: Route larger than 24, and a Highway of trail ridge road had what elevation? <context>: 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"
45,621
<question>: Elevation of 12,183 feet 3713 m is what average route? <context>: CREATE TABLE table_name_12 (route INTEGER, elevation VARCHAR)
SELECT AVG(route) FROM table_name_12 WHERE elevation = "12,183 feet 3713 m"
45,622
<question>: What Opponent has a Results¹ of 1:3? <context>: CREATE TABLE table_name_28 (opponent VARCHAR, results¹ VARCHAR)
SELECT opponent FROM table_name_28 WHERE results¹ = "1:3"
45,623
<question>: On what Date was the Results¹ 1:2? <context>: CREATE TABLE table_name_76 (date VARCHAR, results¹ VARCHAR)
SELECT date FROM table_name_76 WHERE results¹ = "1:2"
45,624
<question>: What City had Results¹ of 1:2? <context>: CREATE TABLE table_name_39 (city VARCHAR, results¹ VARCHAR)
SELECT city FROM table_name_39 WHERE results¹ = "1:2"
45,625
<question>: On what Date was Wales the Opponent? <context>: CREATE TABLE table_name_76 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_76 WHERE opponent = "wales"
45,626
<question>: In what City was Bulgaria the Opponent with Results¹ of 1:0? <context>: CREATE TABLE table_name_6 (city VARCHAR, results¹ VARCHAR, opponent VARCHAR)
SELECT city FROM table_name_6 WHERE results¹ = "1:0" AND opponent = "bulgaria"
45,627
<question>: What Vancouver canucks game was on a date closest to November 4? <context>: 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
45,628
<question>: Name the year for jerry sichting <context>: CREATE TABLE table_name_26 (year VARCHAR, color_commentator_s_ VARCHAR)
SELECT year FROM table_name_26 WHERE color_commentator_s_ = "jerry sichting"
45,629
<question>: Name the studio host for glenn ordway and jerry sichting with year of 1993-94 <context>: 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"
45,630
<question>: Name the flagship station for cedric maxwell and year of 1995-96 <context>: 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"
45,631
<question>: Who was the architect of the 10 floor building with a height of 42 M? <context>: 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
45,632
<question>: What is the height of the building built by architects Ross and Macfarlane? <context>: CREATE TABLE table_name_27 (height_ VARCHAR, m VARCHAR, architect VARCHAR)
SELECT height_[m] FROM table_name_27 WHERE architect = "ross and macfarlane"
45,633
<question>: Who was the architect that built the Electric Railway Chambers before 1915? <context>: 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"
45,634
<question>: What is the Time on july 18 that has a Loss of lilly (3-3)? <context>: 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)"
45,635
<question>: Which Opponent has a Record of 43-56? <context>: CREATE TABLE table_name_75 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_75 WHERE record = "43-56"
45,636
<question>: What is the Score on July 18 that has Record of 41-51? <context>: 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"
45,637
<question>: Which Record is on july 31? <context>: CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_23 WHERE date = "july 31"
45,638
<question>: Which Opponent has a Loss of weaver (9-9)? <context>: CREATE TABLE table_name_18 (opponent VARCHAR, loss VARCHAR)
SELECT opponent FROM table_name_18 WHERE loss = "weaver (9-9)"
45,639
<question>: Which Season was the Poles greater than 14? <context>: CREATE TABLE table_name_27 (season VARCHAR, poles INTEGER)
SELECT season FROM table_name_27 WHERE poles > 14
45,640
<question>: Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver? <context>: 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"
45,641
<question>: Name the Driver that has Races greater than 16? <context>: CREATE TABLE table_name_16 (driver VARCHAR, races INTEGER)
SELECT driver FROM table_name_16 WHERE races > 16
45,642
<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? <context>: 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
45,643
<question>: What is the lowest Avg/G with a Long less than 0? <context>: CREATE TABLE table_name_99 (avg_g INTEGER, long INTEGER)
SELECT MIN(avg_g) FROM table_name_99 WHERE long < 0
45,644
<question>: What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30? <context>: 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
45,645
<question>: What is the total number of Long with a Av/g of 124.9 but Loss greater than 0? <context>: 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
45,646
<question>: What date has parlophone as the label, and lp as a format? <context>: CREATE TABLE table_name_17 (date VARCHAR, label VARCHAR, format VARCHAR)
SELECT date FROM table_name_17 WHERE label = "parlophone" AND format = "lp"
45,647
<question>: What school has oregon as the state, and ashland as the city? <context>: CREATE TABLE table_name_37 (school VARCHAR, state VARCHAR, city VARCHAR)
SELECT school FROM table_name_37 WHERE state = "oregon" AND city = "ashland"
45,648
<question>: What conference has mayville state as the school? <context>: CREATE TABLE table_name_71 (conference VARCHAR, school VARCHAR)
SELECT conference FROM table_name_71 WHERE school = "mayville state"
45,649
<question>: What school has belleville as the city? <context>: CREATE TABLE table_name_37 (school VARCHAR, city VARCHAR)
SELECT school FROM table_name_37 WHERE city = "belleville"
45,650
<question>: What city has trojans as the team, and taylor as the school? <context>: CREATE TABLE table_name_43 (city VARCHAR, team VARCHAR, school VARCHAR)
SELECT city FROM table_name_43 WHERE team = "trojans" AND school = "taylor"
45,651
<question>: What team has great plains as the conference, and concordia (ne) as the school? <context>: 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)"
45,652
<question>: What school is in hillsboro city? <context>: CREATE TABLE table_name_53 (school VARCHAR, city VARCHAR)
SELECT school FROM table_name_53 WHERE city = "hillsboro"
45,653
<question>: How many games have a February larger than 11, and a Record of 23-7-8? <context>: 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"
45,654
<question>: How much February has a Game larger than 37, and an Opponent of chicago black hawks? <context>: 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"
45,655
<question>: Which February has a Game of 40? <context>: CREATE TABLE table_name_91 (february VARCHAR, game VARCHAR)
SELECT february FROM table_name_91 WHERE game = 40
45,656
<question>: Which Record has a February smaller than 8, and an Opponent of montreal canadiens? <context>: CREATE TABLE table_name_51 (record VARCHAR, february VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_51 WHERE february < 8 AND opponent = "montreal canadiens"
45,657
<question>: Which Score has a Game larger than 40, and a Record of 25-10-8? <context>: 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"
45,658
<question>: What was the team performance in 1977? <context>: CREATE TABLE table_name_28 (team_performance VARCHAR, year VARCHAR)
SELECT team_performance FROM table_name_28 WHERE year = 1977
45,659
<question>: What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3? <context>: 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"
45,660
<question>: What round was Joe Patton selected with a pick over 68? <context>: CREATE TABLE table_name_94 (round VARCHAR, pick VARCHAR, player VARCHAR)
SELECT round FROM table_name_94 WHERE pick > 68 AND player = "joe patton"
45,661
<question>: Which Sail number has a Position smaller than 2? <context>: CREATE TABLE table_name_47 (sail_number VARCHAR, position INTEGER)
SELECT sail_number FROM table_name_47 WHERE position < 2
45,662
<question>: WHICH State/country that has ray roberts? <context>: CREATE TABLE table_name_43 (state_country VARCHAR, skipper VARCHAR)
SELECT state_country FROM table_name_43 WHERE skipper = "ray roberts"
45,663
<question>: What surface did Smeets play on during the Kuwait tournament? <context>: CREATE TABLE table_name_30 (surface VARCHAR, tournament VARCHAR)
SELECT surface FROM table_name_30 WHERE tournament = "kuwait"
45,664
<question>: What tournament did Smeets play against Mark nielsen? <context>: 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"
45,665
<question>: Who was the opponent during the tournament in Kuwait? <context>: CREATE TABLE table_name_91 (opponent_in_the_final VARCHAR, tournament VARCHAR)
SELECT opponent_in_the_final FROM table_name_91 WHERE tournament = "kuwait"
45,666
<question>: What is the weight of the player from the vk primorac kotor club? <context>: CREATE TABLE table_name_42 (weight VARCHAR, club VARCHAR)
SELECT weight FROM table_name_42 WHERE club = "vk primorac kotor"
45,667
<question>: What is the weight of the player from pvk jadran club? <context>: CREATE TABLE table_name_96 (weight VARCHAR, club VARCHAR)
SELECT weight FROM table_name_96 WHERE club = "pvk jadran"
45,668
<question>: What is the name of the player from club pro recco? <context>: 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"
45,669
<question>: What is the height of the player from club vk primorac kotor who plays gk? <context>: 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"
45,670
<question>: What is Team 1 where Team 2 is gombe united f.c.? <context>: 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."
45,671
<question>: What is Team 1 where Team 2 is al tahrir? <context>: CREATE TABLE table_name_13 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_13 WHERE team_2 = "al tahrir"
45,672
<question>: What is the 2nd leg where Team 2 is fc 105 libreville? <context>: CREATE TABLE table_name_9 (team_2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_9 WHERE team_2 = "fc 105 libreville"
45,673
<question>: What was the course called that had an Edition of 117th? <context>: CREATE TABLE table_name_68 (course VARCHAR, edition VARCHAR)
SELECT course FROM table_name_68 WHERE edition = "117th"
45,674
<question>: What was the earliest year that had a location of Brookline, Massachusetts? <context>: CREATE TABLE table_name_78 (year INTEGER, location VARCHAR)
SELECT MIN(year) FROM table_name_78 WHERE location = "brookline, massachusetts"
45,675
<question>: What year had an edition of 115th? <context>: CREATE TABLE table_name_21 (year INTEGER, edition VARCHAR)
SELECT AVG(year) FROM table_name_21 WHERE edition = "115th"
45,676
<question>: How many points did ginger have when she was ranked 5th on a 350cc class bike? <context>: CREATE TABLE table_name_73 (points VARCHAR, class VARCHAR, rank VARCHAR)
SELECT COUNT(points) FROM table_name_73 WHERE class = "350cc" AND rank = "5th"
45,677
<question>: What year was she ranked 16th with over 12 points? <context>: CREATE TABLE table_name_29 (year VARCHAR, rank VARCHAR, points VARCHAR)
SELECT COUNT(year) FROM table_name_29 WHERE rank = "16th" AND points > 12
45,678
<question>: What year was she on a 350cc class bike, ranked 16th, with over 0 wins? <context>: 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
45,679
<question>: How many points did she have with team bultaco, ranked 6th? <context>: CREATE TABLE table_name_40 (points INTEGER, team VARCHAR, rank VARCHAR)
SELECT SUM(points) FROM table_name_40 WHERE team = "bultaco" AND rank = "6th"
45,680
<question>: What is the Kashmiri word for the Indonesian word senin? <context>: CREATE TABLE table_name_90 (kashmiri VARCHAR, indonesian VARCHAR)
SELECT kashmiri FROM table_name_90 WHERE indonesian = "senin"
45,681
<question>: What is the Turkish word for the Bangla word shombar সোমবার? <context>: CREATE TABLE table_name_51 (turkish VARCHAR, bangla VARCHAR)
SELECT turkish FROM table_name_51 WHERE bangla = "shombar সোমবার"
45,682
<question>: What is the Pashto word for the Somali word talaado? <context>: CREATE TABLE table_name_24 (pashto VARCHAR, somali VARCHAR)
SELECT pashto FROM table_name_24 WHERE somali = "talaado"
45,683
<question>: What is the Punjabi (Pakistan) word for the Kurdish word یـــەک شـەمـمـە yak sham? <context>: CREATE TABLE table_name_58 (punjabi__pakistan_ VARCHAR, kurdish VARCHAR)
SELECT punjabi__pakistan_ FROM table_name_58 WHERE kurdish = "یـــەک شـەمـمـە yak sham"
45,684
<question>: What is the Maltese word for the Malay word rabu? <context>: CREATE TABLE table_name_6 (maltese VARCHAR, malay VARCHAR)
SELECT maltese FROM table_name_6 WHERE malay = "rabu"
45,685
<question>: What is the Pashto word for the Malayalam word വ്യാഴം vyazham? <context>: CREATE TABLE table_name_76 (pashto VARCHAR, malayalam VARCHAR)
SELECT pashto FROM table_name_76 WHERE malayalam = "വ്യാഴം vyazham"
45,686
<question>: Which Score has a Date of june 22? <context>: CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_80 WHERE date = "june 22"
45,687
<question>: How much Attendance has an Opponent of rockies, and a Record of 32-30? <context>: 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"
45,688
<question>: Who was the opponent in which the bout ended in round 2? <context>: CREATE TABLE table_name_71 (opponent VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_71 WHERE round = 2
45,689
<question>: What was the method of the bout lasting 4:15? <context>: CREATE TABLE table_name_82 (method VARCHAR, time VARCHAR)
SELECT method FROM table_name_82 WHERE time = "4:15"
45,690
<question>: What was the record after the bout lasting 4:15? <context>: CREATE TABLE table_name_57 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_57 WHERE time = "4:15"
45,691
<question>: How many Pick has a Round smaller than 13, and a Position of fullback? <context>: CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, position VARCHAR)
SELECT COUNT(pick) FROM table_name_64 WHERE round < 13 AND position = "fullback"
45,692
<question>: WHo has a Position of end and a School/Club Team of oregon state? <context>: 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"
45,693
<question>: Which Round has a Player of brunel christensen and a Pick smaller than 293? <context>: 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
45,694
<question>: What score was on July 25? <context>: CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_26 WHERE date = "july 25"
45,695
<question>: Which rule has The Event of n/a, The Result of loss, and The Location of winsford england? <context>: 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"
45,696
<question>: Which Opponent has a Round of 4, and a Rules of thai boxing? <context>: CREATE TABLE table_name_16 (opponent VARCHAR, round VARCHAR, rules VARCHAR)
SELECT opponent FROM table_name_16 WHERE round = "4" AND rules = "thai boxing"
45,697
<question>: Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a? <context>: 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"
45,698
<question>: Where has a Rules of thai boxing, and a Round of n/a, and an Opponent of everton crawford? <context>: 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"
45,699
<question>: WHich Rules has a Method of ko (punch)? <context>: CREATE TABLE table_name_26 (rules VARCHAR, method VARCHAR)
SELECT rules FROM table_name_26 WHERE method = "ko (punch)"