question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Who had a 32-29-8 record at home? | CREATE TABLE table_name_55 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_55 WHERE record = "32-29-8" | ### Context: CREATE TABLE table_name_55 (home VARCHAR, record VARCHAR) ### Question: Who had a 32-29-8 record at home? ### Answer: SELECT home FROM table_name_55 WHERE record = "32-29-8" |
Who had a 33-30-8 record at home? | CREATE TABLE table_name_99 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_99 WHERE record = "33-30-8" | ### Context: CREATE TABLE table_name_99 (home VARCHAR, record VARCHAR) ### Question: Who had a 33-30-8 record at home? ### Answer: SELECT home FROM table_name_99 WHERE record = "33-30-8" |
What was the home teams score when North Melbourne played as the away team? | CREATE TABLE table_name_15 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_15 WHERE away_team = "north melbourne" | ### Context: CREATE TABLE table_name_15 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home teams score when North Melbourne played as the away team? ### Answer: SELECT home_team AS score FROM table_name_15 WHERE away_team = "north melbourne" |
Who was the away team at Windy Hill? | CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_11 WHERE venue = "windy hill" | ### Context: CREATE TABLE table_name_11 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team at Windy Hill? ### Answer: SELECT away_team FROM table_name_11 WHERE venue = "windy hill" |
Where did Fitzroy play as the home team? | CREATE TABLE table_name_22 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_22 WHERE home_team = "fitzroy" | ### Context: CREATE TABLE table_name_22 (venue VARCHAR, home_team VARCHAR) ### Question: Where did Fitzroy play as the home team? ### Answer: SELECT venue FROM table_name_22 WHERE home_team = "fitzroy" |
Who was away team at the home game of south melbourne? | CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_99 WHERE home_team = "south melbourne" | ### Context: CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR) ### Question: Who was away team at the home game of south melbourne? ### Answer: SELECT away_team FROM table_name_99 WHERE home_team = "south melbourne" |
What did the away team score when they visited south melbourne? | CREATE TABLE table_name_26 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_26 WHERE home_team = "south melbourne" | ### Context: CREATE TABLE table_name_26 (away_team VARCHAR, home_team VARCHAR) ### Question: What did the away team score when they visited south melbourne? ### Answer: SELECT away_team AS score FROM table_name_26 WHERE home_team = "south melbourne" |
What is the highest crowd with north melbourne as away team? | CREATE TABLE table_name_10 (crowd INTEGER, away_team VARCHAR) | SELECT MAX(crowd) FROM table_name_10 WHERE away_team = "north melbourne" | ### Context: CREATE TABLE table_name_10 (crowd INTEGER, away_team VARCHAR) ### Question: What is the highest crowd with north melbourne as away team? ### Answer: SELECT MAX(crowd) FROM table_name_10 WHERE away_team = "north melbourne" |
Which venue has a Home team of south melbourne? | CREATE TABLE table_name_88 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_88 WHERE home_team = "south melbourne" | ### Context: CREATE TABLE table_name_88 (venue VARCHAR, home_team VARCHAR) ### Question: Which venue has a Home team of south melbourne? ### Answer: SELECT venue FROM table_name_88 WHERE home_team = "south melbourne" |
What home score has an Away team of fitzroy? | CREATE TABLE table_name_82 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_82 WHERE away_team = "fitzroy" | ### Context: CREATE TABLE table_name_82 (home_team VARCHAR, away_team VARCHAR) ### Question: What home score has an Away team of fitzroy? ### Answer: SELECT home_team AS score FROM table_name_82 WHERE away_team = "fitzroy" |
Which home team has a Venue of corio oval? | CREATE TABLE table_name_61 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_61 WHERE venue = "corio oval" | ### Context: CREATE TABLE table_name_61 (home_team VARCHAR, venue VARCHAR) ### Question: Which home team has a Venue of corio oval? ### Answer: SELECT home_team FROM table_name_61 WHERE venue = "corio oval" |
Which team has an Away team of carlton? | CREATE TABLE table_name_58 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_58 WHERE away_team = "carlton" | ### Context: CREATE TABLE table_name_58 (home_team VARCHAR, away_team VARCHAR) ### Question: Which team has an Away team of carlton? ### Answer: SELECT home_team FROM table_name_58 WHERE away_team = "carlton" |
Which date has an Away team of richmond? | CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_21 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_21 (date VARCHAR, away_team VARCHAR) ### Question: Which date has an Away team of richmond? ### Answer: SELECT date FROM table_name_21 WHERE away_team = "richmond" |
How many regions have a capital of matanzas and a 2005 population under 670427? | CREATE TABLE table_name_85 (area__km²_ VARCHAR, capital VARCHAR, population__2005_ VARCHAR) | SELECT COUNT(area__km²_) FROM table_name_85 WHERE capital = "matanzas" AND population__2005_ < 670427 | ### Context: CREATE TABLE table_name_85 (area__km²_ VARCHAR, capital VARCHAR, population__2005_ VARCHAR) ### Question: How many regions have a capital of matanzas and a 2005 population under 670427? ### Answer: SELECT COUNT(area__km²_) FROM table_name_85 WHERE capital = "matanzas" AND population__2005_ < 670427 |
What is the average area that has a Capital of camagüey, with a Population (%) larger than 7.02? | CREATE TABLE table_name_25 (area__km²_ INTEGER, capital VARCHAR, population___percentage_ VARCHAR) | SELECT AVG(area__km²_) FROM table_name_25 WHERE capital = "camagüey" AND population___percentage_ > 7.02 | ### Context: CREATE TABLE table_name_25 (area__km²_ INTEGER, capital VARCHAR, population___percentage_ VARCHAR) ### Question: What is the average area that has a Capital of camagüey, with a Population (%) larger than 7.02? ### Answer: SELECT AVG(area__km²_) FROM table_name_25 WHERE capital = "camagüey" AND population___percentage_ > 7.02 |
What was the score of the Kings game attended by more than 18,630 people? | CREATE TABLE table_name_76 (score VARCHAR, attendance INTEGER) | SELECT score FROM table_name_76 WHERE attendance > 18 OFFSET 630 | ### Context: CREATE TABLE table_name_76 (score VARCHAR, attendance INTEGER) ### Question: What was the score of the Kings game attended by more than 18,630 people? ### Answer: SELECT score FROM table_name_76 WHERE attendance > 18 OFFSET 630 |
What was the average attendance for a Kings game when they had a record of 1–5–0? | CREATE TABLE table_name_92 (attendance INTEGER, record VARCHAR) | SELECT AVG(attendance) FROM table_name_92 WHERE record = "1–5–0" | ### Context: CREATE TABLE table_name_92 (attendance INTEGER, record VARCHAR) ### Question: What was the average attendance for a Kings game when they had a record of 1–5–0? ### Answer: SELECT AVG(attendance) FROM table_name_92 WHERE record = "1–5–0" |
What team has over 1 tournament title, 0 in the regular season, and 2 total? | CREATE TABLE table_name_47 (team VARCHAR, total VARCHAR, tournament VARCHAR, regular_season VARCHAR) | SELECT team FROM table_name_47 WHERE tournament > 1 AND regular_season = "0" AND total = 2 | ### Context: CREATE TABLE table_name_47 (team VARCHAR, total VARCHAR, tournament VARCHAR, regular_season VARCHAR) ### Question: What team has over 1 tournament title, 0 in the regular season, and 2 total? ### Answer: SELECT team FROM table_name_47 WHERE tournament > 1 AND regular_season = "0" AND total = 2 |
What is the total on average for teams with 3 tournaments? | CREATE TABLE table_name_8 (total INTEGER, tournament VARCHAR) | SELECT AVG(total) FROM table_name_8 WHERE tournament = 3 | ### Context: CREATE TABLE table_name_8 (total INTEGER, tournament VARCHAR) ### Question: What is the total on average for teams with 3 tournaments? ### Answer: SELECT AVG(total) FROM table_name_8 WHERE tournament = 3 |
what is the lowest grid when the laps is more than 7 and the driver is rubens barrichello? | CREATE TABLE table_name_21 (grid INTEGER, laps VARCHAR, driver VARCHAR) | SELECT MIN(grid) FROM table_name_21 WHERE laps > 7 AND driver = "rubens barrichello" | ### Context: CREATE TABLE table_name_21 (grid INTEGER, laps VARCHAR, driver VARCHAR) ### Question: what is the lowest grid when the laps is more than 7 and the driver is rubens barrichello? ### Answer: SELECT MIN(grid) FROM table_name_21 WHERE laps > 7 AND driver = "rubens barrichello" |
what is the grid when the laps is more than 0, the time/retired is engine and the driver is pedro de la rosa? | CREATE TABLE table_name_5 (grid VARCHAR, driver VARCHAR, laps VARCHAR, time_retired VARCHAR) | SELECT grid FROM table_name_5 WHERE laps > 0 AND time_retired = "engine" AND driver = "pedro de la rosa" | ### Context: CREATE TABLE table_name_5 (grid VARCHAR, driver VARCHAR, laps VARCHAR, time_retired VARCHAR) ### Question: what is the grid when the laps is more than 0, the time/retired is engine and the driver is pedro de la rosa? ### Answer: SELECT grid FROM table_name_5 WHERE laps > 0 AND time_retired = "engine" AND driver = "pedro de la rosa" |
who is the driver with the grid of 13? | CREATE TABLE table_name_84 (driver VARCHAR, grid VARCHAR) | SELECT driver FROM table_name_84 WHERE grid = 13 | ### Context: CREATE TABLE table_name_84 (driver VARCHAR, grid VARCHAR) ### Question: who is the driver with the grid of 13? ### Answer: SELECT driver FROM table_name_84 WHERE grid = 13 |
How many championships did the team or teams established in 1976 win? | CREATE TABLE table_name_92 (championships INTEGER, established VARCHAR) | SELECT SUM(championships) FROM table_name_92 WHERE established = 1976 | ### Context: CREATE TABLE table_name_92 (championships INTEGER, established VARCHAR) ### Question: How many championships did the team or teams established in 1976 win? ### Answer: SELECT SUM(championships) FROM table_name_92 WHERE established = 1976 |
Which WNBA team that won at least 2 championships was established most recently? | CREATE TABLE table_name_54 (established INTEGER, league VARCHAR, championships VARCHAR) | SELECT MAX(established) FROM table_name_54 WHERE league = "wnba" AND championships > 2 | ### Context: CREATE TABLE table_name_54 (established INTEGER, league VARCHAR, championships VARCHAR) ### Question: Which WNBA team that won at least 2 championships was established most recently? ### Answer: SELECT MAX(established) FROM table_name_54 WHERE league = "wnba" AND championships > 2 |
What are the venues that host WNBA games? | CREATE TABLE table_name_39 (venue VARCHAR, league VARCHAR) | SELECT venue FROM table_name_39 WHERE league = "wnba" | ### Context: CREATE TABLE table_name_39 (venue VARCHAR, league VARCHAR) ### Question: What are the venues that host WNBA games? ### Answer: SELECT venue FROM table_name_39 WHERE league = "wnba" |
Name the bowling style of the player born 16 march 1974 | CREATE TABLE table_name_10 (bowling_style VARCHAR, date_of_birth VARCHAR) | SELECT bowling_style FROM table_name_10 WHERE date_of_birth = "16 march 1974" | ### Context: CREATE TABLE table_name_10 (bowling_style VARCHAR, date_of_birth VARCHAR) ### Question: Name the bowling style of the player born 16 march 1974 ### Answer: SELECT bowling_style FROM table_name_10 WHERE date_of_birth = "16 march 1974" |
Name the batting style for heath streak | CREATE TABLE table_name_57 (batting_style VARCHAR, player VARCHAR) | SELECT batting_style FROM table_name_57 WHERE player = "heath streak" | ### Context: CREATE TABLE table_name_57 (batting_style VARCHAR, player VARCHAR) ### Question: Name the batting style for heath streak ### Answer: SELECT batting_style FROM table_name_57 WHERE player = "heath streak" |
What is the name of a building that has 52 floors? | CREATE TABLE table_name_87 (name VARCHAR, floors VARCHAR) | SELECT name FROM table_name_87 WHERE floors = 52 | ### Context: CREATE TABLE table_name_87 (name VARCHAR, floors VARCHAR) ### Question: What is the name of a building that has 52 floors? ### Answer: SELECT name FROM table_name_87 WHERE floors = 52 |
How many floors does the Custom House Tower have? | CREATE TABLE table_name_95 (floors VARCHAR, name VARCHAR) | SELECT COUNT(floors) FROM table_name_95 WHERE name = "custom house tower" | ### Context: CREATE TABLE table_name_95 (floors VARCHAR, name VARCHAR) ### Question: How many floors does the Custom House Tower have? ### Answer: SELECT COUNT(floors) FROM table_name_95 WHERE name = "custom house tower" |
How many floors does the building on 800 Boylston Street have? | CREATE TABLE table_name_52 (floors INTEGER, street_address VARCHAR) | SELECT MAX(floors) FROM table_name_52 WHERE street_address = "800 boylston street" | ### Context: CREATE TABLE table_name_52 (floors INTEGER, street_address VARCHAR) ### Question: How many floors does the building on 800 Boylston Street have? ### Answer: SELECT MAX(floors) FROM table_name_52 WHERE street_address = "800 boylston street" |
What is the street address for the Prudential Tower building? | CREATE TABLE table_name_17 (street_address VARCHAR, name VARCHAR) | SELECT street_address FROM table_name_17 WHERE name = "prudential tower" | ### Context: CREATE TABLE table_name_17 (street_address VARCHAR, name VARCHAR) ### Question: What is the street address for the Prudential Tower building? ### Answer: SELECT street_address FROM table_name_17 WHERE name = "prudential tower" |
There is a building at 800 Boylston Street, how many floors does it have? | CREATE TABLE table_name_81 (floors INTEGER, street_address VARCHAR) | SELECT SUM(floors) FROM table_name_81 WHERE street_address = "800 boylston street" | ### Context: CREATE TABLE table_name_81 (floors INTEGER, street_address VARCHAR) ### Question: There is a building at 800 Boylston Street, how many floors does it have? ### Answer: SELECT SUM(floors) FROM table_name_81 WHERE street_address = "800 boylston street" |
What was the highest number of WJC Jews that had a WJC rank of 6 and a ARDA rank of more than 8? | CREATE TABLE table_name_1 (number_of_jews__wjc_ INTEGER, rank___wjc__ VARCHAR, rank__arda_ VARCHAR) | SELECT MAX(number_of_jews__wjc_) FROM table_name_1 WHERE rank___wjc__ = 6 AND rank__arda_ > 8 | ### Context: CREATE TABLE table_name_1 (number_of_jews__wjc_ INTEGER, rank___wjc__ VARCHAR, rank__arda_ VARCHAR) ### Question: What was the highest number of WJC Jews that had a WJC rank of 6 and a ARDA rank of more than 8? ### Answer: SELECT MAX(number_of_jews__wjc_) FROM table_name_1 WHERE rank___wjc__ = 6 AND rank__arda_ > 8 |
What was the number of WJC Jews with a WJC rank of 6? | CREATE TABLE table_name_96 (number_of_jews__wjc_ VARCHAR, rank___wjc__ VARCHAR) | SELECT number_of_jews__wjc_ FROM table_name_96 WHERE rank___wjc__ = 6 | ### Context: CREATE TABLE table_name_96 (number_of_jews__wjc_ VARCHAR, rank___wjc__ VARCHAR) ### Question: What was the number of WJC Jews with a WJC rank of 6? ### Answer: SELECT number_of_jews__wjc_ FROM table_name_96 WHERE rank___wjc__ = 6 |
How many number of WJC Jews in the Los Angeles Metro Area has a ARDA rank of more than 2? | CREATE TABLE table_name_73 (number_of_jews__wjc_ INTEGER, metro_area VARCHAR, rank__arda_ VARCHAR) | SELECT SUM(number_of_jews__wjc_) FROM table_name_73 WHERE metro_area = "los angeles" AND rank__arda_ > 2 | ### Context: CREATE TABLE table_name_73 (number_of_jews__wjc_ INTEGER, metro_area VARCHAR, rank__arda_ VARCHAR) ### Question: How many number of WJC Jews in the Los Angeles Metro Area has a ARDA rank of more than 2? ### Answer: SELECT SUM(number_of_jews__wjc_) FROM table_name_73 WHERE metro_area = "los angeles" AND rank__arda_ > 2 |
Who drove during the race with less than 19 laps and a time listed as ignition? | CREATE TABLE table_name_55 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR) | SELECT driver FROM table_name_55 WHERE laps < 19 AND time_retired = "ignition" | ### Context: CREATE TABLE table_name_55 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR) ### Question: Who drove during the race with less than 19 laps and a time listed as ignition? ### Answer: SELECT driver FROM table_name_55 WHERE laps < 19 AND time_retired = "ignition" |
What is his record for fights that went over 2 rounds in the Event of raging wolf 6: mayhem in the mist? | CREATE TABLE table_name_90 (record VARCHAR, round VARCHAR, event VARCHAR) | SELECT record FROM table_name_90 WHERE round > 2 AND event = "raging wolf 6: mayhem in the mist" | ### Context: CREATE TABLE table_name_90 (record VARCHAR, round VARCHAR, event VARCHAR) ### Question: What is his record for fights that went over 2 rounds in the Event of raging wolf 6: mayhem in the mist? ### Answer: SELECT record FROM table_name_90 WHERE round > 2 AND event = "raging wolf 6: mayhem in the mist" |
What is the highest number of people that attended a game at Moorabbin Oval? | CREATE TABLE table_name_54 (crowd INTEGER, venue VARCHAR) | SELECT MAX(crowd) FROM table_name_54 WHERE venue = "moorabbin oval" | ### Context: CREATE TABLE table_name_54 (crowd INTEGER, venue VARCHAR) ### Question: What is the highest number of people that attended a game at Moorabbin Oval? ### Answer: SELECT MAX(crowd) FROM table_name_54 WHERE venue = "moorabbin oval" |
What is the least amount of people that attended a game when Essendon was the away team? | CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR) | SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "essendon" | ### Context: CREATE TABLE table_name_83 (crowd INTEGER, away_team VARCHAR) ### Question: What is the least amount of people that attended a game when Essendon was the away team? ### Answer: SELECT MIN(crowd) FROM table_name_83 WHERE away_team = "essendon" |
Which date did South Melbourne play as the away team? | CREATE TABLE table_name_74 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_74 WHERE away_team = "south melbourne" | ### Context: CREATE TABLE table_name_74 (date VARCHAR, away_team VARCHAR) ### Question: Which date did South Melbourne play as the away team? ### Answer: SELECT date FROM table_name_74 WHERE away_team = "south melbourne" |
What is the constructor for Jackie Stewart's car? | CREATE TABLE table_name_3 (constructor VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_3 WHERE driver = "jackie stewart" | ### Context: CREATE TABLE table_name_3 (constructor VARCHAR, driver VARCHAR) ### Question: What is the constructor for Jackie Stewart's car? ### Answer: SELECT constructor FROM table_name_3 WHERE driver = "jackie stewart" |
What is the location where Denny Hulme was the driver? | CREATE TABLE table_name_54 (location VARCHAR, driver VARCHAR) | SELECT location FROM table_name_54 WHERE driver = "denny hulme" | ### Context: CREATE TABLE table_name_54 (location VARCHAR, driver VARCHAR) ### Question: What is the location where Denny Hulme was the driver? ### Answer: SELECT location FROM table_name_54 WHERE driver = "denny hulme" |
What is number of the train that originated in Secunderabad Junction? | CREATE TABLE table_name_87 (train_no VARCHAR, origin VARCHAR) | SELECT train_no FROM table_name_87 WHERE origin = "secunderabad junction" | ### Context: CREATE TABLE table_name_87 (train_no VARCHAR, origin VARCHAR) ### Question: What is number of the train that originated in Secunderabad Junction? ### Answer: SELECT train_no FROM table_name_87 WHERE origin = "secunderabad junction" |
From where did the train that arrived in the Anand Vihar Terminal originate? | CREATE TABLE table_name_29 (origin VARCHAR, destination VARCHAR) | SELECT origin FROM table_name_29 WHERE destination = "anand vihar terminal" | ### Context: CREATE TABLE table_name_29 (origin VARCHAR, destination VARCHAR) ### Question: From where did the train that arrived in the Anand Vihar Terminal originate? ### Answer: SELECT origin FROM table_name_29 WHERE destination = "anand vihar terminal" |
From where did Train No. 15929/30 originate? | CREATE TABLE table_name_15 (origin VARCHAR, train_no VARCHAR) | SELECT origin FROM table_name_15 WHERE train_no = "15929/30" | ### Context: CREATE TABLE table_name_15 (origin VARCHAR, train_no VARCHAR) ### Question: From where did Train No. 15929/30 originate? ### Answer: SELECT origin FROM table_name_15 WHERE train_no = "15929/30" |
What is the frequency of the train to Bangalore? | CREATE TABLE table_name_82 (frequency VARCHAR, destination VARCHAR) | SELECT frequency FROM table_name_82 WHERE destination = "bangalore" | ### Context: CREATE TABLE table_name_82 (frequency VARCHAR, destination VARCHAR) ### Question: What is the frequency of the train to Bangalore? ### Answer: SELECT frequency FROM table_name_82 WHERE destination = "bangalore" |
How many Norwegian Americans have Norwegian Americans (2000) of 109,744? | CREATE TABLE table_name_72 (norwegian_americans__2009_ VARCHAR, norwegian_americans__2000_ VARCHAR) | SELECT COUNT(norwegian_americans__2009_) FROM table_name_72 WHERE norwegian_americans__2000_ = 109 OFFSET 744 | ### Context: CREATE TABLE table_name_72 (norwegian_americans__2009_ VARCHAR, norwegian_americans__2000_ VARCHAR) ### Question: How many Norwegian Americans have Norwegian Americans (2000) of 109,744? ### Answer: SELECT COUNT(norwegian_americans__2009_) FROM table_name_72 WHERE norwegian_americans__2000_ = 109 OFFSET 744 |
Which state has a Percent (2009) of 6.2%? | CREATE TABLE table_name_95 (state VARCHAR, percent__2009_ VARCHAR) | SELECT state FROM table_name_95 WHERE percent__2009_ = "6.2%" | ### Context: CREATE TABLE table_name_95 (state VARCHAR, percent__2009_ VARCHAR) ### Question: Which state has a Percent (2009) of 6.2%? ### Answer: SELECT state FROM table_name_95 WHERE percent__2009_ = "6.2%" |
What is the holding of the customers? | CREATE TABLE table_name_56 (holding VARCHAR, component VARCHAR) | SELECT holding FROM table_name_56 WHERE component = "customers" | ### Context: CREATE TABLE table_name_56 (holding VARCHAR, component VARCHAR) ### Question: What is the holding of the customers? ### Answer: SELECT holding FROM table_name_56 WHERE component = "customers" |
What Allied-Unrelated is labeled as "common"? | CREATE TABLE table_name_61 (allied_unrelated VARCHAR, allied_related VARCHAR) | SELECT allied_unrelated FROM table_name_61 WHERE allied_related = "common" | ### Context: CREATE TABLE table_name_61 (allied_unrelated VARCHAR, allied_related VARCHAR) ### Question: What Allied-Unrelated is labeled as "common"? ### Answer: SELECT allied_unrelated FROM table_name_61 WHERE allied_related = "common" |
Which integrated has an allied-related of some shared? | CREATE TABLE table_name_40 (integrated VARCHAR, allied_related VARCHAR) | SELECT integrated FROM table_name_40 WHERE allied_related = "some shared" | ### Context: CREATE TABLE table_name_40 (integrated VARCHAR, allied_related VARCHAR) ### Question: Which integrated has an allied-related of some shared? ### Answer: SELECT integrated FROM table_name_40 WHERE allied_related = "some shared" |
What integrated has an allied-related of centralized? | CREATE TABLE table_name_11 (integrated VARCHAR, allied_related VARCHAR) | SELECT integrated FROM table_name_11 WHERE allied_related = "centralized" | ### Context: CREATE TABLE table_name_11 (integrated VARCHAR, allied_related VARCHAR) ### Question: What integrated has an allied-related of centralized? ### Answer: SELECT integrated FROM table_name_11 WHERE allied_related = "centralized" |
What component has an integrated of one? | CREATE TABLE table_name_21 (component VARCHAR, integrated VARCHAR) | SELECT component FROM table_name_21 WHERE integrated = "one" | ### Context: CREATE TABLE table_name_21 (component VARCHAR, integrated VARCHAR) ### Question: What component has an integrated of one? ### Answer: SELECT component FROM table_name_21 WHERE integrated = "one" |
How many candidates had 0 percent of the vote in 1999? | CREATE TABLE table_name_71 (candidates VARCHAR, seats_won VARCHAR, _percentage_of_vote VARCHAR, election VARCHAR) | SELECT COUNT(candidates) FROM table_name_71 WHERE _percentage_of_vote = 0 AND election = 1999 AND seats_won > 0 | ### Context: CREATE TABLE table_name_71 (candidates VARCHAR, seats_won VARCHAR, _percentage_of_vote VARCHAR, election VARCHAR) ### Question: How many candidates had 0 percent of the vote in 1999? ### Answer: SELECT COUNT(candidates) FROM table_name_71 WHERE _percentage_of_vote = 0 AND election = 1999 AND seats_won > 0 |
What is the score of the game with Manu ginóbili (44) as the leading scorer? | CREATE TABLE table_name_27 (score VARCHAR, leading_scorer VARCHAR) | SELECT score FROM table_name_27 WHERE leading_scorer = "manu ginóbili (44)" | ### Context: CREATE TABLE table_name_27 (score VARCHAR, leading_scorer VARCHAR) ### Question: What is the score of the game with Manu ginóbili (44) as the leading scorer? ### Answer: SELECT score FROM table_name_27 WHERE leading_scorer = "manu ginóbili (44)" |
What is the record of the game on February 21, 2008? | CREATE TABLE table_name_60 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_60 WHERE date = "february 21, 2008" | ### Context: CREATE TABLE table_name_60 (record VARCHAR, date VARCHAR) ### Question: What is the record of the game on February 21, 2008? ### Answer: SELECT record FROM table_name_60 WHERE date = "february 21, 2008" |
Who was the home team of the game with manu ginóbili (34) as the leading scorer? | CREATE TABLE table_name_74 (home VARCHAR, leading_scorer VARCHAR) | SELECT home FROM table_name_74 WHERE leading_scorer = "manu ginóbili (34)" | ### Context: CREATE TABLE table_name_74 (home VARCHAR, leading_scorer VARCHAR) ### Question: Who was the home team of the game with manu ginóbili (34) as the leading scorer? ### Answer: SELECT home FROM table_name_74 WHERE leading_scorer = "manu ginóbili (34)" |
What is the record of the game on February 25, 2008? | CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_59 WHERE date = "february 25, 2008" | ### Context: CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR) ### Question: What is the record of the game on February 25, 2008? ### Answer: SELECT record FROM table_name_59 WHERE date = "february 25, 2008" |
What type is shown with a moving to of valenciennes? | CREATE TABLE table_name_7 (type VARCHAR, moving_to VARCHAR) | SELECT type FROM table_name_7 WHERE moving_to = "valenciennes" | ### Context: CREATE TABLE table_name_7 (type VARCHAR, moving_to VARCHAR) ### Question: What type is shown with a moving to of valenciennes? ### Answer: SELECT type FROM table_name_7 WHERE moving_to = "valenciennes" |
What is the transfer window with n/a as the Transfer fee, free agent for the Moving to, and Joe Sagar as the name? | CREATE TABLE table_name_63 (transfer_window VARCHAR, name VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR) | SELECT transfer_window FROM table_name_63 WHERE transfer_fee = "n/a" AND moving_to = "free agent" AND name = "joe sagar" | ### Context: CREATE TABLE table_name_63 (transfer_window VARCHAR, name VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR) ### Question: What is the transfer window with n/a as the Transfer fee, free agent for the Moving to, and Joe Sagar as the name? ### Answer: SELECT transfer_window FROM table_name_63 WHERE transfer_fee = "n/a" AND moving_to = "free agent" AND name = "joe sagar" |
What is the name of the person with a type of end of contract, nat of sco, and the Moving to is cardiff city? | CREATE TABLE table_name_81 (name VARCHAR, moving_to VARCHAR, type VARCHAR, nat VARCHAR) | SELECT name FROM table_name_81 WHERE type = "end of contract" AND nat = "sco" AND moving_to = "cardiff city" | ### Context: CREATE TABLE table_name_81 (name VARCHAR, moving_to VARCHAR, type VARCHAR, nat VARCHAR) ### Question: What is the name of the person with a type of end of contract, nat of sco, and the Moving to is cardiff city? ### Answer: SELECT name FROM table_name_81 WHERE type = "end of contract" AND nat = "sco" AND moving_to = "cardiff city" |
What Transfer window that has a Transfer fee of free, with a Moving to of derby county? | CREATE TABLE table_name_54 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR) | SELECT transfer_window FROM table_name_54 WHERE transfer_fee = "free" AND moving_to = "derby county" | ### Context: CREATE TABLE table_name_54 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR) ### Question: What Transfer window that has a Transfer fee of free, with a Moving to of derby county? ### Answer: SELECT transfer_window FROM table_name_54 WHERE transfer_fee = "free" AND moving_to = "derby county" |
What is the first game number that had attendance of 56,505? | CREATE TABLE table_name_98 (game INTEGER, attendance VARCHAR) | SELECT MIN(game) FROM table_name_98 WHERE attendance = 56 OFFSET 505 | ### Context: CREATE TABLE table_name_98 (game INTEGER, attendance VARCHAR) ### Question: What is the first game number that had attendance of 56,505? ### Answer: SELECT MIN(game) FROM table_name_98 WHERE attendance = 56 OFFSET 505 |
What was the crowd size for the away team footscray? | CREATE TABLE table_name_59 (crowd VARCHAR, away_team VARCHAR) | SELECT crowd FROM table_name_59 WHERE away_team = "footscray" | ### Context: CREATE TABLE table_name_59 (crowd VARCHAR, away_team VARCHAR) ### Question: What was the crowd size for the away team footscray? ### Answer: SELECT crowd FROM table_name_59 WHERE away_team = "footscray" |
Which Race Name has Goodwood in the Curcuit? | CREATE TABLE table_name_4 (race_name VARCHAR, circuit VARCHAR) | SELECT race_name FROM table_name_4 WHERE circuit = "goodwood" | ### Context: CREATE TABLE table_name_4 (race_name VARCHAR, circuit VARCHAR) ### Question: Which Race Name has Goodwood in the Curcuit? ### Answer: SELECT race_name FROM table_name_4 WHERE circuit = "goodwood" |
Which Constructor has the Winning Driver, Jim Clark and the Circuit, Syracuse? | CREATE TABLE table_name_6 (constructor VARCHAR, winning_driver VARCHAR, circuit VARCHAR) | SELECT constructor FROM table_name_6 WHERE winning_driver = "jim clark" AND circuit = "syracuse" | ### Context: CREATE TABLE table_name_6 (constructor VARCHAR, winning_driver VARCHAR, circuit VARCHAR) ### Question: Which Constructor has the Winning Driver, Jim Clark and the Circuit, Syracuse? ### Answer: SELECT constructor FROM table_name_6 WHERE winning_driver = "jim clark" AND circuit = "syracuse" |
Which Constructor has the Winning Driver, Jo Siffert? | CREATE TABLE table_name_72 (constructor VARCHAR, winning_driver VARCHAR) | SELECT constructor FROM table_name_72 WHERE winning_driver = "jo siffert" | ### Context: CREATE TABLE table_name_72 (constructor VARCHAR, winning_driver VARCHAR) ### Question: Which Constructor has the Winning Driver, Jo Siffert? ### Answer: SELECT constructor FROM table_name_72 WHERE winning_driver = "jo siffert" |
Which Constructor has Pergusa in the Circuit? | CREATE TABLE table_name_49 (constructor VARCHAR, circuit VARCHAR) | SELECT constructor FROM table_name_49 WHERE circuit = "pergusa" | ### Context: CREATE TABLE table_name_49 (constructor VARCHAR, circuit VARCHAR) ### Question: Which Constructor has Pergusa in the Circuit? ### Answer: SELECT constructor FROM table_name_49 WHERE circuit = "pergusa" |
On what date was a game played at MCG? | CREATE TABLE table_name_89 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_89 WHERE venue = "mcg" | ### Context: CREATE TABLE table_name_89 (date VARCHAR, venue VARCHAR) ### Question: On what date was a game played at MCG? ### Answer: SELECT date FROM table_name_89 WHERE venue = "mcg" |
What is the average total medals of the team with 2 gold and less than 1 silver? | CREATE TABLE table_name_93 (total INTEGER, gold VARCHAR, silver VARCHAR) | SELECT AVG(total) FROM table_name_93 WHERE gold = 2 AND silver < 1 | ### Context: CREATE TABLE table_name_93 (total INTEGER, gold VARCHAR, silver VARCHAR) ### Question: What is the average total medals of the team with 2 gold and less than 1 silver? ### Answer: SELECT AVG(total) FROM table_name_93 WHERE gold = 2 AND silver < 1 |
What is the lowest amount of silver medals Iceland, who has less than 87 medals, has? | CREATE TABLE table_name_95 (silver INTEGER, nation VARCHAR, total VARCHAR) | SELECT MIN(silver) FROM table_name_95 WHERE nation = "iceland" AND total < 87 | ### Context: CREATE TABLE table_name_95 (silver INTEGER, nation VARCHAR, total VARCHAR) ### Question: What is the lowest amount of silver medals Iceland, who has less than 87 medals, has? ### Answer: SELECT MIN(silver) FROM table_name_95 WHERE nation = "iceland" AND total < 87 |
What is the least amount of bronze Andorra, who has more than 6 total medals, has? | CREATE TABLE table_name_86 (bronze INTEGER, nation VARCHAR, total VARCHAR) | SELECT MIN(bronze) FROM table_name_86 WHERE nation = "andorra" AND total > 6 | ### Context: CREATE TABLE table_name_86 (bronze INTEGER, nation VARCHAR, total VARCHAR) ### Question: What is the least amount of bronze Andorra, who has more than 6 total medals, has? ### Answer: SELECT MIN(bronze) FROM table_name_86 WHERE nation = "andorra" AND total > 6 |
What is the lowest amount of bronze Liechtenstein, who has more than 11 gold, has? | CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, gold VARCHAR) | SELECT MIN(bronze) FROM table_name_75 WHERE nation = "liechtenstein" AND gold > 11 | ### Context: CREATE TABLE table_name_75 (bronze INTEGER, nation VARCHAR, gold VARCHAR) ### Question: What is the lowest amount of bronze Liechtenstein, who has more than 11 gold, has? ### Answer: SELECT MIN(bronze) FROM table_name_75 WHERE nation = "liechtenstein" AND gold > 11 |
What is the average amount of silver medals Montenegro, who has less than 15 bronze and more than 11 total medals, has? | CREATE TABLE table_name_87 (silver INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR) | SELECT AVG(silver) FROM table_name_87 WHERE bronze < 15 AND nation = "montenegro" AND total > 11 | ### Context: CREATE TABLE table_name_87 (silver INTEGER, total VARCHAR, bronze VARCHAR, nation VARCHAR) ### Question: What is the average amount of silver medals Montenegro, who has less than 15 bronze and more than 11 total medals, has? ### Answer: SELECT AVG(silver) FROM table_name_87 WHERE bronze < 15 AND nation = "montenegro" AND total > 11 |
What is the lower turnout that has a byut of 50.7 and an ou psd smaller than 36.8? | CREATE TABLE table_name_62 (voter_turnout INTEGER, byut VARCHAR, ou_psd VARCHAR) | SELECT MIN(voter_turnout) FROM table_name_62 WHERE byut = 50.7 AND ou_psd < 36.8 | ### Context: CREATE TABLE table_name_62 (voter_turnout INTEGER, byut VARCHAR, ou_psd VARCHAR) ### Question: What is the lower turnout that has a byut of 50.7 and an ou psd smaller than 36.8? ### Answer: SELECT MIN(voter_turnout) FROM table_name_62 WHERE byut = 50.7 AND ou_psd < 36.8 |
What is the voter registration that has a BYut of 48.2? | CREATE TABLE table_name_78 (voter_registration VARCHAR, byut VARCHAR) | SELECT COUNT(voter_registration) FROM table_name_78 WHERE byut = 48.2 | ### Context: CREATE TABLE table_name_78 (voter_registration VARCHAR, byut VARCHAR) ### Question: What is the voter registration that has a BYut of 48.2? ### Answer: SELECT COUNT(voter_registration) FROM table_name_78 WHERE byut = 48.2 |
Who was the home team at VFL Park? | CREATE TABLE table_name_22 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_22 WHERE venue = "vfl park" | ### Context: CREATE TABLE table_name_22 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team at VFL Park? ### Answer: SELECT home_team FROM table_name_22 WHERE venue = "vfl park" |
Who was the home team at Kardinia Park? | CREATE TABLE table_name_78 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_78 WHERE venue = "kardinia park" | ### Context: CREATE TABLE table_name_78 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team at Kardinia Park? ### Answer: SELECT home_team FROM table_name_78 WHERE venue = "kardinia park" |
What type of paper is the 1 cent denominations made on? | CREATE TABLE table_name_3 (paper_type VARCHAR, denomination VARCHAR) | SELECT paper_type FROM table_name_3 WHERE denomination = "1 cent" | ### Context: CREATE TABLE table_name_3 (paper_type VARCHAR, denomination VARCHAR) ### Question: What type of paper is the 1 cent denominations made on? ### Answer: SELECT paper_type FROM table_name_3 WHERE denomination = "1 cent" |
What is the paper type that the one that was issued on 26 july 2007 done on? | CREATE TABLE table_name_7 (paper_type VARCHAR, date_of_issue VARCHAR) | SELECT paper_type FROM table_name_7 WHERE date_of_issue = "26 july 2007" | ### Context: CREATE TABLE table_name_7 (paper_type VARCHAR, date_of_issue VARCHAR) ### Question: What is the paper type that the one that was issued on 26 july 2007 done on? ### Answer: SELECT paper_type FROM table_name_7 WHERE date_of_issue = "26 july 2007" |
What did the home team footscray score? | CREATE TABLE table_name_65 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_65 WHERE home_team = "footscray" | ### Context: CREATE TABLE table_name_65 (home_team VARCHAR) ### Question: What did the home team footscray score? ### Answer: SELECT home_team AS score FROM table_name_65 WHERE home_team = "footscray" |
What was the total crowd size for the him team footscray? | CREATE TABLE table_name_95 (crowd VARCHAR, home_team VARCHAR) | SELECT COUNT(crowd) FROM table_name_95 WHERE home_team = "footscray" | ### Context: CREATE TABLE table_name_95 (crowd VARCHAR, home_team VARCHAR) ### Question: What was the total crowd size for the him team footscray? ### Answer: SELECT COUNT(crowd) FROM table_name_95 WHERE home_team = "footscray" |
What is the Home team at corio oval? | CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_57 WHERE venue = "corio oval" | ### Context: CREATE TABLE table_name_57 (home_team VARCHAR, venue VARCHAR) ### Question: What is the Home team at corio oval? ### Answer: SELECT home_team FROM table_name_57 WHERE venue = "corio oval" |
What livery was worn on the date before 1936, with the description of Gresley RF? | CREATE TABLE table_name_82 (livery VARCHAR, date VARCHAR, description VARCHAR) | SELECT livery FROM table_name_82 WHERE date < 1936 AND description = "gresley rf" | ### Context: CREATE TABLE table_name_82 (livery VARCHAR, date VARCHAR, description VARCHAR) ### Question: What livery was worn on the date before 1936, with the description of Gresley RF? ### Answer: SELECT livery FROM table_name_82 WHERE date < 1936 AND description = "gresley rf" |
Which number and name has the description Gresley RB and a date before 1937? | CREATE TABLE table_name_16 (number_ VARCHAR, _name VARCHAR, description VARCHAR, date VARCHAR) | SELECT number_ & _name FROM table_name_16 WHERE description = "gresley rb" AND date < 1937 | ### Context: CREATE TABLE table_name_16 (number_ VARCHAR, _name VARCHAR, description VARCHAR, date VARCHAR) ### Question: Which number and name has the description Gresley RB and a date before 1937? ### Answer: SELECT number_ & _name FROM table_name_16 WHERE description = "gresley rb" AND date < 1937 |
Who is the owner before 1940, who had a number and name of no. 1222? | CREATE TABLE table_name_60 (owner_s_ VARCHAR, date VARCHAR, number_ VARCHAR, _name VARCHAR) | SELECT owner_s_ FROM table_name_60 WHERE date < 1940 AND number_ & _name = "no. 1222" | ### Context: CREATE TABLE table_name_60 (owner_s_ VARCHAR, date VARCHAR, number_ VARCHAR, _name VARCHAR) ### Question: Who is the owner before 1940, who had a number and name of no. 1222? ### Answer: SELECT owner_s_ FROM table_name_60 WHERE date < 1940 AND number_ & _name = "no. 1222" |
What type has a scratch of 750 GB? | CREATE TABLE table_name_2 (type VARCHAR, scratch VARCHAR) | SELECT type FROM table_name_2 WHERE scratch = "750 gb" | ### Context: CREATE TABLE table_name_2 (type VARCHAR, scratch VARCHAR) ### Question: What type has a scratch of 750 GB? ### Answer: SELECT type FROM table_name_2 WHERE scratch = "750 gb" |
What is the Cache for a Number 64 with a Memory of 24 gb qpi 5.86 gt/s? | CREATE TABLE table_name_13 (cache VARCHAR, memory VARCHAR, number VARCHAR) | SELECT cache FROM table_name_13 WHERE memory = "24 gb qpi 5.86 gt/s" AND number = 64 | ### Context: CREATE TABLE table_name_13 (cache VARCHAR, memory VARCHAR, number VARCHAR) ### Question: What is the Cache for a Number 64 with a Memory of 24 gb qpi 5.86 gt/s? ### Answer: SELECT cache FROM table_name_13 WHERE memory = "24 gb qpi 5.86 gt/s" AND number = 64 |
What is the Memory for a Number 32 with a Clock of 2.26ghz? | CREATE TABLE table_name_68 (memory VARCHAR, clock VARCHAR, number VARCHAR) | SELECT memory FROM table_name_68 WHERE clock = "2.26ghz" AND number = 32 | ### Context: CREATE TABLE table_name_68 (memory VARCHAR, clock VARCHAR, number VARCHAR) ### Question: What is the Memory for a Number 32 with a Clock of 2.26ghz? ### Answer: SELECT memory FROM table_name_68 WHERE clock = "2.26ghz" AND number = 32 |
Of those acquired in 2008, where were they born? | CREATE TABLE table_name_62 (place_of_birth VARCHAR, acquired VARCHAR) | SELECT place_of_birth FROM table_name_62 WHERE acquired = 2008 | ### Context: CREATE TABLE table_name_62 (place_of_birth VARCHAR, acquired VARCHAR) ### Question: Of those acquired in 2008, where were they born? ### Answer: SELECT place_of_birth FROM table_name_62 WHERE acquired = 2008 |
What is the shooting preference of Matthew Myers, acquired in 2010? | CREATE TABLE table_name_99 (shoots VARCHAR, acquired VARCHAR, player VARCHAR) | SELECT shoots FROM table_name_99 WHERE acquired = 2010 AND player = "matthew myers" | ### Context: CREATE TABLE table_name_99 (shoots VARCHAR, acquired VARCHAR, player VARCHAR) ### Question: What is the shooting preference of Matthew Myers, acquired in 2010? ### Answer: SELECT shoots FROM table_name_99 WHERE acquired = 2010 AND player = "matthew myers" |
In what year was player Bruce Graham acquired? | CREATE TABLE table_name_18 (acquired VARCHAR, player VARCHAR) | SELECT acquired FROM table_name_18 WHERE player = "bruce graham" | ### Context: CREATE TABLE table_name_18 (acquired VARCHAR, player VARCHAR) ### Question: In what year was player Bruce Graham acquired? ### Answer: SELECT acquired FROM table_name_18 WHERE player = "bruce graham" |
Name the D 42 √ when it has D 44 √ of r 36 √ | CREATE TABLE table_name_67 (d_42_√ VARCHAR, d_44_√ VARCHAR) | SELECT d_42_√ FROM table_name_67 WHERE d_44_√ = "r 36 √" | ### Context: CREATE TABLE table_name_67 (d_42_√ VARCHAR, d_44_√ VARCHAR) ### Question: Name the D 42 √ when it has D 44 √ of r 36 √ ### Answer: SELECT d_42_√ FROM table_name_67 WHERE d_44_√ = "r 36 √" |
Name the D 45 O that has D 46 O of d 26 | CREATE TABLE table_name_30 (d_45_o VARCHAR, d_46_o VARCHAR) | SELECT d_45_o FROM table_name_30 WHERE d_46_o = "d 26" | ### Context: CREATE TABLE table_name_30 (d_45_o VARCHAR, d_46_o VARCHAR) ### Question: Name the D 45 O that has D 46 O of d 26 ### Answer: SELECT d_45_o FROM table_name_30 WHERE d_46_o = "d 26" |
Name the least goals for goal difference of 7 and losses more than 13 | CREATE TABLE table_name_29 (goals_against INTEGER, goal_difference VARCHAR, losses VARCHAR) | SELECT MIN(goals_against) FROM table_name_29 WHERE goal_difference = 7 AND losses > 13 | ### Context: CREATE TABLE table_name_29 (goals_against INTEGER, goal_difference VARCHAR, losses VARCHAR) ### Question: Name the least goals for goal difference of 7 and losses more than 13 ### Answer: SELECT MIN(goals_against) FROM table_name_29 WHERE goal_difference = 7 AND losses > 13 |
Tell me the total number of positions with goal difference more than -17 and played less than 38 | CREATE TABLE table_name_12 (position VARCHAR, goal_difference VARCHAR, played VARCHAR) | SELECT COUNT(position) FROM table_name_12 WHERE goal_difference > -17 AND played < 38 | ### Context: CREATE TABLE table_name_12 (position VARCHAR, goal_difference VARCHAR, played VARCHAR) ### Question: Tell me the total number of positions with goal difference more than -17 and played less than 38 ### Answer: SELECT COUNT(position) FROM table_name_12 WHERE goal_difference > -17 AND played < 38 |
What was the attendance when South Melbourne played as the home team? | CREATE TABLE table_name_21 (crowd INTEGER, home_team VARCHAR) | SELECT MIN(crowd) FROM table_name_21 WHERE home_team = "south melbourne" | ### Context: CREATE TABLE table_name_21 (crowd INTEGER, home_team VARCHAR) ### Question: What was the attendance when South Melbourne played as the home team? ### Answer: SELECT MIN(crowd) FROM table_name_21 WHERE home_team = "south melbourne" |
What was the attendance when Footscray played as the away team? | CREATE TABLE table_name_80 (crowd VARCHAR, away_team VARCHAR) | SELECT COUNT(crowd) FROM table_name_80 WHERE away_team = "footscray" | ### Context: CREATE TABLE table_name_80 (crowd VARCHAR, away_team VARCHAR) ### Question: What was the attendance when Footscray played as the away team? ### Answer: SELECT COUNT(crowd) FROM table_name_80 WHERE away_team = "footscray" |
What is the lowest quantity for GWR Nos. 696, 779, 93 5 from the manufacturer Peckett and Sons? | CREATE TABLE table_name_72 (quantity INTEGER, manufacturer VARCHAR, gwr_nos VARCHAR) | SELECT MIN(quantity) FROM table_name_72 WHERE manufacturer = "peckett and sons" AND gwr_nos = "696, 779, 93 5" | ### Context: CREATE TABLE table_name_72 (quantity INTEGER, manufacturer VARCHAR, gwr_nos VARCHAR) ### Question: What is the lowest quantity for GWR Nos. 696, 779, 93 5 from the manufacturer Peckett and Sons? ### Answer: SELECT MIN(quantity) FROM table_name_72 WHERE manufacturer = "peckett and sons" AND gwr_nos = "696, 779, 93 5" |
What is the lowest capacity with an opening larger than 2015 in Trabzon? | CREATE TABLE table_name_95 (capacity INTEGER, opening VARCHAR, city VARCHAR) | SELECT MIN(capacity) FROM table_name_95 WHERE opening > 2015 AND city = "trabzon" | ### Context: CREATE TABLE table_name_95 (capacity INTEGER, opening VARCHAR, city VARCHAR) ### Question: What is the lowest capacity with an opening larger than 2015 in Trabzon? ### Answer: SELECT MIN(capacity) FROM table_name_95 WHERE opening > 2015 AND city = "trabzon" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.