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