training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)
###human: What is the score of the game on May 5?
###assistant: SELECT score FROM table_name_50 WHERE date = "may 5" |
###context:CREATE TABLE table_name_1 (record VARCHAR, attendance VARCHAR)
###human: What is the record of the game with 18,084 in attendance?
###assistant: SELECT record FROM table_name_1 WHERE attendance = "18,084" |
###context:CREATE TABLE table_name_36 (record VARCHAR, date VARCHAR)
###human: What is the record of the game on May 30?
###assistant: SELECT record FROM table_name_36 WHERE date = "may 30" |
###context:CREATE TABLE table_name_34 (third_place VARCHAR, tournament VARCHAR)
###human: Who won third place in the Zurich Tournament?
###assistant: SELECT third_place FROM table_name_34 WHERE tournament = "zurich" |
###context:CREATE TABLE table_name_79 (winner VARCHAR, score VARCHAR)
###human: Who was the winner with a score of 7β6 (7β3) , 2β6, [10β6]?
###assistant: SELECT winner FROM table_name_79 WHERE score = "7β6 (7β3) , 2β6, [10β6]" |
###context:CREATE TABLE table_name_23 (tournament VARCHAR, winner VARCHAR)
###human: Which tournament did Thomas Enqvist win?
###assistant: SELECT tournament FROM table_name_23 WHERE winner = "thomas enqvist" |
###context:CREATE TABLE table_name_59 (tournament VARCHAR, runner_up VARCHAR)
###human: Which tournament was Tim Henman the runner-up in?
###assistant: SELECT tournament FROM table_name_59 WHERE runner_up = "tim henman" |
###context:CREATE TABLE table_name_40 (venue VARCHAR, runs VARCHAR)
###human: What is the venue where 153 runs were scored?
###assistant: SELECT venue FROM table_name_40 WHERE runs = "153" |
###context:CREATE TABLE table_name_17 (partnerships VARCHAR, versus VARCHAR, runs VARCHAR)
###human: What is the partnership in the game with 166* runs and an opponent of Namibia?
###assistant: SELECT partnerships FROM table_name_17 WHERE versus = "namibia" AND runs = "166*" |
###context:CREATE TABLE table_name_66 (date VARCHAR, versus VARCHAR, wicket VARCHAR)
###human: What is the date of the game against South Africa and 2nd wickets?
###assistant: SELECT date FROM table_name_66 WHERE versus = "south africa" AND wicket = "2nd" |
###context:CREATE TABLE table_name_79 (away_team VARCHAR, date VARCHAR, home_team VARCHAR)
###human: Who was the Away team that played at Carlton on 11 June 1966?
###assistant: SELECT away_team FROM table_name_79 WHERE date = "11 june 1966" AND home_team = "carlton" |
###context:CREATE TABLE table_name_93 (crowd INTEGER, home_team VARCHAR)
###human: What was the smallest crowd at a home game of carlton?
###assistant: SELECT MIN(crowd) FROM table_name_93 WHERE home_team = "carlton" |
###context:CREATE TABLE table_name_43 (title VARCHAR, year VARCHAR)
###human: What's the title for year n.m.?
###assistant: SELECT title FROM table_name_43 WHERE year = "n.m." |
###context:CREATE TABLE table_name_87 (language VARCHAR, translator VARCHAR)
###human: What is the language for translators ritah meltser and amatsyah porat?
###assistant: SELECT language FROM table_name_87 WHERE translator = "ritah meltser and amatsyah porat" |
###context:CREATE TABLE table_name_39 (pages INTEGER, title VARCHAR)
###human: What's the fewest number of pages for the title al-jiniral fi matahatihi?
###assistant: SELECT MIN(pages) FROM table_name_39 WHERE title = "al-jiniral fi matahatihi" |
###context:CREATE TABLE table_name_99 (date VARCHAR, name VARCHAR)
###human: What is the date for Zouave?
###assistant: SELECT date FROM table_name_99 WHERE name = "zouave" |
###context:CREATE TABLE table_name_39 (date VARCHAR, name VARCHAR)
###human: What is the date for the name of Granville?
###assistant: SELECT date FROM table_name_39 WHERE name = "granville" |
###context:CREATE TABLE table_name_84 (name VARCHAR, date VARCHAR, sunk_by VARCHAR)
###human: What is the name of the ship sunk by U-305 on 17 March 1943?
###assistant: SELECT name FROM table_name_84 WHERE date = "17 march 1943" AND sunk_by = "u-305" |
###context:CREATE TABLE table_name_4 (date VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)
###human: Which date's visitor was jazz, when the leading scorer was Mehmet Okur (22)?
###assistant: SELECT date FROM table_name_4 WHERE visitor = "jazz" AND leading_scorer = "mehmet okur (22)" |
###context:CREATE TABLE table_name_27 (club VARCHAR, european_cup VARCHAR, national_cup VARCHAR)
###human: What Club has Fiba European Champion's Cup and an Italian Cup?
###assistant: SELECT club FROM table_name_27 WHERE european_cup = "fiba european champion's cup" AND national_cup = "italian cup" |
###context:CREATE TABLE table_name_24 (european_cup VARCHAR, national_league VARCHAR)
###human: What European Cup is in Israeli Premier League?
###assistant: SELECT european_cup FROM table_name_24 WHERE national_league = "israeli premier league" |
###context:CREATE TABLE table_name_4 (season VARCHAR, european_cup VARCHAR, national_cup VARCHAR)
###human: Which season is Euroleague with Greek Cup?
###assistant: SELECT season FROM table_name_4 WHERE european_cup = "euroleague" AND national_cup = "greek cup" |
###context:CREATE TABLE table_name_78 (european_cup VARCHAR, season VARCHAR)
###human: Which European Cup is in the 1990-91 season?
###assistant: SELECT european_cup FROM table_name_78 WHERE season = "1990-91" |
###context:CREATE TABLE table_name_91 (european_cup VARCHAR, season VARCHAR)
###human: Which European Cup is in the 2006-07 season?
###assistant: SELECT european_cup FROM table_name_91 WHERE season = "2006-07" |
###context:CREATE TABLE table_name_7 (national_league VARCHAR, season VARCHAR)
###human: Which National League is in 1969-70 season?
###assistant: SELECT national_league FROM table_name_7 WHERE season = "1969-70" |
###context:CREATE TABLE table_name_77 (right_ascension___j2000__ VARCHAR, apparent_magnitude VARCHAR)
###human: what is the right ascension (j2000) when the apparent magnitude is 13?
###assistant: SELECT right_ascension___j2000__ FROM table_name_77 WHERE apparent_magnitude = 13 |
###context:CREATE TABLE table_name_61 (constellation VARCHAR, right_ascension___j2000__ VARCHAR)
###human: what is the constellation when the right ascension (j2000) is 09h51m54.0s?
###assistant: SELECT constellation FROM table_name_61 WHERE right_ascension___j2000__ = "09h51m54.0s" |
###context:CREATE TABLE table_name_66 (apparent_magnitude INTEGER, ngc_number VARCHAR, object_type VARCHAR, constellation VARCHAR)
###human: what is the lowest apparent magnitude when the object type is spiral galaxy, the constellation is leo minor and the ngc number is more than 3021?
###assistant: SELECT MIN(apparent_magnitude) FROM table_name_66 WHERE object_type = "spiral galaxy" AND constellation = "leo minor" AND ngc_number > 3021 |
###context:CREATE TABLE table_name_45 (draws VARCHAR, goal_difference VARCHAR, goals_for VARCHAR, losses VARCHAR)
###human: Name the total number of Draws when goals for is 58 and losses is 12 when goal differences is less than 21
###assistant: SELECT COUNT(draws) FROM table_name_45 WHERE goals_for = 58 AND losses = 12 AND goal_difference < 21 |
###context:CREATE TABLE table_name_66 (goals_for VARCHAR, goals_against VARCHAR, draws VARCHAR, points VARCHAR)
###human: How many goals for where there when draws are less than 11, points of is 54+16 and goals against are less than 39?
###assistant: SELECT COUNT(goals_for) FROM table_name_66 WHERE draws < 11 AND points = "54+16" AND goals_against < 39 |
###context:CREATE TABLE table_name_67 (played VARCHAR, goals_for VARCHAR, points VARCHAR, position VARCHAR)
###human: Name the total number of played when points of is 31-7, position is 16 and goals for is less than 35
###assistant: SELECT COUNT(played) FROM table_name_67 WHERE points = "31-7" AND position = 16 AND goals_for < 35 |
###context:CREATE TABLE table_name_49 (goal_difference VARCHAR, position INTEGER)
###human: Name the total number of goal difference when the position is more than 20
###assistant: SELECT COUNT(goal_difference) FROM table_name_49 WHERE position > 20 |
###context:CREATE TABLE table_name_82 (draws INTEGER, position VARCHAR, wins VARCHAR)
###human: Name the sum of draws when the position is less than 17 and wins is less than 11
###assistant: SELECT SUM(draws) FROM table_name_82 WHERE position < 17 AND wins < 11 |
###context:CREATE TABLE table_name_93 (position_in_2012 VARCHAR, last_title VARCHAR, first_season VARCHAR)
###human: what is the position is 2012 when the last title is n/a and the first season is 2011?
###assistant: SELECT position_in_2012 FROM table_name_93 WHERE last_title = "n/a" AND first_season = "2011" |
###context:CREATE TABLE table_name_91 (last_title VARCHAR, titles VARCHAR, position_in_2012 VARCHAR)
###human: what is the last title when the titles is more than 12 and the position in 2012 is 7th
###assistant: SELECT last_title FROM table_name_91 WHERE titles > 12 AND position_in_2012 = "7th" |
###context:CREATE TABLE table_name_30 (rank VARCHAR, placings VARCHAR, total VARCHAR)
###human: What is the rank number for a placing of 28.5 and a total less than 92.7?
###assistant: SELECT COUNT(rank) FROM table_name_30 WHERE placings = "28.5" AND total < 92.7 |
###context:CREATE TABLE table_name_15 (placings VARCHAR, total VARCHAR, nation VARCHAR)
###human: What is the placing value for a total less than 96.07 in the United States?
###assistant: SELECT placings FROM table_name_15 WHERE total < 96.07 AND nation = "united states" |
###context:CREATE TABLE table_name_57 (total VARCHAR, rank VARCHAR)
###human: What is the total for Rank 11?
###assistant: SELECT COUNT(total) FROM table_name_57 WHERE rank = 11 |
###context:CREATE TABLE table_name_25 (total INTEGER, nation VARCHAR)
###human: What is the sum of all total values for Switzerland?
###assistant: SELECT SUM(total) FROM table_name_25 WHERE nation = "switzerland" |
###context:CREATE TABLE table_name_66 (rank VARCHAR, total VARCHAR)
###human: What rank goes to a total of 92.7?
###assistant: SELECT rank FROM table_name_66 WHERE total = 92.7 |
###context:CREATE TABLE table_name_60 (name VARCHAR, rank VARCHAR, placings VARCHAR)
###human: Who has a rank great than 3 and a placing of 64?
###assistant: SELECT name FROM table_name_60 WHERE rank > 3 AND placings = "64" |
###context:CREATE TABLE table_name_68 (horizontal_bar VARCHAR, team VARCHAR, parallel_bars VARCHAR)
###human: How many Horizontal Bars have a Team of japan (jpn), and Parallel Bars smaller than 38.924?
###assistant: SELECT COUNT(horizontal_bar) FROM table_name_68 WHERE team = "japan (jpn)" AND parallel_bars < 38.924 |
###context:CREATE TABLE table_name_16 (pommel_horse VARCHAR, rings VARCHAR, total VARCHAR)
###human: How many pommel Horses have Rings of 37.461, and a Total smaller than 229.507?
###assistant: SELECT COUNT(pommel_horse) FROM table_name_16 WHERE rings = 37.461 AND total < 229.507 |
###context:CREATE TABLE table_name_52 (total VARCHAR, vault VARCHAR, floor_exercise VARCHAR)
###human: What is the sum of totals with a Vault of 38.437, and a Floor Exercise smaller than 37.524?
###assistant: SELECT COUNT(total) FROM table_name_52 WHERE vault = 38.437 AND floor_exercise < 37.524 |
###context:CREATE TABLE table_name_52 (pommel_horse VARCHAR, vault VARCHAR, total VARCHAR, team VARCHAR)
###human: How many pommel horses have a Total smaller than 230.019, a Team of china (chn), and a Vault smaller than 38.437?
###assistant: SELECT COUNT(pommel_horse) FROM table_name_52 WHERE total < 230.019 AND team = "china (chn)" AND vault < 38.437 |
###context:CREATE TABLE table_name_98 (title VARCHAR, role VARCHAR, year VARCHAR, studio VARCHAR)
###human: What is the title where the studio was RKO, the role was Dolly, and the year was later than 1943?
###assistant: SELECT title FROM table_name_98 WHERE year > 1943 AND studio = "rko" AND role = "dolly" |
###context:CREATE TABLE table_name_61 (director VARCHAR, title VARCHAR, studio VARCHAR, year VARCHAR)
###human: Who was the director for To Have and Have Not, earlier than 1945 with WB studio?
###assistant: SELECT director FROM table_name_61 WHERE studio = "wb" AND year < 1945 AND title = "to have and have not" |
###context:CREATE TABLE table_name_96 (year INTEGER, director VARCHAR, title VARCHAR)
###human: What year was The Horn Blows at Midnight, directed by Raoul Walsh?
###assistant: SELECT AVG(year) FROM table_name_96 WHERE director = "raoul walsh" AND title = "the horn blows at midnight" |
###context:CREATE TABLE table_name_66 (title VARCHAR, director VARCHAR, year VARCHAR)
###human: What title was directed by Raoul Walsh later than 1945?
###assistant: SELECT title FROM table_name_66 WHERE director = "raoul walsh" AND year > 1945 |
###context:CREATE TABLE table_name_77 (studio VARCHAR, year VARCHAR, title VARCHAR)
###human: What was the studio for The Hard Way in 1943?
###assistant: SELECT studio FROM table_name_77 WHERE year = 1943 AND title = "the hard way" |
###context:CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)
###human: Which team plays at Lake Oval?
###assistant: SELECT home_team FROM table_name_39 WHERE venue = "lake oval" |
###context:CREATE TABLE table_name_92 (away_team VARCHAR, venue VARCHAR)
###human: What was the away score when they played at Brunswick Street Oval?
###assistant: SELECT away_team AS score FROM table_name_92 WHERE venue = "brunswick street oval" |
###context:CREATE TABLE table_name_13 (venue VARCHAR, home_team VARCHAR)
###human: Where was South Melbourne played?
###assistant: SELECT venue FROM table_name_13 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_89 (result VARCHAR, week VARCHAR, opponent VARCHAR)
###human: Where week is greater than 14 and Opponent is Dallas Cowboys, what is the result?
###assistant: SELECT result FROM table_name_89 WHERE week > 14 AND opponent = "dallas cowboys" |
###context:CREATE TABLE table_name_31 (result VARCHAR, week VARCHAR, attendance VARCHAR)
###human: Where week is greater than 7 and attendance is 66,251 what is the result?
###assistant: SELECT result FROM table_name_31 WHERE week > 7 AND attendance = "66,251" |
###context:CREATE TABLE table_name_61 (date VARCHAR, attendance VARCHAR)
###human: Where attendance is 79,431 what is date?
###assistant: SELECT date FROM table_name_61 WHERE attendance = "79,431" |
###context:CREATE TABLE table_name_89 (result VARCHAR, date VARCHAR)
###human: Where Date is september 13, 1998 what is result?
###assistant: SELECT result FROM table_name_89 WHERE date = "september 13, 1998" |
###context:CREATE TABLE table_name_30 (away_team VARCHAR, venue VARCHAR)
###human: What did the away team score at Junction oval?
###assistant: SELECT away_team AS score FROM table_name_30 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_86 (score VARCHAR, home VARCHAR, visitor VARCHAR)
###human: Name the score when the home is ny islanders and the visitor is montreal
###assistant: SELECT score FROM table_name_86 WHERE home = "ny islanders" AND visitor = "montreal" |
###context:CREATE TABLE table_name_76 (score VARCHAR, decision VARCHAR, visitor VARCHAR)
###human: Name the score when the decision is dipietro and the visitor is philadelphia
###assistant: SELECT score FROM table_name_76 WHERE decision = "dipietro" AND visitor = "philadelphia" |
###context:CREATE TABLE table_name_80 (score VARCHAR, home VARCHAR, decision VARCHAR, visitor VARCHAR)
###human: Name the score when it had a decision of dipietro and visitor of ny islanders with home of colorado
###assistant: SELECT score FROM table_name_80 WHERE decision = "dipietro" AND visitor = "ny islanders" AND home = "colorado" |
###context:CREATE TABLE table_name_97 (attendance INTEGER, visitor VARCHAR)
###human: Name the least attendance with carolina visitor
###assistant: SELECT MIN(attendance) FROM table_name_97 WHERE visitor = "carolina" |
###context:CREATE TABLE table_name_29 (venue VARCHAR, away_team VARCHAR)
###human: What Venue had Carlton has the Away team?
###assistant: SELECT venue FROM table_name_29 WHERE away_team = "carlton" |
###context:CREATE TABLE table_name_14 (record VARCHAR, high_points VARCHAR)
###human: What is the record when Clippers have the high points?
###assistant: SELECT record FROM table_name_14 WHERE high_points = "clippers" |
###context:CREATE TABLE table_name_51 (high_points VARCHAR, high_rebounds VARCHAR)
###human: What had the high points when OT had high rebounds?
###assistant: SELECT high_points FROM table_name_51 WHERE high_rebounds = "ot" |
###context:CREATE TABLE table_name_8 (date VARCHAR, high_points VARCHAR, record VARCHAR)
###human: On what date did the Suns have high points with a record of 33β13?
###assistant: SELECT date FROM table_name_8 WHERE high_points = "suns" AND record = "33β13" |
###context:CREATE TABLE table_name_20 (high_assists VARCHAR, location_attendance VARCHAR)
###human: Who has the high assists when location attendance is 20,562?
###assistant: SELECT high_assists FROM table_name_20 WHERE location_attendance = "20,562" |
###context:CREATE TABLE table_name_94 (bronze INTEGER, silver VARCHAR, total VARCHAR)
###human: Which Bronze has a Silver smaller than 1, and a Total larger than 3?
###assistant: SELECT AVG(bronze) FROM table_name_94 WHERE silver < 1 AND total > 3 |
###context:CREATE TABLE table_name_60 (gold INTEGER, nation VARCHAR, total VARCHAR)
###human: Which Gold has a Nation of united states, and a Total larger than 5?
###assistant: SELECT MIN(gold) FROM table_name_60 WHERE nation = "united states" AND total > 5 |
###context:CREATE TABLE table_name_28 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
###human: Which Bronze has a Nation of argentina, and a Silver smaller than 0?
###assistant: SELECT AVG(bronze) FROM table_name_28 WHERE nation = "argentina" AND silver < 0 |
###context:CREATE TABLE table_name_15 (bronze INTEGER, silver VARCHAR, total VARCHAR)
###human: Which Bronze has a Silver of 2, and a Total smaller than 5?
###assistant: SELECT AVG(bronze) FROM table_name_15 WHERE silver = 2 AND total < 5 |
###context:CREATE TABLE table_name_14 (crowd VARCHAR, away_team VARCHAR)
###human: How many spectators were at the away team Carlton?
###assistant: SELECT crowd FROM table_name_14 WHERE away_team = "carlton" |
###context:CREATE TABLE table_name_70 (school VARCHAR, enrolment VARCHAR)
###human: What school colors for the friends' school with over 1000 enrolled?
###assistant: SELECT school AS Colors FROM table_name_70 WHERE enrolment > 1000 AND school = "the friends' school" |
###context:CREATE TABLE table_name_67 (enrolment INTEGER, founded INTEGER)
###human: What is the low enrolment for schools founded after 1995?
###assistant: SELECT MIN(enrolment) FROM table_name_67 WHERE founded > 1995 |
###context:CREATE TABLE table_name_65 (location VARCHAR, school VARCHAR)
###human: WHere is the friends' school?
###assistant: SELECT location FROM table_name_65 WHERE school = "the friends' school" |
###context:CREATE TABLE table_name_58 (system VARCHAR, current_version VARCHAR)
###human: What is the System with the Current version 3.0.0?
###assistant: SELECT system FROM table_name_58 WHERE current_version = "3.0.0" |
###context:CREATE TABLE table_name_35 (name VARCHAR, license VARCHAR, current_version VARCHAR)
###human: What is the Name when the License is gpl and the Current Version is 1.72?
###assistant: SELECT name FROM table_name_35 WHERE license = "gpl" AND current_version = "1.72" |
###context:CREATE TABLE table_name_63 (system VARCHAR, license VARCHAR, current_version VARCHAR)
###human: What is the System when the Licence is gpl and the Current Version is 1.72?
###assistant: SELECT system FROM table_name_63 WHERE license = "gpl" AND current_version = "1.72" |
###context:CREATE TABLE table_name_9 (system VARCHAR, license VARCHAR)
###human: What is the System with a freeware License?
###assistant: SELECT system FROM table_name_9 WHERE license = "freeware" |
###context:CREATE TABLE table_name_98 (license VARCHAR, platform VARCHAR, name VARCHAR)
###human: What is the License when the Platform is windows and the Name is Altirra?
###assistant: SELECT license FROM table_name_98 WHERE platform = "windows" AND name = "altirra" |
###context:CREATE TABLE table_name_55 (platform VARCHAR, current_version VARCHAR)
###human: What Platform has a Current Version 0.6.2?
###assistant: SELECT platform FROM table_name_55 WHERE current_version = "0.6.2" |
###context:CREATE TABLE table_name_11 (attendance INTEGER, date VARCHAR)
###human: What is the average attendance on October 9, 1983?
###assistant: SELECT AVG(attendance) FROM table_name_11 WHERE date = "october 9, 1983" |
###context:CREATE TABLE table_name_19 (attendance INTEGER, date VARCHAR)
###human: What is the lowest attendance on September 4, 1983?
###assistant: SELECT MIN(attendance) FROM table_name_19 WHERE date = "september 4, 1983" |
###context:CREATE TABLE table_name_51 (mascot VARCHAR, year_opened VARCHAR)
###human: What is the mascot whose school opened in 1970?
###assistant: SELECT mascot FROM table_name_51 WHERE year_opened = "1970" |
###context:CREATE TABLE table_name_92 (principal VARCHAR, mascot VARCHAR)
###human: What principal has a school mascot of the patriots?
###assistant: SELECT principal FROM table_name_92 WHERE mascot = "patriots" |
###context:CREATE TABLE table_name_43 (venue VARCHAR, score VARCHAR)
###human: What was the venue when the score was 24β28?
###assistant: SELECT venue FROM table_name_43 WHERE score = "24β28" |
###context:CREATE TABLE table_name_96 (pick INTEGER, school VARCHAR)
###human: What is the lowest pick when the School is Stanford University?
###assistant: SELECT MIN(pick) FROM table_name_96 WHERE school = "stanford university" |
###context:CREATE TABLE table_name_67 (team VARCHAR, pick VARCHAR)
###human: What Team has a Pick of 40?
###assistant: SELECT team FROM table_name_67 WHERE pick = 40 |
###context:CREATE TABLE table_name_78 (date VARCHAR, away_team VARCHAR)
###human: What date was the away team Hawthorn?
###assistant: SELECT date FROM table_name_78 WHERE away_team = "hawthorn" |
###context:CREATE TABLE table_name_82 (losses INTEGER, wins VARCHAR, win__percentage VARCHAR)
###human: What is the high loss total for players with zero wins and a win % greater than 0?
###assistant: SELECT MAX(losses) FROM table_name_82 WHERE wins = 0 AND win__percentage > 0 |
###context:CREATE TABLE table_name_7 (win__percentage VARCHAR, starts VARCHAR)
###human: What is the win % for the QB with 3 starts?
###assistant: SELECT win__percentage FROM table_name_7 WHERE starts = 3 |
###context:CREATE TABLE table_name_90 (venue VARCHAR, away_team VARCHAR)
###human: What venue did geelong play an away game?
###assistant: SELECT venue FROM table_name_90 WHERE away_team = "geelong" |
###context:CREATE TABLE table_name_28 (home_team VARCHAR, away_team VARCHAR)
###human: What home team played an away team of melbourne?
###assistant: SELECT home_team FROM table_name_28 WHERE away_team = "melbourne" |
###context:CREATE TABLE table_name_53 (player VARCHAR, overall VARCHAR)
###human: Which player had an overall pick of 130?
###assistant: SELECT player FROM table_name_53 WHERE overall = "130" |
###context:CREATE TABLE table_name_8 (round INTEGER, player VARCHAR)
###human: What round was Corey Cowick picked?
###assistant: SELECT AVG(round) FROM table_name_8 WHERE player = "corey cowick" |
###context:CREATE TABLE table_name_20 (position VARCHAR, club_team VARCHAR)
###human: What position does the player from the Miami University (CCHA) club team play?
###assistant: SELECT position FROM table_name_20 WHERE club_team = "miami university (ccha)" |
###context:CREATE TABLE table_name_63 (year INTEGER, team VARCHAR, player VARCHAR)
###human: What most recent year had North Melbourne as a team and Hamish Mcintosh as a player?
###assistant: SELECT MAX(year) FROM table_name_63 WHERE team = "north melbourne" AND player = "hamish mcintosh" |
###context:CREATE TABLE table_name_53 (score VARCHAR, opponent VARCHAR, player VARCHAR)
###human: Which score had Essendon as an opponent and Steven Clark as a player?
###assistant: SELECT score FROM table_name_53 WHERE opponent = "essendon" AND player = "steven clark" |
###context:CREATE TABLE table_name_86 (team VARCHAR, outcome VARCHAR, opponent VARCHAR)
###human: Which team got a Behind outcome and had an opponent of Brisbane Bears?
###assistant: SELECT team FROM table_name_86 WHERE outcome = "behind" AND opponent = "brisbane bears" |
###context:CREATE TABLE table_name_7 (date VARCHAR, home_team VARCHAR)
###human: When did the north melbourne team play?
###assistant: SELECT date FROM table_name_7 WHERE home_team = "north melbourne" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.