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