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