text
stringlengths
114
1.06k
### question: If the Venue was princes park, which Date did the game take place on? ### answer: SELECT date FROM table_name_58 WHERE venue = "princes park" ### context: CREATE TABLE table_name_58 (date VARCHAR, venue VARCHAR)
### question: What is the average rank of one who is at 76 laps? ### answer: SELECT AVG(rank) FROM table_name_98 WHERE laps = 76 ### context: CREATE TABLE table_name_98 (rank INTEGER, laps VARCHAR)
### question: What is the average grid number for cars that retired due to engine failure before 18 laps? ### answer: SELECT AVG(grid) FROM table_name_69 WHERE time_retired = "engine" AND laps < 18 ### context: CREATE TABLE table_name_69 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
### question: What is the time/retired for jo siffert with a grid under 11? ### answer: SELECT time_retired FROM table_name_45 WHERE grid < 11 AND driver = "jo siffert" ### context: CREATE TABLE table_name_45 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR)
### question: What driver has under 19 laps and a grid under 10? ### answer: SELECT driver FROM table_name_89 WHERE laps < 19 AND grid < 10 ### context: CREATE TABLE table_name_89 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
### question: Where was the game that the attendance was 24,694? ### answer: SELECT MIN(game) FROM table_name_99 WHERE attendance = 24 OFFSET 694 ### context: CREATE TABLE table_name_99 (game INTEGER, attendance VARCHAR)
### question: What was the attendance on September 11? ### answer: SELECT MAX(attendance) FROM table_name_10 WHERE date = "september 11" ### context: CREATE TABLE table_name_10 (attendance INTEGER, date VARCHAR)
### question: Who had more than 3 wins? ### answer: SELECT winner FROM table_name_47 WHERE win__number > 3 ### context: CREATE TABLE table_name_47 (winner VARCHAR, win__number INTEGER)
### question: How many league cup goals for tyrone thompson with 0 FLT goals? ### answer: SELECT MIN(league_cup_goals) FROM table_name_46 WHERE name = "tyrone thompson" AND flt_goals > 0 ### context: CREATE TABLE table_name_46 (league_cup_goals INTEGER, name VARCHAR, flt_goals VARCHAR)
### question: How many goals for the FW with 0 FA cup appearances and over 0 playoff goals? ### answer: SELECT MIN(league_goals) FROM table_name_14 WHERE position = "fw" AND fa_cup_apps = "0" AND playoff_goals > 0 ### context: CREATE TABLE table_name_14 (league_goals INTEGER, playoff_goals VARCHAR, position VARCHAR, fa...
### question: I want to know the third with runner of paris saint-germain and edition less than 5 ### answer: SELECT third FROM table_name_40 WHERE runner_up = "paris saint-germain" AND edition < 5 ### context: CREATE TABLE table_name_40 (third VARCHAR, runner_up VARCHAR, edition VARCHAR)
### question: I want the sum of year for edition more than 4 and winners of new york red bulls ### answer: SELECT SUM(year) FROM table_name_93 WHERE edition > 4 AND winner = "new york red bulls" ### context: CREATE TABLE table_name_93 (year INTEGER, edition VARCHAR, winner VARCHAR)
### question: Tell me the lowest edition for winner of arsenal and third of celtic ### answer: SELECT MIN(edition) FROM table_name_13 WHERE winner = "arsenal" AND third = "celtic" ### context: CREATE TABLE table_name_13 (edition INTEGER, winner VARCHAR, third VARCHAR)
### question: What is total orders for goals of 239? ### answer: SELECT COUNT(order) FROM table_name_77 WHERE goals = 239 ### context: CREATE TABLE table_name_77 (order VARCHAR, goals VARCHAR)
### question: Who had an order of 907 and more than 1 game? ### answer: SELECT name FROM table_name_67 WHERE games > 1 AND order = 907 ### context: CREATE TABLE table_name_67 (name VARCHAR, games VARCHAR, order VARCHAR)
### question: What seasons had 288 games and more than 100 goals? ### answer: SELECT seasons FROM table_name_88 WHERE goals > 100 AND games = 288 ### context: CREATE TABLE table_name_88 (seasons VARCHAR, goals VARCHAR, games VARCHAR)
### question: What is the low goal for orders more than 939 during Seasons of 1996 – 2001? ### answer: SELECT MIN(goals) FROM table_name_17 WHERE seasons = "1996 – 2001" AND order > 939 ### context: CREATE TABLE table_name_17 (goals INTEGER, seasons VARCHAR, order VARCHAR)
### question: What was the Record for the game on October 30? ### answer: SELECT record FROM table_name_8 WHERE date = "october 30" ### context: CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)
### question: When was the game played against a visiting team from Philadelphia? ### answer: SELECT date FROM table_name_65 WHERE visitor = "philadelphia" ### context: CREATE TABLE table_name_65 (date VARCHAR, visitor VARCHAR)
### question: What was the score when the home team, Toronto, played against New Jersey? ### answer: SELECT score FROM table_name_62 WHERE visitor = "new jersey" AND home = "toronto" ### context: CREATE TABLE table_name_62 (score VARCHAR, visitor VARCHAR, home VARCHAR)
### question: When was the home game for the NY Islanders? ### answer: SELECT date FROM table_name_20 WHERE home = "ny islanders" ### context: CREATE TABLE table_name_20 (date VARCHAR, home VARCHAR)
### question: Who was the home team for the game played on November 2, 2007? ### answer: SELECT home FROM table_name_69 WHERE date = "november 2, 2007" ### context: CREATE TABLE table_name_69 (home VARCHAR, date VARCHAR)
### question: What is silver when gold is 1 and the rank is less than 3 for japan? ### answer: SELECT silver FROM table_name_77 WHERE gold = 1 AND rank < 3 AND nation = "japan" ### context: CREATE TABLE table_name_77 (silver VARCHAR, nation VARCHAR, gold VARCHAR, rank VARCHAR)
### question: What is the rank for the total less than 1? ### answer: SELECT AVG(rank) FROM table_name_34 WHERE total < 1 ### context: CREATE TABLE table_name_34 (rank INTEGER, total INTEGER)
### question: What is the gold when the total is less than 2, and rank is 3 and Canada is the nation? ### answer: SELECT gold FROM table_name_29 WHERE total < 2 AND rank = 3 AND nation = "canada" ### context: CREATE TABLE table_name_29 (gold VARCHAR, nation VARCHAR, total VARCHAR, rank VARCHAR)
### question: What is the average amount of floors of the building that is ranked larger than 30, a year prior to 1977 and an address of 100 Van Ness Avenue? ### answer: SELECT AVG(floors) FROM table_name_6 WHERE rank > 30 AND year < 1977 AND name = "100 van ness avenue" ### context: CREATE TABLE table_name_6 (floors I...
### question: What is the name of the building that has more than 31 floors and built prior to 1964? ### answer: SELECT name FROM table_name_91 WHERE floors > 31 AND year < 1964 ### context: CREATE TABLE table_name_91 (name VARCHAR, floors VARCHAR, year VARCHAR)
### question: Who was the away team at the game played at Lake Oval? ### answer: SELECT away_team FROM table_name_67 WHERE venue = "lake oval" ### context: CREATE TABLE table_name_67 (away_team VARCHAR, venue VARCHAR)
### question: What was the home team score for the game played against Collingwood? ### answer: SELECT home_team AS score FROM table_name_24 WHERE away_team = "collingwood" ### context: CREATE TABLE table_name_24 (home_team VARCHAR, away_team VARCHAR)
### question: Who was the team with the smallest crowd at the Princes Park venue? ### answer: SELECT MIN(crowd) FROM table_name_73 WHERE venue = "princes park" ### context: CREATE TABLE table_name_73 (crowd INTEGER, venue VARCHAR)
### question: what is the size km² when the density hab/km is 8,321? ### answer: SELECT SUM(size_km²) FROM table_name_52 WHERE density_hab_km = 8 OFFSET 321 ### context: CREATE TABLE table_name_52 (size_km² INTEGER, density_hab_km VARCHAR)
### question: What is the score for the away team at Victoria Park? ### answer: SELECT away_team AS score FROM table_name_24 WHERE venue = "victoria park" ### context: CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR)
### question: When did Carlton play as the home team? ### answer: SELECT date FROM table_name_60 WHERE home_team = "carlton" ### context: CREATE TABLE table_name_60 (date VARCHAR, home_team VARCHAR)
### question: What was the original air date when ed horowitz wrote it? ### answer: SELECT original_airdate FROM table_name_89 WHERE written_by = "ed horowitz" ### context: CREATE TABLE table_name_89 (original_airdate VARCHAR, written_by VARCHAR)
### question: Name the episode number that aired on july 23, 2000 ### answer: SELECT episode__number FROM table_name_34 WHERE original_airdate = "july 23, 2000" ### context: CREATE TABLE table_name_34 (episode__number VARCHAR, original_airdate VARCHAR)
### question: How many draws for avia band with over 22 points? ### answer: SELECT COUNT(draw) FROM table_name_87 WHERE points > 22 AND artist = "avia band" ### context: CREATE TABLE table_name_87 (draw VARCHAR, points VARCHAR, artist VARCHAR)
### question: What's the total earnings ($) with more than two wins and a rank less than 2? ### answer: SELECT COUNT(earnings___) AS $__ FROM table_name_1 WHERE wins > 2 AND rank < 2 ### context: CREATE TABLE table_name_1 (earnings___ VARCHAR, wins VARCHAR, rank VARCHAR)
### question: Who's ranked less than 2? ### answer: SELECT player FROM table_name_32 WHERE rank < 2 ### context: CREATE TABLE table_name_32 (player VARCHAR, rank INTEGER)
### question: What did the away team score at Moorabbin oval? ### answer: SELECT away_team AS score FROM table_name_38 WHERE venue = "moorabbin oval" ### context: CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR)
### question: What was the attendance at the game played at Moorabbin Oval? ### answer: SELECT crowd FROM table_name_78 WHERE venue = "moorabbin oval" ### context: CREATE TABLE table_name_78 (crowd VARCHAR, venue VARCHAR)
### question: What is the wheel arrangement of the locomotive with number 6 or 4? ### answer: SELECT wheel_arrangement FROM table_name_95 WHERE number = "6 or 4" ### context: CREATE TABLE table_name_95 (wheel_arrangement VARCHAR, number VARCHAR)
### question: What is the boiler pressure for the Hesperus model? ### answer: SELECT boiler_pressure FROM table_name_58 WHERE name = "hesperus" ### context: CREATE TABLE table_name_58 (boiler_pressure VARCHAR, name VARCHAR)
### question: What are the driving wheels of the model built in 1883? ### answer: SELECT driving_wheels FROM table_name_51 WHERE date_built = "1883" ### context: CREATE TABLE table_name_51 (driving_wheels VARCHAR, date_built VARCHAR)
### question: What year was the wheel arrangement 0-6-0 and a class 302? ### answer: SELECT year_made FROM table_name_76 WHERE wheel_arrangement = "0-6-0" AND class = "302" ### context: CREATE TABLE table_name_76 (year_made VARCHAR, wheel_arrangement VARCHAR, class VARCHAR)
### question: How many have a class of 330? ### answer: SELECT quantity_made FROM table_name_97 WHERE class = "330" ### context: CREATE TABLE table_name_97 (quantity_made VARCHAR, class VARCHAR)
### question: What comments are made in 1875? ### answer: SELECT comments FROM table_name_64 WHERE year_made = "1875" ### context: CREATE TABLE table_name_64 (comments VARCHAR, year_made VARCHAR)
### question: Which artist's work is the butterfly Tiger Swallowtail? ### answer: SELECT artist FROM table_name_16 WHERE butterfly = "tiger swallowtail" ### context: CREATE TABLE table_name_16 (artist VARCHAR, butterfly VARCHAR)
### question: Which artist uses a finish of selective gold plating? ### answer: SELECT artist FROM table_name_29 WHERE finish = "selective gold plating" ### context: CREATE TABLE table_name_29 (artist VARCHAR, finish VARCHAR)
### question: What mintage earlier than the year 2006 has the butterfly great spangled fritillary. ### answer: SELECT mintage FROM table_name_15 WHERE year < 2006 AND butterfly = "great spangled fritillary" ### context: CREATE TABLE table_name_15 (mintage VARCHAR, year VARCHAR, butterfly VARCHAR)
### question: What is the date for Europe? ### answer: SELECT date FROM table_name_32 WHERE region = "europe" ### context: CREATE TABLE table_name_32 (date VARCHAR, region VARCHAR)
### question: Which team played away at Victoria park? ### answer: SELECT away_team AS score FROM table_name_78 WHERE venue = "victoria park" ### context: CREATE TABLE table_name_78 (away_team VARCHAR, venue VARCHAR)
### question: When the record was 4-4, how many people attended? ### answer: SELECT attendance FROM table_name_64 WHERE record = "4-4" ### context: CREATE TABLE table_name_64 (attendance VARCHAR, record VARCHAR)
### question: When they were playing the detroit lions at tampa stadium, what was the score? ### answer: SELECT result FROM table_name_49 WHERE game_site = "tampa stadium" AND opponent = "detroit lions" ### context: CREATE TABLE table_name_49 (result VARCHAR, game_site VARCHAR, opponent VARCHAR)
### question: Which date did 64,443 people attend a game? ### answer: SELECT date FROM table_name_47 WHERE attendance = "64,443" ### context: CREATE TABLE table_name_47 (date VARCHAR, attendance VARCHAR)
### question: what is the highest rank with a total less than 1? ### answer: SELECT MAX(rank) FROM table_name_68 WHERE total < 1 ### context: CREATE TABLE table_name_68 (rank INTEGER, total INTEGER)
### question: what is the average bronze when gold is 1, the nation is hungary and the rank is less than 3? ### answer: SELECT AVG(bronze) FROM table_name_96 WHERE gold = 1 AND nation = "hungary" AND rank < 3 ### context: CREATE TABLE table_name_96 (bronze INTEGER, rank VARCHAR, gold VARCHAR, nation VARCHAR)
### question: How many times was the total more than 1, the nation was east germany and silver was more than 1? ### answer: SELECT COUNT(bronze) FROM table_name_25 WHERE total > 1 AND nation = "east germany" AND silver > 1 ### context: CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR, total VARCHAR, nation VA...
### question: what is the average rank when the nation is east germany and silver is more than 1? ### answer: SELECT AVG(rank) FROM table_name_27 WHERE nation = "east germany" AND silver > 1 ### context: CREATE TABLE table_name_27 (rank INTEGER, nation VARCHAR, silver VARCHAR)
### question: Where did carlton play while away? ### answer: SELECT venue FROM table_name_98 WHERE away_team = "carlton" ### context: CREATE TABLE table_name_98 (venue VARCHAR, away_team VARCHAR)
### question: What was the top crowd when essendon played away? ### answer: SELECT MAX(crowd) FROM table_name_75 WHERE away_team = "essendon" ### context: CREATE TABLE table_name_75 (crowd INTEGER, away_team VARCHAR)
### question: I want the date of appointment for manner of departure being sacked ### answer: SELECT date_of_appointment FROM table_name_91 WHERE manner_of_departure = "sacked" ### context: CREATE TABLE table_name_91 (date_of_appointment VARCHAR, manner_of_departure VARCHAR)
### question: I want the manner of departure for 1 june 2007 ### answer: SELECT manner_of_departure FROM table_name_2 WHERE date_of_appointment = "1 june 2007" ### context: CREATE TABLE table_name_2 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
### question: I want the outgoing manager for craig brewster ### answer: SELECT outgoing_manager FROM table_name_40 WHERE replaced_by = "craig brewster" ### context: CREATE TABLE table_name_40 (outgoing_manager VARCHAR, replaced_by VARCHAR)
### question: I want the team for replaced by mark mcghee ### answer: SELECT team FROM table_name_95 WHERE replaced_by = "mark mcghee" ### context: CREATE TABLE table_name_95 (team VARCHAR, replaced_by VARCHAR)
### question: I want the outgoing manager for 19 february ### answer: SELECT outgoing_manager FROM table_name_57 WHERE date_of_appointment = "19 february" ### context: CREATE TABLE table_name_57 (outgoing_manager VARCHAR, date_of_appointment VARCHAR)
### question: I want the team with replaced by being csaba lászló ### answer: SELECT team FROM table_name_24 WHERE replaced_by = "csaba lászló" ### context: CREATE TABLE table_name_24 (team VARCHAR, replaced_by VARCHAR)
### question: With which association did estribillo ii run as Horse 1? ### answer: SELECT association FROM table_name_30 WHERE horse_1 = "estribillo ii" ### context: CREATE TABLE table_name_30 (association VARCHAR, horse_1 VARCHAR)
### question: Which horse was Horse 1 when rené guzmán raced with the mulchén association? ### answer: SELECT horse_1 FROM table_name_32 WHERE rider_1 = "rené guzmán" AND association = "mulchén" ### context: CREATE TABLE table_name_32 (horse_1 VARCHAR, rider_1 VARCHAR, association VARCHAR)
### question: Who was the second rider when papayero raced as Horse 1 in the city of rancagua? ### answer: SELECT rider_2 FROM table_name_2 WHERE city = "rancagua" AND horse_1 = "papayero" ### context: CREATE TABLE table_name_2 (rider_2 VARCHAR, city VARCHAR, horse_1 VARCHAR)
### question: What was the period for 1896? ### answer: SELECT period FROM table_name_67 WHERE year = 1896 ### context: CREATE TABLE table_name_67 (period VARCHAR, year VARCHAR)
### question: Tell me the height which has a surpassed by of book tower ### answer: SELECT height_feet_m FROM table_name_2 WHERE surpassed_by = "book tower" ### context: CREATE TABLE table_name_2 (height_feet_m VARCHAR, surpassed_by VARCHAR)
### question: I need the surpassed for years before 1925 and period of 6 years ### answer: SELECT surpassed_by FROM table_name_57 WHERE year < 1925 AND period = "6 years" ### context: CREATE TABLE table_name_57 (surpassed_by VARCHAR, year VARCHAR, period VARCHAR)
### question: Hawthorn played as an Away team in which venue? ### answer: SELECT venue FROM table_name_56 WHERE away_team = "hawthorn" ### context: CREATE TABLE table_name_56 (venue VARCHAR, away_team VARCHAR)
### question: Who was the nominee having a Tony award? ### answer: SELECT nominee FROM table_name_16 WHERE award = "tony award" ### context: CREATE TABLE table_name_16 (nominee VARCHAR, award VARCHAR)
### question: What was the year Bernadette Peters was a nominee for the Tony award? ### answer: SELECT SUM(year) FROM table_name_67 WHERE award = "tony award" AND nominee = "bernadette peters" ### context: CREATE TABLE table_name_67 (year INTEGER, award VARCHAR, nominee VARCHAR)
### question: Which category was Michael Stewart a nominee in? ### answer: SELECT category FROM table_name_4 WHERE nominee = "michael stewart" ### context: CREATE TABLE table_name_4 (category VARCHAR, nominee VARCHAR)
### question: What was the rank in the 2009 Hanoi Games? ### answer: SELECT rank FROM table_name_75 WHERE games = "2009 hanoi" ### context: CREATE TABLE table_name_75 (rank VARCHAR, games VARCHAR)
### question: What is the label of the album titled 與你相逢 and released in 1994? ### answer: SELECT label_s_ FROM table_name_63 WHERE year_of_release = 1994 AND title = "與你相逢" ### context: CREATE TABLE table_name_63 (label_s_ VARCHAR, year_of_release VARCHAR, title VARCHAR)
### question: What is the earliest year of release for the album labelled 艺能动音? ### answer: SELECT MIN(year_of_release) FROM table_name_93 WHERE label_s_ = "艺能动音" ### context: CREATE TABLE table_name_93 (year_of_release INTEGER, label_s_ VARCHAR)
### question: Tell me the name in polish for radom seat ### answer: SELECT name_in_polish FROM table_name_36 WHERE seat = "radom" ### context: CREATE TABLE table_name_36 (name_in_polish VARCHAR, seat VARCHAR)
### question: Tell me the population for gubernia łomżyńska ### answer: SELECT population, _in_thousands, __1905__ FROM table_name_79 WHERE name_in_polish = "gubernia łomżyńska" ### context: CREATE TABLE table_name_79 (population VARCHAR, _in_thousands VARCHAR, __1905__ VARCHAR, name_in_polish VARCHAR)
### question: What is the promotion when the arena was the venue and the event of legends of the arena? ### answer: SELECT promotion FROM table_name_4 WHERE venue = "the arena" AND event = "legends of the arena" ### context: CREATE TABLE table_name_4 (promotion VARCHAR, venue VARCHAR, event VARCHAR)
### question: What is the name of the inductee for the ecw arena? ### answer: SELECT inductee_s_ FROM table_name_56 WHERE venue = "ecw arena" ### context: CREATE TABLE table_name_56 (inductee_s_ VARCHAR, venue VARCHAR)
### question: What is the promotion when the event was Acid-fest? ### answer: SELECT promotion FROM table_name_7 WHERE event = "acid-fest" ### context: CREATE TABLE table_name_7 (promotion VARCHAR, event VARCHAR)
### question: What is the location when the event was November reign? ### answer: SELECT location FROM table_name_84 WHERE event = "november reign" ### context: CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR)
### question: What even was Jerry Lynn the inductee? ### answer: SELECT event FROM table_name_16 WHERE inductee_s_ = "jerry lynn" ### context: CREATE TABLE table_name_16 (event VARCHAR, inductee_s_ VARCHAR)
### question: What is the namesake of Ayashe at a longitude less than 270.7, latitude more than -47.1, and a diameter less than 7.2? ### answer: SELECT named AS after FROM table_name_87 WHERE longitude < 270.7 AND latitude > -47.1 AND diameter__km_ < 7.2 AND name = "ayashe" ### context: CREATE TABLE table_name_87 (name...
### question: Tell me the opponent that had a result of l 27-20 ### answer: SELECT opponent FROM table_name_84 WHERE result = "l 27-20" ### context: CREATE TABLE table_name_84 (opponent VARCHAR, result VARCHAR)
### question: What was the game site for week 14? ### answer: SELECT game_site FROM table_name_87 WHERE week = "14" ### context: CREATE TABLE table_name_87 (game_site VARCHAR, week VARCHAR)
### question: Name the week when the result was l 38-17 ### answer: SELECT week FROM table_name_61 WHERE result = "l 38-17" ### context: CREATE TABLE table_name_61 (week VARCHAR, result VARCHAR)
### question: Name the date when 33,307 attended ### answer: SELECT date FROM table_name_20 WHERE attendance = "33,307" ### context: CREATE TABLE table_name_20 (date VARCHAR, attendance VARCHAR)
### question: Who used the Ford Cosworth DFV 3.0 v8 engine in rounds 3-12, with a G tire? ### answer: SELECT driver FROM table_name_22 WHERE engine = "ford cosworth dfv 3.0 v8" AND rounds = "3-12" AND tyre = "g" ### context: CREATE TABLE table_name_22 (driver VARCHAR, tyre VARCHAR, engine VARCHAR, rounds VARCHAR)
### question: Which driver was in all rounds as an entrant of Motor Racing Developments? ### answer: SELECT driver FROM table_name_6 WHERE rounds = "all" AND entrant = "motor racing developments" ### context: CREATE TABLE table_name_6 (driver VARCHAR, rounds VARCHAR, entrant VARCHAR)
### question: Motor Racing Developments used which tire in rounds 3-12? ### answer: SELECT tyre FROM table_name_58 WHERE entrant = "motor racing developments" AND rounds = "3-12" ### context: CREATE TABLE table_name_58 (tyre VARCHAR, entrant VARCHAR, rounds VARCHAR)
### question: Which engine was on a car with G tires, a chassis model of 003 002 004 005 006, driven by Jackie Stewart? ### answer: SELECT engine FROM table_name_98 WHERE tyre = "g" AND chassis = "003 002 004 005 006" AND driver = "jackie stewart" ### context: CREATE TABLE table_name_98 (engine VARCHAR, driver VARCHAR,...
### question: What was the result on the wild card? ### answer: SELECT result FROM table_name_74 WHERE week = "wild card" ### context: CREATE TABLE table_name_74 (result VARCHAR, week VARCHAR)
### question: What date was the week 17 game played on? ### answer: SELECT date FROM table_name_62 WHERE week = "17" ### context: CREATE TABLE table_name_62 (date VARCHAR, week VARCHAR)
### question: What was the attendance on week 12? ### answer: SELECT attendance FROM table_name_8 WHERE week = "12" ### context: CREATE TABLE table_name_8 (attendance VARCHAR, week VARCHAR)
### question: What was the result on December 31, 2005? ### answer: SELECT result FROM table_name_68 WHERE date = "december 31, 2005" ### context: CREATE TABLE table_name_68 (result VARCHAR, date VARCHAR)
### question: What was the date of the game at Lake Oval? ### answer: SELECT date FROM table_name_17 WHERE venue = "lake oval" ### context: CREATE TABLE table_name_17 (date VARCHAR, venue VARCHAR)