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