text
stringlengths
114
1.06k
### question: what is the venue when the home team is melbourne? ### answer: SELECT venue FROM table_name_67 WHERE home_team = "melbourne" ### context: CREATE TABLE table_name_67 (venue VARCHAR, home_team VARCHAR)
### question: what is the date when the home team is st kilda? ### answer: SELECT date FROM table_name_26 WHERE home_team = "st kilda" ### context: CREATE TABLE table_name_26 (date VARCHAR, home_team VARCHAR)
### question: what is the date when the venue is junction oval? ### answer: SELECT date FROM table_name_47 WHERE venue = "junction oval" ### context: CREATE TABLE table_name_47 (date VARCHAR, venue VARCHAR)
### question: What is the home team score when played at mcg? ### answer: SELECT home_team AS score FROM table_name_24 WHERE venue = "mcg" ### context: CREATE TABLE table_name_24 (home_team VARCHAR, venue VARCHAR)
### question: who is the away team when played at junction oval? ### answer: SELECT away_team FROM table_name_41 WHERE venue = "junction oval" ### context: CREATE TABLE table_name_41 (away_team VARCHAR, venue VARCHAR)
### question: What is the top speed of the model 1.8 20v t? ### answer: SELECT SUM(top_speed__km_h_) FROM table_name_84 WHERE model = "1.8 20v t" ### context: CREATE TABLE table_name_84 (top_speed__km_h_ INTEGER, model VARCHAR)
### question: What is the max torque of model 1.4 16v? ### answer: SELECT max_torque__nm__at_rpm FROM table_name_82 WHERE model = "1.4 16v" ### context: CREATE TABLE table_name_82 (max_torque__nm__at_rpm VARCHAR, model VARCHAR)
### question: How many rounds did Ken Wharton go? ### answer: SELECT rounds FROM table_name_64 WHERE driver = "ken wharton" ### context: CREATE TABLE table_name_64 (rounds VARCHAR, driver VARCHAR)
### question: What driver has a 166 c 500 chassis? ### answer: SELECT driver FROM table_name_56 WHERE chassis = "166 c 500" ### context: CREATE TABLE table_name_56 (driver VARCHAR, chassis VARCHAR)
### question: What is the Onehunga school with a decile 3 and smaller than 310 rolls? ### answer: SELECT name FROM table_name_17 WHERE decile = "3" AND roll < 310 AND area = "onehunga" ### context: CREATE TABLE table_name_17 (name VARCHAR, area VARCHAR, decile VARCHAR, roll VARCHAR)
### question: What is the authority status of the school in Ellerslie with a decile of 7? ### answer: SELECT authority FROM table_name_38 WHERE area = "ellerslie" AND decile = "7" ### context: CREATE TABLE table_name_38 (authority VARCHAR, area VARCHAR, decile VARCHAR)
### question: What is the biggest roll number of Sylvia Park School, which has a state authority? ### answer: SELECT MAX(roll) FROM table_name_12 WHERE authority = "state" AND name = "sylvia park school" ### context: CREATE TABLE table_name_12 (roll INTEGER, authority VARCHAR, name VARCHAR)
### question: What is the name of the school with a decile of 1, a state authority, and located in Otahuhu? ### answer: SELECT name FROM table_name_41 WHERE decile = "1" AND authority = "state" AND area = "otahuhu" ### context: CREATE TABLE table_name_41 (name VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR)
### question: What is the special notes value for years under 2009? ### answer: SELECT special_notes FROM table_name_56 WHERE year < 2009 ### context: CREATE TABLE table_name_56 (special_notes VARCHAR, year INTEGER)
### question: How many years have a theme of Toronto Maple Leafs and an Issue Price of 24.95? ### answer: SELECT COUNT(year) FROM table_name_39 WHERE theme = "toronto maple leafs" AND issue_price = 24.95 ### context: CREATE TABLE table_name_39 (year VARCHAR, theme VARCHAR, issue_price VARCHAR)
### question: Who was the winner for the Winton Motor Raceway circuit? ### answer: SELECT winner FROM table_name_51 WHERE circuit = "winton motor raceway" ### context: CREATE TABLE table_name_51 (winner VARCHAR, circuit VARCHAR)
### question: What was the team that held the race title of Mallala? ### answer: SELECT team FROM table_name_47 WHERE race_title = "mallala" ### context: CREATE TABLE table_name_47 (team VARCHAR, race_title VARCHAR)
### question: Name the driver for Laps less than 9 and a grid of 13 ### answer: SELECT driver FROM table_name_60 WHERE laps < 9 AND grid = 13 ### context: CREATE TABLE table_name_60 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
### question: Who was the winner in the competition in which the runner-up was Rosenborg? ### answer: SELECT winners FROM table_name_16 WHERE runners_up = "rosenborg" ### context: CREATE TABLE table_name_16 (winners VARCHAR, runners_up VARCHAR)
### question: What was the year of the competition in which Odd Grenland was the runner-up? ### answer: SELECT years FROM table_name_57 WHERE runners_up = "odd grenland" ### context: CREATE TABLE table_name_57 (years VARCHAR, runners_up VARCHAR)
### question: Who was the winner in the competition in which Lyn took third place and LillestrΓΈm was the runner-up? ### answer: SELECT winners FROM table_name_44 WHERE runners_up = "lillestrΓΈm" AND third = "lyn" ### context: CREATE TABLE table_name_44 (winners VARCHAR, runners_up VARCHAR, third VARCHAR)
### question: What was the report in Buenos Aires? ### answer: SELECT report FROM table_name_98 WHERE location = "buenos aires" ### context: CREATE TABLE table_name_98 (report VARCHAR, location VARCHAR)
### question: What date was the Italian Grand Prix? ### answer: SELECT date FROM table_name_12 WHERE race = "italian grand prix" ### context: CREATE TABLE table_name_12 (date VARCHAR, race VARCHAR)
### question: What was the report when Mario Andretti held pole position and Jean-Pierre Jarier had the fastest lap? ### answer: SELECT report FROM table_name_54 WHERE pole_position = "mario andretti" AND fastest_lap = "jean-pierre jarier" ### context: CREATE TABLE table_name_54 (report VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
### question: What was the report in the Belgian Grand Prix? ### answer: SELECT report FROM table_name_5 WHERE race = "belgian grand prix" ### context: CREATE TABLE table_name_5 (report VARCHAR, race VARCHAR)
### question: Who was the winner when Niki Lauda held pole position? ### answer: SELECT race AS Winner FROM table_name_48 WHERE pole_position = "niki lauda" ### context: CREATE TABLE table_name_48 (race VARCHAR, pole_position VARCHAR)
### question: Who had the fastest lap in the Monaco Grand Prix? ### answer: SELECT fastest_lap FROM table_name_98 WHERE race = "monaco grand prix" ### context: CREATE TABLE table_name_98 (fastest_lap VARCHAR, race VARCHAR)
### question: Which Object type has a Constellation of cancer? ### answer: SELECT object_type FROM table_name_58 WHERE constellation = "cancer" ### context: CREATE TABLE table_name_58 (object_type VARCHAR, constellation VARCHAR)
### question: Which NGC number has a Constellation of ursa major? ### answer: SELECT MAX(ngc_number) FROM table_name_1 WHERE constellation = "ursa major" ### context: CREATE TABLE table_name_1 (ngc_number INTEGER, constellation VARCHAR)
### question: Which Constellation has a NGC number smaller than 2775, and a Declination (J2000) of Β°05β€²07β€³? ### answer: SELECT constellation FROM table_name_3 WHERE ngc_number < 2775 AND declination___j2000__ = "Β°05β€²07β€³" ### context: CREATE TABLE table_name_3 (constellation VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR)
### question: Which Object type has a NGC number of 2787? ### answer: SELECT object_type FROM table_name_19 WHERE ngc_number = 2787 ### context: CREATE TABLE table_name_19 (object_type VARCHAR, ngc_number VARCHAR)
### question: Where did St KIlda play their away game? ### answer: SELECT venue FROM table_name_46 WHERE away_team = "st kilda" ### context: CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR)
### question: What is the score when Philadelphia was the visitor with a Record of 7–4–0? ### answer: SELECT score FROM table_name_79 WHERE visitor = "philadelphia" AND record = "7–4–0" ### context: CREATE TABLE table_name_79 (score VARCHAR, visitor VARCHAR, record VARCHAR)
### question: What was nominee nominated for outstanding featured actor in a musical? ### answer: SELECT nominee FROM table_name_65 WHERE category = "outstanding featured actor in a musical" AND result = "nominated" ### context: CREATE TABLE table_name_65 (nominee VARCHAR, category VARCHAR, result VARCHAR)
### question: What is the result of nominee, Patricia McGourty, for the drama desk award? ### answer: SELECT result FROM table_name_17 WHERE award = "drama desk award" AND nominee = "patricia mcgourty" ### context: CREATE TABLE table_name_17 (result VARCHAR, award VARCHAR, nominee VARCHAR)
### question: What year was Patricia Mcgourty nominated for a Tony award? ### answer: SELECT year FROM table_name_41 WHERE nominee = "patricia mcgourty" AND award = "tony award" ### context: CREATE TABLE table_name_41 (year VARCHAR, nominee VARCHAR, award VARCHAR)
### question: I want the driver with Laps larger than 16 with a ferrari and grid less than 15 ### answer: SELECT driver FROM table_name_44 WHERE laps > 16 AND constructor = "ferrari" AND grid < 15 ### context: CREATE TABLE table_name_44 (driver VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR)
### question: What is the D 46 √ with a D 43 √ with r 3? ### answer: SELECT d_46_√ FROM table_name_2 WHERE d_43_√ = "r 3" ### context: CREATE TABLE table_name_2 (d_46_√ VARCHAR, d_43_√ VARCHAR)
### question: What is the D 43 √ with a D 49 √ with d 49 √? ### answer: SELECT d_43_√ FROM table_name_64 WHERE d_49_√ = "d 49 √" ### context: CREATE TABLE table_name_64 (d_43_√ VARCHAR, d_49_√ VARCHAR)
### question: What is the D 48 √ with a D 46 √ with r 33 o? ### answer: SELECT d_48_√ FROM table_name_87 WHERE d_46_√ = "r 33 o" ### context: CREATE TABLE table_name_87 (d_48_√ VARCHAR, d_46_√ VARCHAR)
### question: What is the D 48 √ with a D 49 √ with r 9? ### answer: SELECT d_48_√ FROM table_name_27 WHERE d_49_√ = "r 9" ### context: CREATE TABLE table_name_27 (d_48_√ VARCHAR, d_49_√ VARCHAR)
### question: What is the D 46 √ with a D 41 √ with d 38 √? ### answer: SELECT d_46_√ FROM table_name_94 WHERE d_41_√ = "d 38 √" ### context: CREATE TABLE table_name_94 (d_46_√ VARCHAR, d_41_√ VARCHAR)
### question: What is the D 45 √ with a D 46 √ with d 46 √? ### answer: SELECT d_45_√ FROM table_name_99 WHERE d_46_√ = "d 46 √" ### context: CREATE TABLE table_name_99 (d_45_√ VARCHAR, d_46_√ VARCHAR)
### question: Which constructor was there for the race with 25 laps? ### answer: SELECT constructor FROM table_name_31 WHERE laps = 25 ### context: CREATE TABLE table_name_31 (constructor VARCHAR, laps VARCHAR)
### question: Which driver had brm as a constructor and a time/retired of engine? ### answer: SELECT driver FROM table_name_99 WHERE constructor = "brm" AND time_retired = "engine" ### context: CREATE TABLE table_name_99 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR)
### question: What is the call sign for a class of A? ### answer: SELECT call_sign FROM table_name_69 WHERE class = "a" ### context: CREATE TABLE table_name_69 (call_sign VARCHAR, class VARCHAR)
### question: What is the average frequency MHz for license of eastville, virginia? ### answer: SELECT AVG(frequency_mhz) FROM table_name_24 WHERE city_of_license = "eastville, virginia" ### context: CREATE TABLE table_name_24 (frequency_mhz INTEGER, city_of_license VARCHAR)
### question: What is the average ERP W when the call sign is whre? ### answer: SELECT AVG(erp_w) FROM table_name_15 WHERE call_sign = "whre" ### context: CREATE TABLE table_name_15 (erp_w INTEGER, call_sign VARCHAR)
### question: What is the name of the school in Hillcrest? ### answer: SELECT name FROM table_name_12 WHERE area = "hillcrest" ### context: CREATE TABLE table_name_12 (name VARCHAR, area VARCHAR)
### question: What are the years available at Bayview School, which has state authority and a roll number larger than 333? ### answer: SELECT years FROM table_name_58 WHERE authority = "state" AND roll > 333 AND name = "bayview school" ### context: CREATE TABLE table_name_58 (years VARCHAR, name VARCHAR, authority VARCHAR, roll VARCHAR)
### question: When was Tomokazu Soma born who plays for the wild knights? ### answer: SELECT date_of_birth__age_ FROM table_name_71 WHERE club_province = "wild knights" AND player = "tomokazu soma" ### context: CREATE TABLE table_name_71 (date_of_birth__age_ VARCHAR, club_province VARCHAR, player VARCHAR)
### question: On November 19, 2008 what was the score? ### answer: SELECT score FROM table_name_13 WHERE date = "november 19, 2008" ### context: CREATE TABLE table_name_13 (score VARCHAR, date VARCHAR)
### question: What is the score on February 23, 2005? ### answer: SELECT score FROM table_name_81 WHERE date = "february 23, 2005" ### context: CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)
### question: What is the result foe October 12, 2005? ### answer: SELECT result FROM table_name_75 WHERE date = "october 12, 2005" ### context: CREATE TABLE table_name_75 (result VARCHAR, date VARCHAR)
### question: How many events for orville moody, ranking below 3? ### answer: SELECT SUM(events) FROM table_name_67 WHERE rank > 3 AND player = "orville moody" ### context: CREATE TABLE table_name_67 (events INTEGER, rank VARCHAR, player VARCHAR)
### question: What is the rank for don january with over 2 wins and over 17 events? ### answer: SELECT MIN(rank) FROM table_name_65 WHERE wins > 2 AND player = "don january" AND events > 17 ### context: CREATE TABLE table_name_65 (rank INTEGER, events VARCHAR, wins VARCHAR, player VARCHAR)
### question: What is the score of the Home team of geelong? ### answer: SELECT home_team AS score FROM table_name_74 WHERE home_team = "geelong" ### context: CREATE TABLE table_name_74 (home_team VARCHAR)
### question: Which Away team has a Home team of south melbourne? ### answer: SELECT away_team FROM table_name_63 WHERE home_team = "south melbourne" ### context: CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)
### question: Which Away team has a Venue of arden street oval? ### answer: SELECT away_team FROM table_name_32 WHERE venue = "arden street oval" ### context: CREATE TABLE table_name_32 (away_team VARCHAR, venue VARCHAR)
### question: Which Away team score has a Venue of scg? ### answer: SELECT away_team AS score FROM table_name_82 WHERE venue = "scg" ### context: CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)
### question: What school has the player of mike rosario? ### answer: SELECT school FROM table_name_28 WHERE player = "mike rosario" ### context: CREATE TABLE table_name_28 (school VARCHAR, player VARCHAR)
### question: What was the nba draft for al-farouq aminu? ### answer: SELECT nba_draft FROM table_name_53 WHERE player = "al-farouq aminu" ### context: CREATE TABLE table_name_53 (nba_draft VARCHAR, player VARCHAR)
### question: What was the average attendance of a team with a 38–31–8 record? ### answer: SELECT AVG(attendance) FROM table_name_16 WHERE record = "38–31–8" ### context: CREATE TABLE table_name_16 (attendance INTEGER, record VARCHAR)
### question: What is the smallest grid for Bob Anderson? ### answer: SELECT MIN(grid) FROM table_name_89 WHERE driver = "bob anderson" ### context: CREATE TABLE table_name_89 (grid INTEGER, driver VARCHAR)
### question: What was the time when the score was 0–3? ### answer: SELECT time FROM table_name_67 WHERE score = "0–3" ### context: CREATE TABLE table_name_67 (time VARCHAR, score VARCHAR)
### question: What was the first set with a third set of 25–21? ### answer: SELECT set_1 FROM table_name_87 WHERE set_3 = "25–21" ### context: CREATE TABLE table_name_87 (set_1 VARCHAR, set_3 VARCHAR)
### question: How many total games associated with the Pac-12 of california and 117 years? ### answer: SELECT total_games FROM table_name_84 WHERE years = 117 AND pac_12 = "california" ### context: CREATE TABLE table_name_84 (total_games VARCHAR, years VARCHAR, pac_12 VARCHAR)
### question: What is the average number of years associated with 51 games tied and over 1184 total games? ### answer: SELECT AVG(years) FROM table_name_60 WHERE tied = 51 AND total_games > 1184 ### context: CREATE TABLE table_name_60 (years INTEGER, tied VARCHAR, total_games VARCHAR)
### question: What is the highest number of games tied for teams with under 551 games and a percentage of under 0.5593? ### answer: SELECT MAX(tied) FROM table_name_8 WHERE pct < 0.5593 AND lost = 551 ### context: CREATE TABLE table_name_8 (tied INTEGER, pct VARCHAR, lost VARCHAR)
### question: Name the country for airline of gol ### answer: SELECT country FROM table_name_33 WHERE airline = "gol" ### context: CREATE TABLE table_name_33 (country VARCHAR, airline VARCHAR)
### question: Name the airline for rank of 4 ### answer: SELECT airline FROM table_name_98 WHERE rank = 4 ### context: CREATE TABLE table_name_98 (airline VARCHAR, rank VARCHAR)
### question: What digital reaction has a hot 100 reaction of 4 (+4)? ### answer: SELECT hot_digital_songs_reaction FROM table_name_81 WHERE hot_100_reaction = "4 (+4)" ### context: CREATE TABLE table_name_81 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)
### question: What digital reaction has hot 100 reaction of 2 (+1)? ### answer: SELECT hot_digital_songs_reaction FROM table_name_89 WHERE hot_100_reaction = "2 (+1)" ### context: CREATE TABLE table_name_89 (hot_digital_songs_reaction VARCHAR, hot_100_reaction VARCHAR)
### question: Which week has hot 100 reaction as did not debut for Natalie Cole? ### answer: SELECT week FROM table_name_71 WHERE hot_100_reaction = "did not debut" AND performer_s_ = "natalie cole" ### context: CREATE TABLE table_name_71 (week VARCHAR, hot_100_reaction VARCHAR, performer_s_ VARCHAR)
### question: What is the hot 100 reaction in week of top 13 for Kanye West? ### answer: SELECT hot_100_reaction FROM table_name_41 WHERE week = "top 13" AND performer_s_ = "kanye west" ### context: CREATE TABLE table_name_41 (hot_100_reaction VARCHAR, week VARCHAR, performer_s_ VARCHAR)
### question: What is the digital reaction for week of top 5 for Taylor Hicks? ### answer: SELECT hot_digital_songs_reaction FROM table_name_20 WHERE week = "top 5" AND performer_s_ = "taylor hicks" ### context: CREATE TABLE table_name_20 (hot_digital_songs_reaction VARCHAR, week VARCHAR, performer_s_ VARCHAR)
### question: Which Time/Retired had a grid number bigger than 1 and whose driver was Damon Hill? ### answer: SELECT time_retired FROM table_name_78 WHERE grid > 1 AND driver = "damon hill" ### context: CREATE TABLE table_name_78 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)
### question: Which lap number had Olivier Panis as a driver? ### answer: SELECT laps FROM table_name_98 WHERE driver = "olivier panis" ### context: CREATE TABLE table_name_98 (laps VARCHAR, driver VARCHAR)
### question: what is the grid when the time/retired is oil pressure and the laps are more than 50? ### answer: SELECT AVG(grid) FROM table_name_15 WHERE time_retired = "oil pressure" AND laps > 50 ### context: CREATE TABLE table_name_15 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
### question: what is the grid when the time/retired is 1:46:42.3? ### answer: SELECT SUM(grid) FROM table_name_61 WHERE time_retired = "1:46:42.3" ### context: CREATE TABLE table_name_61 (grid INTEGER, time_retired VARCHAR)
### question: What was the attendance when Fitzroy played as the away team? ### answer: SELECT COUNT(crowd) FROM table_name_76 WHERE away_team = "fitzroy" ### context: CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR)
### question: What did the home team score at Western Oval? ### answer: SELECT home_team AS score FROM table_name_4 WHERE venue = "western oval" ### context: CREATE TABLE table_name_4 (home_team VARCHAR, venue VARCHAR)
### question: Who was the home team when the attendance was more than 20,283? ### answer: SELECT home_team FROM table_name_5 WHERE crowd > 20 OFFSET 283 ### context: CREATE TABLE table_name_5 (home_team VARCHAR, crowd INTEGER)
### question: On April 29, with a game larger than 2, what is the high points? ### answer: SELECT high_points FROM table_name_25 WHERE game > 2 AND date = "april 29" ### context: CREATE TABLE table_name_25 (high_points VARCHAR, game VARCHAR, date VARCHAR)
### question: What was the score for Game 3? ### answer: SELECT score FROM table_name_18 WHERE game = 3 ### context: CREATE TABLE table_name_18 (score VARCHAR, game VARCHAR)
### question: What is the grid total for cars that went 17 laps? ### answer: SELECT SUM(grid) FROM table_name_60 WHERE laps = 17 ### context: CREATE TABLE table_name_60 (grid INTEGER, laps VARCHAR)
### question: How many golds for the nation ranked below 5 and over 1 bronze medals? ### answer: SELECT MAX(gold) FROM table_name_80 WHERE rank > 5 AND bronze < 1 ### context: CREATE TABLE table_name_80 (gold INTEGER, rank VARCHAR, bronze VARCHAR)
### question: During footscray's home match, who was the away team? ### answer: SELECT away_team AS score FROM table_name_33 WHERE home_team = "footscray" ### context: CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)
### question: Which format had a United States region and a date of August 11, 2009? ### answer: SELECT format FROM table_name_92 WHERE region = "united states" AND date = "august 11, 2009" ### context: CREATE TABLE table_name_92 (format VARCHAR, region VARCHAR, date VARCHAR)
### question: Which date had a Japan region? ### answer: SELECT date FROM table_name_76 WHERE region = "japan" ### context: CREATE TABLE table_name_76 (date VARCHAR, region VARCHAR)
### question: Which region had a catalogue number of 9362482872? ### answer: SELECT region FROM table_name_89 WHERE catalogue = "9362482872" ### context: CREATE TABLE table_name_89 (region VARCHAR, catalogue VARCHAR)
### question: Which region had the date of November 18, 2002? ### answer: SELECT region FROM table_name_41 WHERE date = "november 18, 2002" ### context: CREATE TABLE table_name_41 (region VARCHAR, date VARCHAR)
### question: Which label had a Japan region and a date of November 3, 2004? ### answer: SELECT label FROM table_name_53 WHERE region = "japan" AND date = "november 3, 2004" ### context: CREATE TABLE table_name_53 (label VARCHAR, region VARCHAR, date VARCHAR)
### question: Which label had a CD format and a date of June 25, 2002? ### answer: SELECT label FROM table_name_38 WHERE format = "cd" AND date = "june 25, 2002" ### context: CREATE TABLE table_name_38 (label VARCHAR, format VARCHAR, date VARCHAR)
### question: What award was nominated in 2007? ### answer: SELECT award FROM table_name_76 WHERE result = "nominated" AND year = 2007 ### context: CREATE TABLE table_name_76 (award VARCHAR, result VARCHAR, year VARCHAR)
### question: What year did was the Inside Soap Awards won? ### answer: SELECT AVG(year) FROM table_name_41 WHERE result = "won" AND award = "inside soap awards" ### context: CREATE TABLE table_name_41 (year INTEGER, result VARCHAR, award VARCHAR)
### question: What was the record for the game on April 9, 2008? ### answer: SELECT record FROM table_name_9 WHERE date = "april 9, 2008" ### context: CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)
### question: Who was the leading scorer on April 9, 2008? ### answer: SELECT leading_scorer FROM table_name_34 WHERE date = "april 9, 2008" ### context: CREATE TABLE table_name_34 (leading_scorer VARCHAR, date VARCHAR)
### question: in a game against st kilda, what was the away team's score? ### answer: SELECT away_team FROM table_name_33 WHERE home_team = "st kilda" ### context: CREATE TABLE table_name_33 (away_team VARCHAR, home_team VARCHAR)
### question: In the match where geelong was the away team, who was the home team? ### answer: SELECT home_team FROM table_name_46 WHERE away_team = "geelong" ### context: CREATE TABLE table_name_46 (home_team VARCHAR, away_team VARCHAR)