question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is natural change with a crude death rate of 8.7 and less than 472 live births?
CREATE TABLE table_name_74 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, live_births VARCHAR)
SELECT natural_change FROM table_name_74 WHERE crude_death_rate__per_1000_ = 8.7 AND live_births < 472
### Context: CREATE TABLE table_name_74 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, live_births VARCHAR) ### Question: What is natural change with a crude death rate of 8.7 and less than 472 live births? ### Answer: SELECT natural_change FROM table_name_74 WHERE crude_death_rate__per_1000_ = 8.7 AND live_births < 472
What owner or owners have an operational description?
CREATE TABLE table_name_34 (owner_s_ VARCHAR, description VARCHAR)
SELECT owner_s_ FROM table_name_34 WHERE description = "operational"
### Context: CREATE TABLE table_name_34 (owner_s_ VARCHAR, description VARCHAR) ### Question: What owner or owners have an operational description? ### Answer: SELECT owner_s_ FROM table_name_34 WHERE description = "operational"
What is the date for the Operational Livery?
CREATE TABLE table_name_51 (date VARCHAR, livery VARCHAR)
SELECT date FROM table_name_51 WHERE livery = "operational"
### Context: CREATE TABLE table_name_51 (date VARCHAR, livery VARCHAR) ### Question: What is the date for the Operational Livery? ### Answer: SELECT date FROM table_name_51 WHERE livery = "operational"
What is the date listed for the item that has undergoing overhaul, restoration or repairs listed under description?
CREATE TABLE table_name_62 (date VARCHAR, description VARCHAR)
SELECT date FROM table_name_62 WHERE description = "undergoing overhaul, restoration or repairs"
### Context: CREATE TABLE table_name_62 (date VARCHAR, description VARCHAR) ### Question: What is the date listed for the item that has undergoing overhaul, restoration or repairs listed under description? ### Answer: SELECT date FROM table_name_62 WHERE description = "undergoing overhaul, restoration or repairs"
Who is the home team that played at MCG?
CREATE TABLE table_name_43 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_43 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_43 (home_team VARCHAR, venue VARCHAR) ### Question: Who is the home team that played at MCG? ### Answer: SELECT home_team AS score FROM table_name_43 WHERE venue = "mcg"
What is the size of the smallest crowd that watched a game at Arden Street Oval?
CREATE TABLE table_name_32 (crowd INTEGER, venue VARCHAR)
SELECT MIN(crowd) FROM table_name_32 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_32 (crowd INTEGER, venue VARCHAR) ### Question: What is the size of the smallest crowd that watched a game at Arden Street Oval? ### Answer: SELECT MIN(crowd) FROM table_name_32 WHERE venue = "arden street oval"
What is the score of the away team who played home team Hawthorn?
CREATE TABLE table_name_21 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_21 WHERE home_team = "hawthorn"
### Context: CREATE TABLE table_name_21 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the score of the away team who played home team Hawthorn? ### Answer: SELECT away_team AS score FROM table_name_21 WHERE home_team = "hawthorn"
Who is the away team that played home team Footscray?
CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_67 WHERE home_team = "footscray"
### Context: CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR) ### Question: Who is the away team that played home team Footscray? ### Answer: SELECT away_team FROM table_name_67 WHERE home_team = "footscray"
How many people attended the game where Fitzroy was the away team?
CREATE TABLE table_name_44 (crowd VARCHAR, away_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_44 WHERE away_team = "fitzroy"
### Context: CREATE TABLE table_name_44 (crowd VARCHAR, away_team VARCHAR) ### Question: How many people attended the game where Fitzroy was the away team? ### Answer: SELECT COUNT(crowd) FROM table_name_44 WHERE away_team = "fitzroy"
I want the NGC number for leo of irregular galaxy
CREATE TABLE table_name_16 (ngc_number VARCHAR, constellation VARCHAR, object_type VARCHAR)
SELECT ngc_number FROM table_name_16 WHERE constellation = "leo" AND object_type = "irregular galaxy"
### Context: CREATE TABLE table_name_16 (ngc_number VARCHAR, constellation VARCHAR, object_type VARCHAR) ### Question: I want the NGC number for leo of irregular galaxy ### Answer: SELECT ngc_number FROM table_name_16 WHERE constellation = "leo" AND object_type = "irregular galaxy"
Tell me the highest NGC number for right ascension of 09h40m28.5s
CREATE TABLE table_name_57 (ngc_number INTEGER, right_ascension___j2000__ VARCHAR)
SELECT MAX(ngc_number) FROM table_name_57 WHERE right_ascension___j2000__ = "09h40m28.5s"
### Context: CREATE TABLE table_name_57 (ngc_number INTEGER, right_ascension___j2000__ VARCHAR) ### Question: Tell me the highest NGC number for right ascension of 09h40m28.5s ### Answer: SELECT MAX(ngc_number) FROM table_name_57 WHERE right_ascension___j2000__ = "09h40m28.5s"
What is the constellation for open cluster?
CREATE TABLE table_name_37 (constellation VARCHAR, object_type VARCHAR)
SELECT constellation FROM table_name_37 WHERE object_type = "open cluster"
### Context: CREATE TABLE table_name_37 (constellation VARCHAR, object_type VARCHAR) ### Question: What is the constellation for open cluster? ### Answer: SELECT constellation FROM table_name_37 WHERE object_type = "open cluster"
Which event was Tatyana Lebedeva in?
CREATE TABLE table_name_75 (event VARCHAR, athlete VARCHAR)
SELECT event FROM table_name_75 WHERE athlete = "tatyana lebedeva"
### Context: CREATE TABLE table_name_75 (event VARCHAR, athlete VARCHAR) ### Question: Which event was Tatyana Lebedeva in? ### Answer: SELECT event FROM table_name_75 WHERE athlete = "tatyana lebedeva"
What event was Fatima Whitbread Trine Hattestad in?
CREATE TABLE table_name_25 (event VARCHAR, athlete VARCHAR)
SELECT event FROM table_name_25 WHERE athlete = "fatima whitbread trine hattestad"
### Context: CREATE TABLE table_name_25 (event VARCHAR, athlete VARCHAR) ### Question: What event was Fatima Whitbread Trine Hattestad in? ### Answer: SELECT event FROM table_name_25 WHERE athlete = "fatima whitbread trine hattestad"
What is Milcah Chemos' record?
CREATE TABLE table_name_80 (record VARCHAR, athlete VARCHAR)
SELECT record FROM table_name_80 WHERE athlete = "milcah chemos"
### Context: CREATE TABLE table_name_80 (record VARCHAR, athlete VARCHAR) ### Question: What is Milcah Chemos' record? ### Answer: SELECT record FROM table_name_80 WHERE athlete = "milcah chemos"
What is the record for the 400 m event on 4 september 2009?
CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR, event VARCHAR)
SELECT record FROM table_name_23 WHERE date = "4 september 2009" AND event = "400 m"
### Context: CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR, event VARCHAR) ### Question: What is the record for the 400 m event on 4 september 2009? ### Answer: SELECT record FROM table_name_23 WHERE date = "4 september 2009" AND event = "400 m"
What event was on 26 August 2005?
CREATE TABLE table_name_14 (event VARCHAR, date VARCHAR)
SELECT event FROM table_name_14 WHERE date = "26 august 2005"
### Context: CREATE TABLE table_name_14 (event VARCHAR, date VARCHAR) ### Question: What event was on 26 August 2005? ### Answer: SELECT event FROM table_name_14 WHERE date = "26 august 2005"
What was the date of the discus throw for Bulgaria?
CREATE TABLE table_name_40 (date VARCHAR, nationality VARCHAR, event VARCHAR)
SELECT date FROM table_name_40 WHERE nationality = "bulgaria" AND event = "discus throw"
### Context: CREATE TABLE table_name_40 (date VARCHAR, nationality VARCHAR, event VARCHAR) ### Question: What was the date of the discus throw for Bulgaria? ### Answer: SELECT date FROM table_name_40 WHERE nationality = "bulgaria" AND event = "discus throw"
What is the date ground A and Cartagena as an opponent?
CREATE TABLE table_name_50 (date VARCHAR, ground VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_50 WHERE ground = "a" AND opponent = "cartagena"
### Context: CREATE TABLE table_name_50 (date VARCHAR, ground VARCHAR, opponent VARCHAR) ### Question: What is the date ground A and Cartagena as an opponent? ### Answer: SELECT date FROM table_name_50 WHERE ground = "a" AND opponent = "cartagena"
What ground has a match smaller than 2?
CREATE TABLE table_name_16 (ground VARCHAR, match INTEGER)
SELECT ground FROM table_name_16 WHERE match < 2
### Context: CREATE TABLE table_name_16 (ground VARCHAR, match INTEGER) ### Question: What ground has a match smaller than 2? ### Answer: SELECT ground FROM table_name_16 WHERE match < 2
What is the score of the competition of friendly, at match 7?
CREATE TABLE table_name_53 (score1 VARCHAR, competition_or_tour VARCHAR, match VARCHAR)
SELECT score1 FROM table_name_53 WHERE competition_or_tour = "friendly" AND match = 7
### Context: CREATE TABLE table_name_53 (score1 VARCHAR, competition_or_tour VARCHAR, match VARCHAR) ### Question: What is the score of the competition of friendly, at match 7? ### Answer: SELECT score1 FROM table_name_53 WHERE competition_or_tour = "friendly" AND match = 7
What was the lowest Pick number of Player Brian Bradley from Canada, in a Draft year before 1985?
CREATE TABLE table_name_29 (pick INTEGER, player VARCHAR, nationality VARCHAR, draft VARCHAR)
SELECT MIN(pick) FROM table_name_29 WHERE nationality = "canada" AND draft < 1985 AND player = "brian bradley"
### Context: CREATE TABLE table_name_29 (pick INTEGER, player VARCHAR, nationality VARCHAR, draft VARCHAR) ### Question: What was the lowest Pick number of Player Brian Bradley from Canada, in a Draft year before 1985? ### Answer: SELECT MIN(pick) FROM table_name_29 WHERE nationality = "canada" AND draft < 1985 AND player = "brian bradley"
Which Round was Player Adam Cracknell Picked after 231 in a Draft year after 1988?
CREATE TABLE table_name_4 (round VARCHAR, player VARCHAR, pick VARCHAR, draft VARCHAR)
SELECT round FROM table_name_4 WHERE pick > 231 AND draft > 1988 AND player = "adam cracknell"
### Context: CREATE TABLE table_name_4 (round VARCHAR, player VARCHAR, pick VARCHAR, draft VARCHAR) ### Question: Which Round was Player Adam Cracknell Picked after 231 in a Draft year after 1988? ### Answer: SELECT round FROM table_name_4 WHERE pick > 231 AND draft > 1988 AND player = "adam cracknell"
Name the total number of yards for avg of 9 and rec of 1
CREATE TABLE table_name_99 (yards VARCHAR, avg VARCHAR, rec VARCHAR)
SELECT COUNT(yards) FROM table_name_99 WHERE avg = 9 AND rec = 1
### Context: CREATE TABLE table_name_99 (yards VARCHAR, avg VARCHAR, rec VARCHAR) ### Question: Name the total number of yards for avg of 9 and rec of 1 ### Answer: SELECT COUNT(yards) FROM table_name_99 WHERE avg = 9 AND rec = 1
What is the highest number of losses that the team incurred while scoring less than 79 points in 10 games with a point differential less than 34?
CREATE TABLE table_name_69 (losses INTEGER, point_differential VARCHAR, points_for VARCHAR, games_played VARCHAR)
SELECT MAX(losses) FROM table_name_69 WHERE points_for < 79 AND games_played = 10 AND point_differential < 34
### Context: CREATE TABLE table_name_69 (losses INTEGER, point_differential VARCHAR, points_for VARCHAR, games_played VARCHAR) ### Question: What is the highest number of losses that the team incurred while scoring less than 79 points in 10 games with a point differential less than 34? ### Answer: SELECT MAX(losses) FROM table_name_69 WHERE points_for < 79 AND games_played = 10 AND point_differential < 34
Which Player has a Date of Birth (Age When Delisted) of 13 February 1987 (aged 24)?
CREATE TABLE table_name_85 (player VARCHAR, date_of_birth__age_when_delisted_ VARCHAR)
SELECT player FROM table_name_85 WHERE date_of_birth__age_when_delisted_ = "13 february 1987 (aged 24)"
### Context: CREATE TABLE table_name_85 (player VARCHAR, date_of_birth__age_when_delisted_ VARCHAR) ### Question: Which Player has a Date of Birth (Age When Delisted) of 13 February 1987 (aged 24)? ### Answer: SELECT player FROM table_name_85 WHERE date_of_birth__age_when_delisted_ = "13 february 1987 (aged 24)"
What is listed under Senior List for Date of Birth (Age When Delisted) of 5 June 1984 (aged 23)?
CREATE TABLE table_name_84 (senior_list VARCHAR, date_of_birth__age_when_delisted_ VARCHAR)
SELECT senior_list FROM table_name_84 WHERE date_of_birth__age_when_delisted_ = "5 june 1984 (aged 23)"
### Context: CREATE TABLE table_name_84 (senior_list VARCHAR, date_of_birth__age_when_delisted_ VARCHAR) ### Question: What is listed under Senior List for Date of Birth (Age When Delisted) of 5 June 1984 (aged 23)? ### Answer: SELECT senior_list FROM table_name_84 WHERE date_of_birth__age_when_delisted_ = "5 june 1984 (aged 23)"
What is the average year to begin making autos for a brand that joined GM in 1917?
CREATE TABLE table_name_30 (year_began_making_autos INTEGER, year_joined_gm VARCHAR)
SELECT AVG(year_began_making_autos) FROM table_name_30 WHERE year_joined_gm = 1917
### Context: CREATE TABLE table_name_30 (year_began_making_autos INTEGER, year_joined_gm VARCHAR) ### Question: What is the average year to begin making autos for a brand that joined GM in 1917? ### Answer: SELECT AVG(year_began_making_autos) FROM table_name_30 WHERE year_joined_gm = 1917
Name the date with a home team of melbourne
CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_74 WHERE home_team = "melbourne"
### Context: CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR) ### Question: Name the date with a home team of melbourne ### Answer: SELECT date FROM table_name_74 WHERE home_team = "melbourne"
Name the venue for collingwood home team
CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_40 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_40 (venue VARCHAR, home_team VARCHAR) ### Question: Name the venue for collingwood home team ### Answer: SELECT venue FROM table_name_40 WHERE home_team = "collingwood"
Which year has a Gen.-Secretary of silvana jansen?
CREATE TABLE table_name_7 (year VARCHAR, gen_secretary VARCHAR)
SELECT year FROM table_name_7 WHERE gen_secretary = "silvana jansen"
### Context: CREATE TABLE table_name_7 (year VARCHAR, gen_secretary VARCHAR) ### Question: Which year has a Gen.-Secretary of silvana jansen? ### Answer: SELECT year FROM table_name_7 WHERE gen_secretary = "silvana jansen"
Which Vice President has a President of daniel masny, and a Treasurer of rebecca t. altmann?
CREATE TABLE table_name_29 (Vice VARCHAR, president VARCHAR, treasurer VARCHAR)
SELECT Vice AS president FROM table_name_29 WHERE president = "daniel masny" AND treasurer = "rebecca t. altmann"
### Context: CREATE TABLE table_name_29 (Vice VARCHAR, president VARCHAR, treasurer VARCHAR) ### Question: Which Vice President has a President of daniel masny, and a Treasurer of rebecca t. altmann? ### Answer: SELECT Vice AS president FROM table_name_29 WHERE president = "daniel masny" AND treasurer = "rebecca t. altmann"
Who was president Year of 2002-2003, second semester?
CREATE TABLE table_name_89 (president VARCHAR, year VARCHAR)
SELECT president FROM table_name_89 WHERE year = "2002-2003, second semester"
### Context: CREATE TABLE table_name_89 (president VARCHAR, year VARCHAR) ### Question: Who was president Year of 2002-2003, second semester? ### Answer: SELECT president FROM table_name_89 WHERE year = "2002-2003, second semester"
Which treasurer has a President of sebastian ihler?
CREATE TABLE table_name_74 (treasurer VARCHAR, president VARCHAR)
SELECT treasurer FROM table_name_74 WHERE president = "sebastian ihler"
### Context: CREATE TABLE table_name_74 (treasurer VARCHAR, president VARCHAR) ### Question: Which treasurer has a President of sebastian ihler? ### Answer: SELECT treasurer FROM table_name_74 WHERE president = "sebastian ihler"
Which opponent used a grass surface?
CREATE TABLE table_name_1 (opponent VARCHAR, surface VARCHAR)
SELECT opponent FROM table_name_1 WHERE surface = "grass"
### Context: CREATE TABLE table_name_1 (opponent VARCHAR, surface VARCHAR) ### Question: Which opponent used a grass surface? ### Answer: SELECT opponent FROM table_name_1 WHERE surface = "grass"
Which tournament had a score of 6–7 (0–7) , 6–2, 4–6?
CREATE TABLE table_name_3 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_3 WHERE score = "6–7 (0–7) , 6–2, 4–6"
### Context: CREATE TABLE table_name_3 (tournament VARCHAR, score VARCHAR) ### Question: Which tournament had a score of 6–7 (0–7) , 6–2, 4–6? ### Answer: SELECT tournament FROM table_name_3 WHERE score = "6–7 (0–7) , 6–2, 4–6"
Tell me the total number of points for lost less than 4
CREATE TABLE table_name_72 (points VARCHAR, lost INTEGER)
SELECT COUNT(points) FROM table_name_72 WHERE lost < 4
### Context: CREATE TABLE table_name_72 (points VARCHAR, lost INTEGER) ### Question: Tell me the total number of points for lost less than 4 ### Answer: SELECT COUNT(points) FROM table_name_72 WHERE lost < 4
I want the sum of drawn for lost less than 0
CREATE TABLE table_name_81 (drawn INTEGER, lost INTEGER)
SELECT SUM(drawn) FROM table_name_81 WHERE lost < 0
### Context: CREATE TABLE table_name_81 (drawn INTEGER, lost INTEGER) ### Question: I want the sum of drawn for lost less than 0 ### Answer: SELECT SUM(drawn) FROM table_name_81 WHERE lost < 0
I want the points difference for points of 14
CREATE TABLE table_name_29 (points_difference VARCHAR, points VARCHAR)
SELECT points_difference FROM table_name_29 WHERE points = 14
### Context: CREATE TABLE table_name_29 (points_difference VARCHAR, points VARCHAR) ### Question: I want the points difference for points of 14 ### Answer: SELECT points_difference FROM table_name_29 WHERE points = 14
Tell me the sum of rank for when gold is more than 0 and silver less than 23 with total more than 32
CREATE TABLE table_name_59 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)
SELECT SUM(rank) FROM table_name_59 WHERE gold > 0 AND total > 32 AND silver < 23
### Context: CREATE TABLE table_name_59 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) ### Question: Tell me the sum of rank for when gold is more than 0 and silver less than 23 with total more than 32 ### Answer: SELECT SUM(rank) FROM table_name_59 WHERE gold > 0 AND total > 32 AND silver < 23
Tell me the sum of silver for liechtenstein and bronze more than 4
CREATE TABLE table_name_34 (silver INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT SUM(silver) FROM table_name_34 WHERE nation = "liechtenstein" AND bronze > 4
### Context: CREATE TABLE table_name_34 (silver INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: Tell me the sum of silver for liechtenstein and bronze more than 4 ### Answer: SELECT SUM(silver) FROM table_name_34 WHERE nation = "liechtenstein" AND bronze > 4
Which tournament had a score of 6–4, 4–6, 7–5?
CREATE TABLE table_name_70 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_70 WHERE score = "6–4, 4–6, 7–5"
### Context: CREATE TABLE table_name_70 (tournament VARCHAR, score VARCHAR) ### Question: Which tournament had a score of 6–4, 4–6, 7–5? ### Answer: SELECT tournament FROM table_name_70 WHERE score = "6–4, 4–6, 7–5"
Which tournament had a score of 7–5, 2–6, 7–6?
CREATE TABLE table_name_7 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_7 WHERE score = "7–5, 2–6, 7–6"
### Context: CREATE TABLE table_name_7 (tournament VARCHAR, score VARCHAR) ### Question: Which tournament had a score of 7–5, 2–6, 7–6? ### Answer: SELECT tournament FROM table_name_7 WHERE score = "7–5, 2–6, 7–6"
Who was the opponent in the final in which the court surface was hard and the score was 6–3, 3–6, 7–5?
CREATE TABLE table_name_89 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)
SELECT opponent_in_the_final FROM table_name_89 WHERE surface = "hard" AND score = "6–3, 3–6, 7–5"
### Context: CREATE TABLE table_name_89 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR) ### Question: Who was the opponent in the final in which the court surface was hard and the score was 6–3, 3–6, 7–5? ### Answer: SELECT opponent_in_the_final FROM table_name_89 WHERE surface = "hard" AND score = "6–3, 3–6, 7–5"
What was the court surface when the score was 6–4, 6–1?
CREATE TABLE table_name_90 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_90 WHERE score = "6–4, 6–1"
### Context: CREATE TABLE table_name_90 (surface VARCHAR, score VARCHAR) ### Question: What was the court surface when the score was 6–4, 6–1? ### Answer: SELECT surface FROM table_name_90 WHERE score = "6–4, 6–1"
On what date was the opponent in the final Gwinyai Tongoona?
CREATE TABLE table_name_62 (date VARCHAR, opponent_in_the_final VARCHAR)
SELECT date FROM table_name_62 WHERE opponent_in_the_final = "gwinyai tongoona"
### Context: CREATE TABLE table_name_62 (date VARCHAR, opponent_in_the_final VARCHAR) ### Question: On what date was the opponent in the final Gwinyai Tongoona? ### Answer: SELECT date FROM table_name_62 WHERE opponent_in_the_final = "gwinyai tongoona"
What was the record from the Golden State Warriors on 11/18?
CREATE TABLE table_name_13 (record VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT record FROM table_name_13 WHERE visitor = "golden state warriors" AND date = "11/18"
### Context: CREATE TABLE table_name_13 (record VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What was the record from the Golden State Warriors on 11/18? ### Answer: SELECT record FROM table_name_13 WHERE visitor = "golden state warriors" AND date = "11/18"
What class has 4-4-0 wheels and was less than number 40 built?
CREATE TABLE table_name_95 (class VARCHAR, wheels VARCHAR, no_built VARCHAR)
SELECT class FROM table_name_95 WHERE wheels = "4-4-0" AND no_built < 40
### Context: CREATE TABLE table_name_95 (class VARCHAR, wheels VARCHAR, no_built VARCHAR) ### Question: What class has 4-4-0 wheels and was less than number 40 built? ### Answer: SELECT class FROM table_name_95 WHERE wheels = "4-4-0" AND no_built < 40
Name the space crusade when the english is of finnish
CREATE TABLE table_name_7 (space_crusade VARCHAR, english VARCHAR)
SELECT space_crusade FROM table_name_7 WHERE english = "finnish"
### Context: CREATE TABLE table_name_7 (space_crusade VARCHAR, english VARCHAR) ### Question: Name the space crusade when the english is of finnish ### Answer: SELECT space_crusade FROM table_name_7 WHERE english = "finnish"
Name the space crusade which has Genestealers of genrøvere (gene robbers)
CREATE TABLE table_name_92 (space_crusade VARCHAR, genestealers VARCHAR)
SELECT space_crusade FROM table_name_92 WHERE genestealers = "genrøvere (gene robbers)"
### Context: CREATE TABLE table_name_92 (space_crusade VARCHAR, genestealers VARCHAR) ### Question: Name the space crusade which has Genestealers of genrøvere (gene robbers) ### Answer: SELECT space_crusade FROM table_name_92 WHERE genestealers = "genrøvere (gene robbers)"
What was Galatasaray score when when he won in 1990 and Trabzonspor was the runner-up?
CREATE TABLE table_name_24 (score VARCHAR, year VARCHAR, winners VARCHAR, runners_up VARCHAR)
SELECT score FROM table_name_24 WHERE winners = "galatasaray" AND runners_up = "trabzonspor" AND year = 1990
### Context: CREATE TABLE table_name_24 (score VARCHAR, year VARCHAR, winners VARCHAR, runners_up VARCHAR) ### Question: What was Galatasaray score when when he won in 1990 and Trabzonspor was the runner-up? ### Answer: SELECT score FROM table_name_24 WHERE winners = "galatasaray" AND runners_up = "trabzonspor" AND year = 1990
How many matches were there in the round with £1,000,000 in prize money?
CREATE TABLE table_name_15 (matches VARCHAR, prize_money VARCHAR)
SELECT COUNT(matches) FROM table_name_15 WHERE prize_money = "£1,000,000"
### Context: CREATE TABLE table_name_15 (matches VARCHAR, prize_money VARCHAR) ### Question: How many matches were there in the round with £1,000,000 in prize money? ### Answer: SELECT COUNT(matches) FROM table_name_15 WHERE prize_money = "£1,000,000"
What was the date for a round that only had 1 match?
CREATE TABLE table_name_36 (date VARCHAR, matches VARCHAR)
SELECT date FROM table_name_36 WHERE matches = 1
### Context: CREATE TABLE table_name_36 (date VARCHAR, matches VARCHAR) ### Question: What was the date for a round that only had 1 match? ### Answer: SELECT date FROM table_name_36 WHERE matches = 1
What date did Hawthorn play as the away team?
CREATE TABLE table_name_87 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_87 WHERE away_team = "hawthorn"
### Context: CREATE TABLE table_name_87 (date VARCHAR, away_team VARCHAR) ### Question: What date did Hawthorn play as the away team? ### Answer: SELECT date FROM table_name_87 WHERE away_team = "hawthorn"
What is the hometown for a college in Wisconsin?
CREATE TABLE table_name_43 (hometown VARCHAR, college VARCHAR)
SELECT hometown FROM table_name_43 WHERE college = "wisconsin"
### Context: CREATE TABLE table_name_43 (hometown VARCHAR, college VARCHAR) ### Question: What is the hometown for a college in Wisconsin? ### Answer: SELECT hometown FROM table_name_43 WHERE college = "wisconsin"
Which college has a linebacker from Lessburg High School?
CREATE TABLE table_name_92 (college VARCHAR, position VARCHAR, school VARCHAR)
SELECT college FROM table_name_92 WHERE position = "linebacker" AND school = "lessburg high school"
### Context: CREATE TABLE table_name_92 (college VARCHAR, position VARCHAR, school VARCHAR) ### Question: Which college has a linebacker from Lessburg High School? ### Answer: SELECT college FROM table_name_92 WHERE position = "linebacker" AND school = "lessburg high school"
Which opponent has a week of 11?
CREATE TABLE table_name_49 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_49 WHERE week = 11
### Context: CREATE TABLE table_name_49 (opponent VARCHAR, week VARCHAR) ### Question: Which opponent has a week of 11? ### Answer: SELECT opponent FROM table_name_49 WHERE week = 11
Which December 4, 1976 week has an attendance less than 57,366?
CREATE TABLE table_name_46 (week INTEGER, date VARCHAR, attendance VARCHAR)
SELECT MIN(week) FROM table_name_46 WHERE date = "december 4, 1976" AND attendance < 57 OFFSET 366
### Context: CREATE TABLE table_name_46 (week INTEGER, date VARCHAR, attendance VARCHAR) ### Question: Which December 4, 1976 week has an attendance less than 57,366? ### Answer: SELECT MIN(week) FROM table_name_46 WHERE date = "december 4, 1976" AND attendance < 57 OFFSET 366
Who has a larger than 70.99 km2?
CREATE TABLE table_name_52 (comune VARCHAR, total__km²_ INTEGER)
SELECT comune FROM table_name_52 WHERE total__km²_ > 70.99
### Context: CREATE TABLE table_name_52 (comune VARCHAR, total__km²_ INTEGER) ### Question: Who has a larger than 70.99 km2? ### Answer: SELECT comune FROM table_name_52 WHERE total__km²_ > 70.99
What is the Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2?
CREATE TABLE table_name_26 (area__km²_ INTEGER, total__km²_ VARCHAR, province VARCHAR, comune VARCHAR)
SELECT MIN(area__km²_) FROM table_name_26 WHERE province = "napoli" AND comune = "piano di sorrento" AND total__km²_ < 121.14
### Context: CREATE TABLE table_name_26 (area__km²_ INTEGER, total__km²_ VARCHAR, province VARCHAR, comune VARCHAR) ### Question: What is the Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2? ### Answer: SELECT MIN(area__km²_) FROM table_name_26 WHERE province = "napoli" AND comune = "piano di sorrento" AND total__km²_ < 121.14
Which writer had a producer DKA, JL, AS?
CREATE TABLE table_name_85 (writer VARCHAR, producer_executive_producer VARCHAR)
SELECT writer FROM table_name_85 WHERE producer_executive_producer = "dka, jl, as"
### Context: CREATE TABLE table_name_85 (writer VARCHAR, producer_executive_producer VARCHAR) ### Question: Which writer had a producer DKA, JL, AS? ### Answer: SELECT writer FROM table_name_85 WHERE producer_executive_producer = "dka, jl, as"
Name the film that Lu directed.
CREATE TABLE table_name_68 (film_title VARCHAR, director VARCHAR)
SELECT film_title FROM table_name_68 WHERE director = "lu"
### Context: CREATE TABLE table_name_68 (film_title VARCHAR, director VARCHAR) ### Question: Name the film that Lu directed. ### Answer: SELECT film_title FROM table_name_68 WHERE director = "lu"
Who wrote Toy Story?
CREATE TABLE table_name_22 (writer VARCHAR, film_title VARCHAR)
SELECT writer FROM table_name_22 WHERE film_title = "toy story"
### Context: CREATE TABLE table_name_22 (writer VARCHAR, film_title VARCHAR) ### Question: Who wrote Toy Story? ### Answer: SELECT writer FROM table_name_22 WHERE film_title = "toy story"
Which writer had voice characters of JDR, BB, TN, LR, PS?
CREATE TABLE table_name_13 (writer VARCHAR, voiced_character_s_ VARCHAR)
SELECT writer FROM table_name_13 WHERE voiced_character_s_ = "jdr, bb, tn, lr, ps"
### Context: CREATE TABLE table_name_13 (writer VARCHAR, voiced_character_s_ VARCHAR) ### Question: Which writer had voice characters of JDR, BB, TN, LR, PS? ### Answer: SELECT writer FROM table_name_13 WHERE voiced_character_s_ = "jdr, bb, tn, lr, ps"
Who was the sound producer that worked under Executive Producer JL?
CREATE TABLE table_name_77 (sound VARCHAR, producer_executive_producer VARCHAR)
SELECT sound FROM table_name_77 WHERE producer_executive_producer = "jl"
### Context: CREATE TABLE table_name_77 (sound VARCHAR, producer_executive_producer VARCHAR) ### Question: Who was the sound producer that worked under Executive Producer JL? ### Answer: SELECT sound FROM table_name_77 WHERE producer_executive_producer = "jl"
What was the away team at mcg?
CREATE TABLE table_name_44 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_44 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_44 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team at mcg? ### Answer: SELECT away_team FROM table_name_44 WHERE venue = "mcg"
What is the name of the player from NGA?
CREATE TABLE table_name_17 (name VARCHAR, country VARCHAR)
SELECT name FROM table_name_17 WHERE country = "nga"
### Context: CREATE TABLE table_name_17 (name VARCHAR, country VARCHAR) ### Question: What is the name of the player from NGA? ### Answer: SELECT name FROM table_name_17 WHERE country = "nga"
Where is Odjidja-Ofoe, with an undisclosed transfer fee, moving to?
CREATE TABLE table_name_64 (moving_to VARCHAR, transfer_fee VARCHAR, name VARCHAR)
SELECT moving_to FROM table_name_64 WHERE transfer_fee = "undisclosed" AND name = "odjidja-ofoe"
### Context: CREATE TABLE table_name_64 (moving_to VARCHAR, transfer_fee VARCHAR, name VARCHAR) ### Question: Where is Odjidja-Ofoe, with an undisclosed transfer fee, moving to? ### Answer: SELECT moving_to FROM table_name_64 WHERE transfer_fee = "undisclosed" AND name = "odjidja-ofoe"
What country is the player, with an undisclosed transfer fee and moving to Nacional, from?
CREATE TABLE table_name_96 (country VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)
SELECT country FROM table_name_96 WHERE transfer_fee = "undisclosed" AND moving_to = "nacional"
### Context: CREATE TABLE table_name_96 (country VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR) ### Question: What country is the player, with an undisclosed transfer fee and moving to Nacional, from? ### Answer: SELECT country FROM table_name_96 WHERE transfer_fee = "undisclosed" AND moving_to = "nacional"
What is Odjidja-Ofoe's transfer fee?
CREATE TABLE table_name_82 (transfer_fee VARCHAR, name VARCHAR)
SELECT transfer_fee FROM table_name_82 WHERE name = "odjidja-ofoe"
### Context: CREATE TABLE table_name_82 (transfer_fee VARCHAR, name VARCHAR) ### Question: What is Odjidja-Ofoe's transfer fee? ### Answer: SELECT transfer_fee FROM table_name_82 WHERE name = "odjidja-ofoe"
What is the name of the player from Cod?
CREATE TABLE table_name_2 (name VARCHAR, country VARCHAR)
SELECT name FROM table_name_2 WHERE country = "cod"
### Context: CREATE TABLE table_name_2 (name VARCHAR, country VARCHAR) ### Question: What is the name of the player from Cod? ### Answer: SELECT name FROM table_name_2 WHERE country = "cod"
What country is the player moving to Hamburger SV from?
CREATE TABLE table_name_36 (country VARCHAR, moving_to VARCHAR)
SELECT country FROM table_name_36 WHERE moving_to = "hamburger sv"
### Context: CREATE TABLE table_name_36 (country VARCHAR, moving_to VARCHAR) ### Question: What country is the player moving to Hamburger SV from? ### Answer: SELECT country FROM table_name_36 WHERE moving_to = "hamburger sv"
Which Driver has an Entrant of Arrows Racing Team and Rounds 1-3?
CREATE TABLE table_name_25 (driver VARCHAR, entrant VARCHAR, rounds VARCHAR)
SELECT driver FROM table_name_25 WHERE entrant = "arrows racing team" AND rounds = "1-3"
### Context: CREATE TABLE table_name_25 (driver VARCHAR, entrant VARCHAR, rounds VARCHAR) ### Question: Which Driver has an Entrant of Arrows Racing Team and Rounds 1-3? ### Answer: SELECT driver FROM table_name_25 WHERE entrant = "arrows racing team" AND rounds = "1-3"
Which Constructor has Rounds, All and Driver, Bruno Giacomelli?
CREATE TABLE table_name_50 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_50 WHERE rounds = "all" AND driver = "bruno giacomelli"
### Context: CREATE TABLE table_name_50 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR) ### Question: Which Constructor has Rounds, All and Driver, Bruno Giacomelli? ### Answer: SELECT constructor FROM table_name_50 WHERE rounds = "all" AND driver = "bruno giacomelli"
What was the winning score when Damien McGrane was runner-up?
CREATE TABLE table_name_39 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_39 WHERE runner_s__up = "damien mcgrane"
### Context: CREATE TABLE table_name_39 (winning_score VARCHAR, runner_s__up VARCHAR) ### Question: What was the winning score when Damien McGrane was runner-up? ### Answer: SELECT winning_score FROM table_name_39 WHERE runner_s__up = "damien mcgrane"
Who were the runners-up at the Alfred Dunhill Links Championship?
CREATE TABLE table_name_97 (runner_s__up VARCHAR, tournament VARCHAR)
SELECT runner_s__up FROM table_name_97 WHERE tournament = "alfred dunhill links championship"
### Context: CREATE TABLE table_name_97 (runner_s__up VARCHAR, tournament VARCHAR) ### Question: Who were the runners-up at the Alfred Dunhill Links Championship? ### Answer: SELECT runner_s__up FROM table_name_97 WHERE tournament = "alfred dunhill links championship"
Name the highest grid for Laps more than 137 and rank is less than 8
CREATE TABLE table_name_89 (grid INTEGER, laps VARCHAR, rank VARCHAR)
SELECT MAX(grid) FROM table_name_89 WHERE laps > 137 AND rank < 8
### Context: CREATE TABLE table_name_89 (grid INTEGER, laps VARCHAR, rank VARCHAR) ### Question: Name the highest grid for Laps more than 137 and rank is less than 8 ### Answer: SELECT MAX(grid) FROM table_name_89 WHERE laps > 137 AND rank < 8
I want the total number of rank for Grid less than 20 and dick rathmann and Qual more than 130.92
CREATE TABLE table_name_73 (rank VARCHAR, qual VARCHAR, grid VARCHAR, driver VARCHAR)
SELECT COUNT(rank) FROM table_name_73 WHERE grid < 20 AND driver = "dick rathmann" AND qual > 130.92
### Context: CREATE TABLE table_name_73 (rank VARCHAR, qual VARCHAR, grid VARCHAR, driver VARCHAR) ### Question: I want the total number of rank for Grid less than 20 and dick rathmann and Qual more than 130.92 ### Answer: SELECT COUNT(rank) FROM table_name_73 WHERE grid < 20 AND driver = "dick rathmann" AND qual > 130.92
Which nation won 1 gold medal and 1 bronze, for a total of 2 medals?
CREATE TABLE table_name_70 (nation VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT nation FROM table_name_70 WHERE gold = "1" AND bronze = "1" AND total = 2
### Context: CREATE TABLE table_name_70 (nation VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR) ### Question: Which nation won 1 gold medal and 1 bronze, for a total of 2 medals? ### Answer: SELECT nation FROM table_name_70 WHERE gold = "1" AND bronze = "1" AND total = 2
What is the name of the Leading scorer when the Home was the Trail blazers?
CREATE TABLE table_name_61 (leading_scorer VARCHAR, home VARCHAR)
SELECT leading_scorer FROM table_name_61 WHERE home = "trail blazers"
### Context: CREATE TABLE table_name_61 (leading_scorer VARCHAR, home VARCHAR) ### Question: What is the name of the Leading scorer when the Home was the Trail blazers? ### Answer: SELECT leading_scorer FROM table_name_61 WHERE home = "trail blazers"
I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s
CREATE TABLE table_name_31 (ngc_number INTEGER, object_type VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT SUM(ngc_number) FROM table_name_31 WHERE object_type = "spiral galaxy" AND right_ascension___j2000__ = "08h14m40.4s"
### Context: CREATE TABLE table_name_31 (ngc_number INTEGER, object_type VARCHAR, right_ascension___j2000__ VARCHAR) ### Question: I want the sum of NGC number for spiral galaxy and right acension of 08h14m40.4s ### Answer: SELECT SUM(ngc_number) FROM table_name_31 WHERE object_type = "spiral galaxy" AND right_ascension___j2000__ = "08h14m40.4s"
Tell me the right ascension for open cluster and NGC number more than 2547
CREATE TABLE table_name_59 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, ngc_number VARCHAR)
SELECT right_ascension___j2000__ FROM table_name_59 WHERE object_type = "open cluster" AND ngc_number > 2547
### Context: CREATE TABLE table_name_59 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, ngc_number VARCHAR) ### Question: Tell me the right ascension for open cluster and NGC number more than 2547 ### Answer: SELECT right_ascension___j2000__ FROM table_name_59 WHERE object_type = "open cluster" AND ngc_number > 2547
I want the constellation for declination for °45′ and right ascension of 07h58m
CREATE TABLE table_name_56 (constellation VARCHAR, declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT constellation FROM table_name_56 WHERE declination___j2000__ = "°45′" AND right_ascension___j2000__ = "07h58m"
### Context: CREATE TABLE table_name_56 (constellation VARCHAR, declination___j2000__ VARCHAR, right_ascension___j2000__ VARCHAR) ### Question: I want the constellation for declination for °45′ and right ascension of 07h58m ### Answer: SELECT constellation FROM table_name_56 WHERE declination___j2000__ = "°45′" AND right_ascension___j2000__ = "07h58m"
I want the NGC number for right ascension of 08h11m13.6s
CREATE TABLE table_name_92 (ngc_number VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT ngc_number FROM table_name_92 WHERE right_ascension___j2000__ = "08h11m13.6s"
### Context: CREATE TABLE table_name_92 (ngc_number VARCHAR, right_ascension___j2000__ VARCHAR) ### Question: I want the NGC number for right ascension of 08h11m13.6s ### Answer: SELECT ngc_number FROM table_name_92 WHERE right_ascension___j2000__ = "08h11m13.6s"
What is the average crowd when the home team is north melbourne?
CREATE TABLE table_name_31 (crowd INTEGER, home_team VARCHAR)
SELECT AVG(crowd) FROM table_name_31 WHERE home_team = "north melbourne"
### Context: CREATE TABLE table_name_31 (crowd INTEGER, home_team VARCHAR) ### Question: What is the average crowd when the home team is north melbourne? ### Answer: SELECT AVG(crowd) FROM table_name_31 WHERE home_team = "north melbourne"
What is the crowd total at mcg?
CREATE TABLE table_name_45 (crowd VARCHAR, venue VARCHAR)
SELECT COUNT(crowd) FROM table_name_45 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_45 (crowd VARCHAR, venue VARCHAR) ### Question: What is the crowd total at mcg? ### Answer: SELECT COUNT(crowd) FROM table_name_45 WHERE venue = "mcg"
How many Red Breasted Nuthatch coins created before 2007 were minted, on average?
CREATE TABLE table_name_42 (mintage INTEGER, animal VARCHAR, year VARCHAR)
SELECT AVG(mintage) FROM table_name_42 WHERE animal = "red breasted nuthatch" AND year < 2007
### Context: CREATE TABLE table_name_42 (mintage INTEGER, animal VARCHAR, year VARCHAR) ### Question: How many Red Breasted Nuthatch coins created before 2007 were minted, on average? ### Answer: SELECT AVG(mintage) FROM table_name_42 WHERE animal = "red breasted nuthatch" AND year < 2007
What year was the downy woodpecker coin created?
CREATE TABLE table_name_46 (year INTEGER, animal VARCHAR)
SELECT SUM(year) FROM table_name_46 WHERE animal = "downy woodpecker"
### Context: CREATE TABLE table_name_46 (year INTEGER, animal VARCHAR) ### Question: What year was the downy woodpecker coin created? ### Answer: SELECT SUM(year) FROM table_name_46 WHERE animal = "downy woodpecker"
Which artist created coins before 2010?
CREATE TABLE table_name_40 (artist VARCHAR, year INTEGER)
SELECT artist FROM table_name_40 WHERE year < 2010
### Context: CREATE TABLE table_name_40 (artist VARCHAR, year INTEGER) ### Question: Which artist created coins before 2010? ### Answer: SELECT artist FROM table_name_40 WHERE year < 2010
What is the game number against the team Boston?
CREATE TABLE table_name_3 (game VARCHAR, team VARCHAR)
SELECT COUNT(game) FROM table_name_3 WHERE team = "boston"
### Context: CREATE TABLE table_name_3 (game VARCHAR, team VARCHAR) ### Question: What is the game number against the team Boston? ### Answer: SELECT COUNT(game) FROM table_name_3 WHERE team = "boston"
What is the date of game 23?
CREATE TABLE table_name_27 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_27 WHERE game = 23
### Context: CREATE TABLE table_name_27 (date VARCHAR, game VARCHAR) ### Question: What is the date of game 23? ### Answer: SELECT date FROM table_name_27 WHERE game = 23
What percentage of Slovenes lived in the village of Roach in 1951?
CREATE TABLE table_name_31 (percent_of_slovenes_1951 VARCHAR, village__german_ VARCHAR)
SELECT percent_of_slovenes_1951 FROM table_name_31 WHERE village__german_ = "roach"
### Context: CREATE TABLE table_name_31 (percent_of_slovenes_1951 VARCHAR, village__german_ VARCHAR) ### Question: What percentage of Slovenes lived in the village of Roach in 1951? ### Answer: SELECT percent_of_slovenes_1951 FROM table_name_31 WHERE village__german_ = "roach"
Which Venue has an Away team of south melbourne?
CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_89 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_89 (venue VARCHAR, away_team VARCHAR) ### Question: Which Venue has an Away team of south melbourne? ### Answer: SELECT venue FROM table_name_89 WHERE away_team = "south melbourne"
What did the Melbourne team score in their away game?
CREATE TABLE table_name_3 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_3 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_3 (away_team VARCHAR) ### Question: What did the Melbourne team score in their away game? ### Answer: SELECT away_team AS score FROM table_name_3 WHERE away_team = "melbourne"
Which Home team plays at the arden street oval Venue?
CREATE TABLE table_name_91 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_91 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_91 (home_team VARCHAR, venue VARCHAR) ### Question: Which Home team plays at the arden street oval Venue? ### Answer: SELECT home_team FROM table_name_91 WHERE venue = "arden street oval"
What is Home team Venue for the hawthorn team?
CREATE TABLE table_name_58 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_58 WHERE home_team = "hawthorn"
### Context: CREATE TABLE table_name_58 (venue VARCHAR, home_team VARCHAR) ### Question: What is Home team Venue for the hawthorn team? ### Answer: SELECT venue FROM table_name_58 WHERE home_team = "hawthorn"
What Home team plays at the princes park Venue?
CREATE TABLE table_name_29 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_29 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_29 (home_team VARCHAR, venue VARCHAR) ### Question: What Home team plays at the princes park Venue? ### Answer: SELECT home_team FROM table_name_29 WHERE venue = "princes park"
Was the game against the Rattlers at the United Sports Training Center a home game or an away game?
CREATE TABLE table_name_96 (home_away VARCHAR, opponent VARCHAR, field VARCHAR)
SELECT home_away FROM table_name_96 WHERE opponent = "rattlers" AND field = "united sports training center"
### Context: CREATE TABLE table_name_96 (home_away VARCHAR, opponent VARCHAR, field VARCHAR) ### Question: Was the game against the Rattlers at the United Sports Training Center a home game or an away game? ### Answer: SELECT home_away FROM table_name_96 WHERE opponent = "rattlers" AND field = "united sports training center"
What was the opponent for the game at Multi-sport Field?
CREATE TABLE table_name_65 (opponent VARCHAR, field VARCHAR)
SELECT opponent FROM table_name_65 WHERE field = "multi-sport field"
### Context: CREATE TABLE table_name_65 (opponent VARCHAR, field VARCHAR) ### Question: What was the opponent for the game at Multi-sport Field? ### Answer: SELECT opponent FROM table_name_65 WHERE field = "multi-sport field"
What is the result of the away game played on August 4?
CREATE TABLE table_name_15 (result VARCHAR, home_away VARCHAR, date VARCHAR)
SELECT result FROM table_name_15 WHERE home_away = "away" AND date = "august 4"
### Context: CREATE TABLE table_name_15 (result VARCHAR, home_away VARCHAR, date VARCHAR) ### Question: What is the result of the away game played on August 4? ### Answer: SELECT result FROM table_name_15 WHERE home_away = "away" AND date = "august 4"