Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
13,300
<question>: What is the total number of Year, when Wins is less than 0? <context>: CREATE TABLE table_name_70 (year VARCHAR, wins INTEGER)
SELECT COUNT(year) FROM table_name_70 WHERE wins < 0
13,301
<question>: What is the sum of Points, when Year is after 1959, and when Class is 250cc? <context>: CREATE TABLE table_name_42 (points INTEGER, year VARCHAR, class VARCHAR)
SELECT SUM(points) FROM table_name_42 WHERE year > 1959 AND class = "250cc"
13,302
<question>: What is the total number of Wins, when Points is less than 1? <context>: CREATE TABLE table_name_17 (wins VARCHAR, points INTEGER)
SELECT COUNT(wins) FROM table_name_17 WHERE points < 1
13,303
<question>: What is the sum of Wins, when Year is 1959? <context>: CREATE TABLE table_name_2 (wins INTEGER, year VARCHAR)
SELECT SUM(wins) FROM table_name_2 WHERE year = 1959
13,304
<question>: What is the fewest games played for teams with 73 goals for and more than 69 goals against? <context>: CREATE TABLE table_name_17 (played INTEGER, goals_for VARCHAR, goals_against VARCHAR)
SELECT MIN(played) FROM table_name_17 WHERE goals_for = 73 AND goals_against > 69
13,305
<question>: What is the highest number of goals for for teams with 25 losses? <context>: CREATE TABLE table_name_26 (goals_for INTEGER, lost VARCHAR)
SELECT MAX(goals_for) FROM table_name_26 WHERE lost = 25
13,306
<question>: What is the most losses for positions under 15 and 66 goals against? <context>: CREATE TABLE table_name_50 (lost INTEGER, goals_against VARCHAR, position VARCHAR)
SELECT MAX(lost) FROM table_name_50 WHERE goals_against = 66 AND position < 15
13,307
<question>: What is the average goals against for teams with more than 56 goals for and exactly 50 points? <context>: CREATE TABLE table_name_20 (goals_against INTEGER, points_1 VARCHAR, goals_for VARCHAR)
SELECT AVG(goals_against) FROM table_name_20 WHERE points_1 = "50" AND goals_for > 56
13,308
<question>: Which Leader has Spoilt Votes as % of Seats? <context>: CREATE TABLE table_name_26 (leader VARCHAR, _percentage_of_seats VARCHAR)
SELECT leader FROM table_name_26 WHERE _percentage_of_seats = "spoilt votes"
13,309
<question>: What is the %FPv for the Workers' Party? <context>: CREATE TABLE table_name_3 (_percentage_fpv VARCHAR, party VARCHAR)
SELECT _percentage_fpv FROM table_name_3 WHERE party = "workers' party"
13,310
<question>: What is the First Pref Votes for the % FPv of 0.06? <context>: CREATE TABLE table_name_23 (first_pref_votes VARCHAR, _percentage_fpv VARCHAR)
SELECT first_pref_votes FROM table_name_23 WHERE _percentage_fpv = "0.06"
13,311
<question>: What is the First Pref Votes where the Leader is n/a and the Party is Independent? <context>: CREATE TABLE table_name_91 (first_pref_votes VARCHAR, leader VARCHAR, party VARCHAR)
SELECT first_pref_votes FROM table_name_91 WHERE leader = "n/a" AND party = "independent"
13,312
<question>: What is the number of Seats for Leader Enda kenny? <context>: CREATE TABLE table_name_49 (seats VARCHAR, leader VARCHAR)
SELECT seats FROM table_name_49 WHERE leader = "enda kenny"
13,313
<question>: What is Date to [H], when Position [F] is "Defender", when Goals is less than 3, when Appearances is greater than 113, and when Date From [G] is "1997"? <context>: CREATE TABLE table_name_38 (date_to_ VARCHAR, h_ VARCHAR, appearances VARCHAR, date_from_ VARCHAR, g_ VARCHAR, goals VARCHAR, position_ VARCHAR,...
SELECT date_to_[h_] FROM table_name_38 WHERE position_[f_] = "defender" AND goals < 3 AND appearances > 113 AND date_from_[g_] = "1997"
13,314
<question>: What is Club Source [I ], when Name is "Andrew McCombie Category:Articles With hCards"? <context>: CREATE TABLE table_name_14 (club_source_ VARCHAR, i_ VARCHAR, name VARCHAR)
SELECT club_source_[i_] FROM table_name_14 WHERE name = "andrew mccombie category:articles with hcards"
13,315
<question>: What is Name, when Goals is "80", and when Club Source [I ] is "71 [ dead link ]"? <context>: CREATE TABLE table_name_60 (name VARCHAR, goals VARCHAR, club_source_ VARCHAR, i_ VARCHAR)
SELECT name FROM table_name_60 WHERE goals = 80 AND club_source_[i_] = "71 [ dead link ]"
13,316
<question>: What is Appearances, when Postion [F ] is "Defender", and when Date to [H ] is "1938"? <context>: CREATE TABLE table_name_18 (appearances VARCHAR, position_ VARCHAR, f_ VARCHAR, date_to_ VARCHAR, h_ VARCHAR)
SELECT appearances FROM table_name_18 WHERE position_[f_] = "defender" AND date_to_[h_] = "1938"
13,317
<question>: WHAT IS AVERAGE SCORE WITH T3 PLACE, FOR DOUG SANDERS? <context>: CREATE TABLE table_name_75 (score INTEGER, place VARCHAR, player VARCHAR)
SELECT AVG(score) FROM table_name_75 WHERE place = "t3" AND player = "doug sanders"
13,318
<question>: How much is the money ($) when the country is united states, to par is e and the score is 72-75-70-71=288? <context>: CREATE TABLE table_name_59 (money___ INTEGER, country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT SUM(money___) AS $__ FROM table_name_59 WHERE country = "united states" AND to_par = "e" AND score = 72 - 75 - 70 - 71 = 288
13,319
<question>: what is the to par when the player is roger maltbie? <context>: CREATE TABLE table_name_75 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_75 WHERE player = "roger maltbie"
13,320
<question>: How much is the money ($) when the score is 67-71-72-72=282? <context>: CREATE TABLE table_name_97 (money___ VARCHAR, score VARCHAR)
SELECT COUNT(money___) AS $__ FROM table_name_97 WHERE score = 67 - 71 - 72 - 72 = 282
13,321
<question>: what is the to par when the place is 8? <context>: CREATE TABLE table_name_82 (to_par VARCHAR, place VARCHAR)
SELECT to_par FROM table_name_82 WHERE place = "8"
13,322
<question>: WHAT IS THE SCORE OF THE GAME LARGER THAN 47, AT THE ROSE GARDEN 20,250 IN ATTENDANCE? <context>: CREATE TABLE table_name_17 (score VARCHAR, game VARCHAR, location_attendance VARCHAR)
SELECT score FROM table_name_17 WHERE game > 47 AND location_attendance = "rose garden 20,250"
13,323
<question>: What tournament was on May 31, 1987? <context>: CREATE TABLE table_name_7 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_7 WHERE date = "may 31, 1987"
13,324
<question>: What tournament was on May 31, 1987? <context>: CREATE TABLE table_name_93 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_93 WHERE date = "may 31, 1987"
13,325
<question>: What tournament had a winning score of –9 (69-71-67=207)? <context>: CREATE TABLE table_name_72 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_72 WHERE winning_score = –9(69 - 71 - 67 = 207)
13,326
<question>: Who was the runner(s)-up when the winning score was –13 (75-68-68=211)? <context>: CREATE TABLE table_name_77 (runner_s__up VARCHAR, winning_score VARCHAR)
SELECT runner_s__up FROM table_name_77 WHERE winning_score = –13(75 - 68 - 68 = 211)
13,327
<question>: What tournament had a 1 point margin of victory? <context>: CREATE TABLE table_name_12 (tournament VARCHAR, margin_of_victory VARCHAR)
SELECT tournament FROM table_name_12 WHERE margin_of_victory = "1 point"
13,328
<question>: What tournament was Laura Davies the runner-up? <context>: CREATE TABLE table_name_50 (tournament VARCHAR, runner_s__up VARCHAR)
SELECT tournament FROM table_name_50 WHERE runner_s__up = "laura davies"
13,329
<question>: What is the Location of the match against Bob Stines? <context>: CREATE TABLE table_name_36 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_36 WHERE opponent = "bob stines"
13,330
<question>: What is the venue of the game that was played on 23 October 1966? <context>: CREATE TABLE table_name_41 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_41 WHERE date = "23 october 1966"
13,331
<question>: Where was the friendly competition on 17 December 1967 played at? <context>: CREATE TABLE table_name_72 (venue VARCHAR, competition VARCHAR, date VARCHAR)
SELECT venue FROM table_name_72 WHERE competition = "friendly" AND date = "17 december 1967"
13,332
<question>: What 2009 has statistics by surface in 2012? <context>: CREATE TABLE table_name_66 (Id VARCHAR)
SELECT 2009 FROM table_name_66 WHERE 2012 = "statistics by surface"
13,333
<question>: What 2001 has a ATP World Tour Masters 1000 2007? <context>: CREATE TABLE table_name_12 (Id VARCHAR)
SELECT 2011 FROM table_name_12 WHERE 2007 = "atp world tour masters 1000"
13,334
<question>: What 2010 has an A 2006 & 2011? <context>: CREATE TABLE table_name_30 (Id VARCHAR)
SELECT 2010 FROM table_name_30 WHERE 2006 = "a" AND 2011 = "a"
13,335
<question>: What 2009 has a 0 in 2008 & 2010? <context>: CREATE TABLE table_name_3 (Id VARCHAR)
SELECT 2009 FROM table_name_3 WHERE 2010 = "0" AND 2008 = "0"
13,336
<question>: What was the finishing position of Hale Irwin, of the United states? <context>: CREATE TABLE table_name_96 (finish VARCHAR, country VARCHAR, player VARCHAR)
SELECT finish FROM table_name_96 WHERE country = "united states" AND player = "hale irwin"
13,337
<question>: Where did the player who won in 1965 finish? <context>: CREATE TABLE table_name_92 (finish VARCHAR, year_s__won VARCHAR)
SELECT finish FROM table_name_92 WHERE year_s__won = "1965"
13,338
<question>: Where did Jerry Pate finish? <context>: CREATE TABLE table_name_29 (finish VARCHAR, player VARCHAR)
SELECT finish FROM table_name_29 WHERE player = "jerry pate"
13,339
<question>: What was the average total for the player from the United States, who won in 1978? <context>: CREATE TABLE table_name_73 (total INTEGER, country VARCHAR, year_s__won VARCHAR)
SELECT AVG(total) FROM table_name_73 WHERE country = "united states" AND year_s__won = "1978"
13,340
<question>: What team was the opponent for the game played on September 19, 1999? <context>: CREATE TABLE table_name_92 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_92 WHERE date = "september 19, 1999"
13,341
<question>: What week was the bye week? <context>: CREATE TABLE table_name_46 (week INTEGER, opponent VARCHAR)
SELECT AVG(week) FROM table_name_46 WHERE opponent = "bye"
13,342
<question>: What team was the opponent for the game played on December 19, 1999? <context>: CREATE TABLE table_name_87 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_87 WHERE date = "december 19, 1999"
13,343
<question>: What is the result from the game played on week 7? <context>: CREATE TABLE table_name_45 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_45 WHERE week = 7
13,344
<question>: What is the lowest number of seats of the 1992 election? <context>: CREATE TABLE table_name_86 (seats INTEGER, election VARCHAR)
SELECT MIN(seats) FROM table_name_86 WHERE election = 1992
13,345
<question>: How many seats had a 41.2% share of votes? <context>: CREATE TABLE table_name_96 (seats VARCHAR, share_of_votes VARCHAR)
SELECT seats FROM table_name_96 WHERE share_of_votes = "41.2%"
13,346
<question>: What is the share of votes with 3,567,021 NDC votes? <context>: CREATE TABLE table_name_40 (share_of_votes VARCHAR, number_of_ndc_votes VARCHAR)
SELECT share_of_votes FROM table_name_40 WHERE number_of_ndc_votes = "3,567,021"
13,347
<question>: What was the total when the set 3 score was 25–27? <context>: CREATE TABLE table_name_12 (total VARCHAR, set_3 VARCHAR)
SELECT total FROM table_name_12 WHERE set_3 = "25–27"
13,348
<question>: On what date was the total 60–77? <context>: CREATE TABLE table_name_88 (date VARCHAR, total VARCHAR)
SELECT date FROM table_name_88 WHERE total = "60–77"
13,349
<question>: What is the score for set 1 with a total of 117–109? <context>: CREATE TABLE table_name_58 (set_1 VARCHAR, total VARCHAR)
SELECT set_1 FROM table_name_58 WHERE total = "117–109"
13,350
<question>: What team operates car 11? <context>: CREATE TABLE table_name_28 (team VARCHAR, car_no VARCHAR)
SELECT team FROM table_name_28 WHERE car_no = "11"
13,351
<question>: What was the time/retired of Darren Manning? <context>: CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_7 WHERE driver = "darren manning"
13,352
<question>: How many points did car 20 score? <context>: CREATE TABLE table_name_65 (points VARCHAR, car_no VARCHAR)
SELECT points FROM table_name_65 WHERE car_no = "20"
13,353
<question>: What is the car number for Jeff Simmons on the Rahal Letterman team? <context>: CREATE TABLE table_name_46 (car_no VARCHAR, team VARCHAR, driver VARCHAR)
SELECT car_no FROM table_name_46 WHERE team = "rahal letterman" AND driver = "jeff simmons"
13,354
<question>: What is Name, when Length Meters is greater than 66.4, and when Km From Kingston is 138.8? <context>: CREATE TABLE table_name_54 (name VARCHAR, length_meters VARCHAR, km_from_kingston VARCHAR)
SELECT name FROM table_name_54 WHERE length_meters > 66.4 AND km_from_kingston = 138.8
13,355
<question>: What is the total number of Length Feet, when Parish is Clarendon, when Km From Kingston is 71.2, and when Length Meters is less than 21.3? <context>: CREATE TABLE table_name_97 (length_feet VARCHAR, length_meters VARCHAR, parish VARCHAR, km_from_kingston VARCHAR)
SELECT COUNT(length_feet) FROM table_name_97 WHERE parish = "clarendon" AND km_from_kingston = 71.2 AND length_meters < 21.3
13,356
<question>: What is the highest Km From Kingston, when Mi From Kingston is less than 108, and when Length Meters is 260.6? <context>: CREATE TABLE table_name_61 (km_from_kingston INTEGER, mi_from_kingston VARCHAR, length_meters VARCHAR)
SELECT MAX(km_from_kingston) FROM table_name_61 WHERE mi_from_kingston < 108 AND length_meters = 260.6
13,357
<question>: What is Lenth Feet, when Mi From Kingston is greater than 84.5, when Length Meters is greater than 55.5, and when Name is Unnamed? <context>: CREATE TABLE table_name_28 (length_feet VARCHAR, name VARCHAR, mi_from_kingston VARCHAR, length_meters VARCHAR)
SELECT length_feet FROM table_name_28 WHERE mi_from_kingston > 84.5 AND length_meters > 55.5 AND name = "unnamed"
13,358
<question>: Which Place has a Player of lee trevino? <context>: CREATE TABLE table_name_95 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_95 WHERE player = "lee trevino"
13,359
<question>: Name Country which has a Place of t7, and a Score of 73-69-73=215? <context>: CREATE TABLE table_name_5 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT country FROM table_name_5 WHERE place = "t7" AND score = 73 - 69 - 73 = 215
13,360
<question>: Which week held a tournament in Rome? <context>: CREATE TABLE table_name_49 (week VARCHAR, tournament VARCHAR)
SELECT week FROM table_name_49 WHERE tournament = "rome"
13,361
<question>: What is the result of the fight when record is 12-2? <context>: CREATE TABLE table_name_79 (res VARCHAR, record VARCHAR)
SELECT res FROM table_name_79 WHERE record = "12-2"
13,362
<question>: How many rounds was the fight at UFC 34? <context>: CREATE TABLE table_name_7 (round INTEGER, event VARCHAR)
SELECT SUM(round) FROM table_name_7 WHERE event = "ufc 34"
13,363
<question>: What is the location of the fight against Zaza Tkeshelashvili? <context>: CREATE TABLE table_name_26 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_26 WHERE opponent = "zaza tkeshelashvili"
13,364
<question>: what is the average year when the title is baka to test to shōkanjū? <context>: CREATE TABLE table_name_89 (year INTEGER, title VARCHAR)
SELECT AVG(year) FROM table_name_89 WHERE title = "baka to test to shōkanjū"
13,365
<question>: what is the title when the imprint is dengeki bunko and the artist is kiyotaka haimura? <context>: CREATE TABLE table_name_96 (title VARCHAR, imprint VARCHAR, artist VARCHAR)
SELECT title FROM table_name_96 WHERE imprint = "dengeki bunko" AND artist = "kiyotaka haimura"
13,366
<question>: what is the imprint when the title is owari no chronicle (ahead series)? <context>: CREATE TABLE table_name_22 (imprint VARCHAR, title VARCHAR)
SELECT imprint FROM table_name_22 WHERE title = "owari no chronicle (ahead series)"
13,367
<question>: what is the earliest year when the author is reki kawahara? <context>: CREATE TABLE table_name_42 (year INTEGER, author VARCHAR)
SELECT MIN(year) FROM table_name_42 WHERE author = "reki kawahara"
13,368
<question>: who is the character when the artist is take and the year is before 2006? <context>: CREATE TABLE table_name_75 (character VARCHAR, artist VARCHAR, year VARCHAR)
SELECT character FROM table_name_75 WHERE artist = "take" AND year < 2006
13,369
<question>: Which language has 3 draws? <context>: CREATE TABLE table_name_15 (language VARCHAR, draw VARCHAR)
SELECT language FROM table_name_15 WHERE draw = 3
13,370
<question>: What is the away team score for the match at 6:00 PM and an away team of Hawthorn? <context>: CREATE TABLE table_name_56 (away_team VARCHAR, time VARCHAR)
SELECT away_team AS score FROM table_name_56 WHERE time = "6:00 pm" AND away_team = "hawthorn"
13,371
<question>: What is the Tenure of the Officer with a Date of death of 2001-08-31? <context>: CREATE TABLE table_name_16 (tenure VARCHAR, date_of_death VARCHAR)
SELECT tenure FROM table_name_16 WHERE date_of_death = "2001-08-31"
13,372
<question>: What is Detective Donald William Schneider's Cause of death? <context>: CREATE TABLE table_name_37 (cause_of_death VARCHAR, rank VARCHAR, name VARCHAR)
SELECT cause_of_death FROM table_name_37 WHERE rank = "detective" AND name = "donald william schneider"
13,373
<question>: What is Gary David Saunders' Tenure? <context>: CREATE TABLE table_name_23 (tenure VARCHAR, name VARCHAR)
SELECT tenure FROM table_name_23 WHERE name = "gary david saunders"
13,374
<question>: What is gunfire victim Maria Cecilia Rosa with 6 years of Tenure Date of Death? <context>: CREATE TABLE table_name_47 (date_of_death VARCHAR, name VARCHAR, cause_of_death VARCHAR, tenure VARCHAR)
SELECT date_of_death FROM table_name_47 WHERE cause_of_death = "gunfire" AND tenure = "6 years" AND name = "maria cecilia rosa"
13,375
<question>: What is Lijsttrekker, when Year is after 1990, and when Chair is "Ingrid Van Engelshoven"? <context>: CREATE TABLE table_name_51 (lijsttrekker VARCHAR, year VARCHAR, chair VARCHAR)
SELECT lijsttrekker FROM table_name_51 WHERE year > 1990 AND chair = "ingrid van engelshoven"
13,376
<question>: What is Fractievoorzitter, when Lijsttrekker is "No Elections", and when Year is after 2005? <context>: CREATE TABLE table_name_80 (fractievoorzitter VARCHAR, lijsttrekker VARCHAR, year VARCHAR)
SELECT fractievoorzitter FROM table_name_80 WHERE lijsttrekker = "no elections" AND year > 2005
13,377
<question>: What is Cabinet, when Year is after 1981, when Fractievoorzitter is "Hans Van Mierlo", and when Chair is "W.I.J.M. Vrijhoef"? <context>: CREATE TABLE table_name_42 (cabinet VARCHAR, chair VARCHAR, year VARCHAR, fractievoorzitter VARCHAR)
SELECT cabinet FROM table_name_42 WHERE year > 1981 AND fractievoorzitter = "hans van mierlo" AND chair = "w.i.j.m. vrijhoef"
13,378
<question>: What is Lijsttrekker, when Cabinet is "Hans Van Mierlo", and when Fractievoorzitter is "Thom De Graaf"? <context>: CREATE TABLE table_name_81 (lijsttrekker VARCHAR, cabinet VARCHAR, fractievoorzitter VARCHAR)
SELECT lijsttrekker FROM table_name_81 WHERE cabinet = "hans van mierlo" AND fractievoorzitter = "thom de graaf"
13,379
<question>: What is Cabinet, when Year is before 2001, when Lijsttrekker is "No Elections", when Fractievoorzitter is "Hans Van Mierlo", and when Chair is "S. Van Der Loo"? <context>: CREATE TABLE table_name_79 (cabinet VARCHAR, chair VARCHAR, fractievoorzitter VARCHAR, year VARCHAR, lijsttrekker VARCHAR)
SELECT cabinet FROM table_name_79 WHERE year < 2001 AND lijsttrekker = "no elections" AND fractievoorzitter = "hans van mierlo" AND chair = "s. van der loo"
13,380
<question>: Which territory has a channel of 144 and a broadcaster of Astro? <context>: CREATE TABLE table_name_23 (territory VARCHAR, channel VARCHAR, broadcaster VARCHAR)
SELECT territory FROM table_name_23 WHERE channel = 144 AND broadcaster = "astro"
13,381
<question>: What is the tennis status for youngstown state? <context>: CREATE TABLE table_name_52 (tennis VARCHAR, school VARCHAR)
SELECT tennis FROM table_name_52 WHERE school = "youngstown state"
13,382
<question>: Which school has yes for soccer, tennis and indoor track. <context>: CREATE TABLE table_name_73 (school VARCHAR, indoor_track VARCHAR, soccer VARCHAR, tennis VARCHAR)
SELECT school FROM table_name_73 WHERE soccer = "yes" AND tennis = "yes" AND indoor_track = "yes"
13,383
<question>: What is the basketball status for Valparaiso who has an indoor track status of yes? <context>: CREATE TABLE table_name_69 (bask VARCHAR, indoor_track VARCHAR, school VARCHAR)
SELECT bask FROM table_name_69 WHERE indoor_track = "yes" AND school = "valparaiso"
13,384
<question>: What is the indoor track status for the school that has yes for tennis and no for golf? <context>: CREATE TABLE table_name_91 (indoor_track VARCHAR, tennis VARCHAR, golf VARCHAR)
SELECT indoor_track FROM table_name_91 WHERE tennis = "yes" AND golf = "no"
13,385
<question>: What is th eswimming status for the school that has yes on indoor track, soccer and tennis? <context>: CREATE TABLE table_name_80 (swimming VARCHAR, tennis VARCHAR, indoor_track VARCHAR, soccer VARCHAR)
SELECT swimming FROM table_name_80 WHERE indoor_track = "yes" AND soccer = "yes" AND tennis = "yes"
13,386
<question>: What is the status for tennis at cleveland state who has yes for swimming, golf and soccer? <context>: CREATE TABLE table_name_78 (tennis VARCHAR, school VARCHAR, swimming VARCHAR, golf VARCHAR, soccer VARCHAR)
SELECT tennis FROM table_name_78 WHERE golf = "yes" AND soccer = "yes" AND swimming = "yes" AND school = "cleveland state"
13,387
<question>: What event did Soares fight against josh spearman? <context>: CREATE TABLE table_name_69 (event VARCHAR, opponent VARCHAR)
SELECT event FROM table_name_69 WHERE opponent = "josh spearman"
13,388
<question>: What round was the fight won or loss by a decision? <context>: CREATE TABLE table_name_4 (round INTEGER, method VARCHAR)
SELECT MIN(round) FROM table_name_4 WHERE method = "decision"
13,389
<question>: Where was the fight that lasted 3 rounds and was won or loss by a decision? <context>: CREATE TABLE table_name_65 (location VARCHAR, round VARCHAR, method VARCHAR)
SELECT location FROM table_name_65 WHERE round = 3 AND method = "decision"
13,390
<question>: what is the lowest top 5 when the year is after 1995, team(s) is #15 billy ballew motorsports, and starts is more than 4? <context>: CREATE TABLE table_name_45 (top_5 INTEGER, starts VARCHAR, year VARCHAR, team_s_ VARCHAR)
SELECT MIN(top_5) FROM table_name_45 WHERE year > 1995 AND team_s_ = "#15 billy ballew motorsports" AND starts > 4
13,391
<question>: What was the method in the fight against Chris Myers? <context>: CREATE TABLE table_name_15 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_15 WHERE opponent = "chris myers"
13,392
<question>: What is the record in TKO 20: Champion Vs Champion? <context>: CREATE TABLE table_name_27 (record VARCHAR, event VARCHAR)
SELECT record FROM table_name_27 WHERE event = "tko 20: champion vs champion"
13,393
<question>: How many rounds in the fight in Quebec, Canada against David Loiseau? <context>: CREATE TABLE table_name_2 (round VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT COUNT(round) FROM table_name_2 WHERE location = "quebec, canada" AND opponent = "david loiseau"
13,394
<question>: Which event has a method of TKO (punches)? <context>: CREATE TABLE table_name_52 (event VARCHAR, method VARCHAR)
SELECT event FROM table_name_52 WHERE method = "tko (punches)"
13,395
<question>: Who is the opponent when the method is technical submission (guillotine choke)? <context>: CREATE TABLE table_name_22 (opponent VARCHAR, method VARCHAR)
SELECT opponent FROM table_name_22 WHERE method = "technical submission (guillotine choke)"
13,396
<question>: What was the school/club after round 12, and picked smaller than 342? <context>: CREATE TABLE table_name_95 (school_club_team VARCHAR, round VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_95 WHERE round > 12 AND pick < 342
13,397
<question>: What is the average pick for Florida State? <context>: CREATE TABLE table_name_70 (pick INTEGER, school_club_team VARCHAR)
SELECT AVG(pick) FROM table_name_70 WHERE school_club_team = "florida state"
13,398
<question>: What is the total number for the pick of the player Wayne Fowler and a round after 7? <context>: CREATE TABLE table_name_91 (pick VARCHAR, player VARCHAR, round VARCHAR)
SELECT COUNT(pick) FROM table_name_91 WHERE player = "wayne fowler" AND round > 7
13,399
<question>: Which college had an overall smaller than 315 in round 17? <context>: CREATE TABLE table_name_41 (college VARCHAR, overall VARCHAR, round VARCHAR)
SELECT college FROM table_name_41 WHERE overall < 315 AND round = 17