question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
who had the high rebounds when the game number was 6?
CREATE TABLE table_name_70 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_name_70 WHERE game = 6
### Context: CREATE TABLE table_name_70 (high_rebounds VARCHAR, game VARCHAR) ### Question: who had the high rebounds when the game number was 6? ### Answer: SELECT high_rebounds FROM table_name_70 WHERE game = 6
What was the score when the NY Islanders was the visiting team?
CREATE TABLE table_name_67 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_67 WHERE visitor = "ny islanders"
### Context: CREATE TABLE table_name_67 (score VARCHAR, visitor VARCHAR) ### Question: What was the score when the NY Islanders was the visiting team? ### Answer: SELECT score FROM table_name_67 WHERE visitor = "ny islanders"
What was the record when the visiting team was Ottawa?
CREATE TABLE table_name_54 (record VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_54 WHERE visitor = "ottawa"
### Context: CREATE TABLE table_name_54 (record VARCHAR, visitor VARCHAR) ### Question: What was the record when the visiting team was Ottawa? ### Answer: SELECT record FROM table_name_54 WHERE visitor = "ottawa"
What is the full number of Total Seats with a constituency seat number bigger than 0 with the Liberal Democrat party, and the Regional seat number is smaller than 6?
CREATE TABLE table_name_26 (total_seats INTEGER, regional_seats VARCHAR, constituency_seats VARCHAR, party VARCHAR)
SELECT SUM(total_seats) FROM table_name_26 WHERE constituency_seats > 0 AND party = "liberal democrat" AND regional_seats < 6
### Context: CREATE TABLE table_name_26 (total_seats INTEGER, regional_seats VARCHAR, constituency_seats VARCHAR, party VARCHAR) ### Question: What is the full number of Total Seats with a constituency seat number bigger than 0 with the Liberal Democrat party, and the Regional seat number is smaller than 6? ### Answer:...
How many regional seats were there with the SNP party and where the number of total seats was bigger than 46?
CREATE TABLE table_name_77 (regional_seats VARCHAR, party VARCHAR, total_seats VARCHAR)
SELECT COUNT(regional_seats) FROM table_name_77 WHERE party = "snp" AND total_seats > 46
### Context: CREATE TABLE table_name_77 (regional_seats VARCHAR, party VARCHAR, total_seats VARCHAR) ### Question: How many regional seats were there with the SNP party and where the number of total seats was bigger than 46? ### Answer: SELECT COUNT(regional_seats) FROM table_name_77 WHERE party = "snp" AND total_seats...
Which team was the visitor on January 10?
CREATE TABLE table_name_69 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_69 WHERE date = "january 10"
### Context: CREATE TABLE table_name_69 (visitor VARCHAR, date VARCHAR) ### Question: Which team was the visitor on January 10? ### Answer: SELECT visitor FROM table_name_69 WHERE date = "january 10"
What is the average Draw when the Place is larger than 5?
CREATE TABLE table_name_65 (draw INTEGER, place INTEGER)
SELECT AVG(draw) FROM table_name_65 WHERE place > 5
### Context: CREATE TABLE table_name_65 (draw INTEGER, place INTEGER) ### Question: What is the average Draw when the Place is larger than 5? ### Answer: SELECT AVG(draw) FROM table_name_65 WHERE place > 5
What is the lowest Draw when the Artist is Stine Findsen and the Points are larger than 42?
CREATE TABLE table_name_95 (draw INTEGER, artist VARCHAR, points VARCHAR)
SELECT MIN(draw) FROM table_name_95 WHERE artist = "stine findsen" AND points > 42
### Context: CREATE TABLE table_name_95 (draw INTEGER, artist VARCHAR, points VARCHAR) ### Question: What is the lowest Draw when the Artist is Stine Findsen and the Points are larger than 42? ### Answer: SELECT MIN(draw) FROM table_name_95 WHERE artist = "stine findsen" AND points > 42
What is the Draw that has Points larger than 44 and a Place larger than 1?
CREATE TABLE table_name_92 (draw INTEGER, points VARCHAR, place VARCHAR)
SELECT AVG(draw) FROM table_name_92 WHERE points > 44 AND place > 1
### Context: CREATE TABLE table_name_92 (draw INTEGER, points VARCHAR, place VARCHAR) ### Question: What is the Draw that has Points larger than 44 and a Place larger than 1? ### Answer: SELECT AVG(draw) FROM table_name_92 WHERE points > 44 AND place > 1
What is the position of the player from round 2 from Sweden?
CREATE TABLE table_name_21 (position VARCHAR, round VARCHAR, nationality VARCHAR)
SELECT position FROM table_name_21 WHERE round = 2 AND nationality = "sweden"
### Context: CREATE TABLE table_name_21 (position VARCHAR, round VARCHAR, nationality VARCHAR) ### Question: What is the position of the player from round 2 from Sweden? ### Answer: SELECT position FROM table_name_21 WHERE round = 2 AND nationality = "sweden"
What is the highest round of Ian Cole, who played position d from the United States?
CREATE TABLE table_name_35 (round INTEGER, player VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT MAX(round) FROM table_name_35 WHERE position = "d" AND nationality = "united states" AND player = "ian cole"
### Context: CREATE TABLE table_name_35 (round INTEGER, player VARCHAR, position VARCHAR, nationality VARCHAR) ### Question: What is the highest round of Ian Cole, who played position d from the United States? ### Answer: SELECT MAX(round) FROM table_name_35 WHERE position = "d" AND nationality = "united states" AND pl...
Who is the player from Denmark who plays position c?
CREATE TABLE table_name_68 (player VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT player FROM table_name_68 WHERE position = "c" AND nationality = "denmark"
### Context: CREATE TABLE table_name_68 (player VARCHAR, position VARCHAR, nationality VARCHAR) ### Question: Who is the player from Denmark who plays position c? ### Answer: SELECT player FROM table_name_68 WHERE position = "c" AND nationality = "denmark"
Which college/junior/club team (league) did Brett Sonne play in?
CREATE TABLE table_name_45 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_45 WHERE player = "brett sonne"
### Context: CREATE TABLE table_name_45 (college_junior_club_team__league_ VARCHAR, player VARCHAR) ### Question: Which college/junior/club team (league) did Brett Sonne play in? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_45 WHERE player = "brett sonne"
Which date has a To par of –12?
CREATE TABLE table_name_53 (date VARCHAR, to_par VARCHAR)
SELECT date FROM table_name_53 WHERE to_par = "–12"
### Context: CREATE TABLE table_name_53 (date VARCHAR, to_par VARCHAR) ### Question: Which date has a To par of –12? ### Answer: SELECT date FROM table_name_53 WHERE to_par = "–12"
How many attended the game on December 16, 2001?
CREATE TABLE table_name_92 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_92 WHERE date = "december 16, 2001"
### Context: CREATE TABLE table_name_92 (attendance VARCHAR, date VARCHAR) ### Question: How many attended the game on December 16, 2001? ### Answer: SELECT attendance FROM table_name_92 WHERE date = "december 16, 2001"
What week is a bye week?
CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_64 WHERE date = "bye"
### Context: CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR) ### Question: What week is a bye week? ### Answer: SELECT week FROM table_name_64 WHERE date = "bye"
How many years entered service when there were 13 locomotives?
CREATE TABLE table_name_89 (entered_service VARCHAR, locomotive VARCHAR)
SELECT COUNT(entered_service) FROM table_name_89 WHERE locomotive = "13"
### Context: CREATE TABLE table_name_89 (entered_service VARCHAR, locomotive VARCHAR) ### Question: How many years entered service when there were 13 locomotives? ### Answer: SELECT COUNT(entered_service) FROM table_name_89 WHERE locomotive = "13"
Which locomotive had a 2-8-2t type, entered service year prior to 1915, and which was built after 1911?
CREATE TABLE table_name_9 (locomotive VARCHAR, built VARCHAR, type VARCHAR, entered_service VARCHAR)
SELECT locomotive FROM table_name_9 WHERE type = "2-8-2t" AND entered_service < 1915 AND built > 1911
### Context: CREATE TABLE table_name_9 (locomotive VARCHAR, built VARCHAR, type VARCHAR, entered_service VARCHAR) ### Question: Which locomotive had a 2-8-2t type, entered service year prior to 1915, and which was built after 1911? ### Answer: SELECT locomotive FROM table_name_9 WHERE type = "2-8-2t" AND entered_servic...
What is the highest number of wins with a goal difference less than 4 at the Villarreal CF and more than 38 played?
CREATE TABLE table_name_82 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
SELECT MAX(wins) FROM table_name_82 WHERE goal_difference < 4 AND club = "villarreal cf" AND played > 38
### Context: CREATE TABLE table_name_82 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR) ### Question: What is the highest number of wins with a goal difference less than 4 at the Villarreal CF and more than 38 played? ### Answer: SELECT MAX(wins) FROM table_name_82 WHERE goal_difference < 4 AND cl...
What is the highest number played with a goal difference less than -27?
CREATE TABLE table_name_57 (played INTEGER, goal_difference INTEGER)
SELECT MAX(played) FROM table_name_57 WHERE goal_difference < -27
### Context: CREATE TABLE table_name_57 (played INTEGER, goal_difference INTEGER) ### Question: What is the highest number played with a goal difference less than -27? ### Answer: SELECT MAX(played) FROM table_name_57 WHERE goal_difference < -27
What is the highest number of loss with a 7 position and more than 45 goals?
CREATE TABLE table_name_73 (losses INTEGER, position VARCHAR, goals_for VARCHAR)
SELECT MAX(losses) FROM table_name_73 WHERE position = 7 AND goals_for > 45
### Context: CREATE TABLE table_name_73 (losses INTEGER, position VARCHAR, goals_for VARCHAR) ### Question: What is the highest number of loss with a 7 position and more than 45 goals? ### Answer: SELECT MAX(losses) FROM table_name_73 WHERE position = 7 AND goals_for > 45
What is the highest position with less than 17 losses, more than 57 goals, and a goal difference less than 4?
CREATE TABLE table_name_39 (position INTEGER, goal_difference VARCHAR, losses VARCHAR, goals_for VARCHAR)
SELECT MAX(position) FROM table_name_39 WHERE losses < 17 AND goals_for > 57 AND goal_difference < 4
### Context: CREATE TABLE table_name_39 (position INTEGER, goal_difference VARCHAR, losses VARCHAR, goals_for VARCHAR) ### Question: What is the highest position with less than 17 losses, more than 57 goals, and a goal difference less than 4? ### Answer: SELECT MAX(position) FROM table_name_39 WHERE losses < 17 AND goa...
What is the average goal difference with 51 goals scored against and less than 17 losses?
CREATE TABLE table_name_4 (goal_difference INTEGER, goals_against VARCHAR, losses VARCHAR)
SELECT AVG(goal_difference) FROM table_name_4 WHERE goals_against = 51 AND losses < 17
### Context: CREATE TABLE table_name_4 (goal_difference INTEGER, goals_against VARCHAR, losses VARCHAR) ### Question: What is the average goal difference with 51 goals scored against and less than 17 losses? ### Answer: SELECT AVG(goal_difference) FROM table_name_4 WHERE goals_against = 51 AND losses < 17
What is the lowest position with 32-6 points and less then 59 goals when there are more than 38 played?
CREATE TABLE table_name_37 (position INTEGER, played VARCHAR, points VARCHAR, goals_against VARCHAR)
SELECT MIN(position) FROM table_name_37 WHERE points = "32-6" AND goals_against < 59 AND played > 38
### Context: CREATE TABLE table_name_37 (position INTEGER, played VARCHAR, points VARCHAR, goals_against VARCHAR) ### Question: What is the lowest position with 32-6 points and less then 59 goals when there are more than 38 played? ### Answer: SELECT MIN(position) FROM table_name_37 WHERE points = "32-6" AND goals_agai...
What was the final score of the Australian Open?
CREATE TABLE table_name_13 (score_in_the_final VARCHAR, championship VARCHAR)
SELECT score_in_the_final FROM table_name_13 WHERE championship = "australian open"
### Context: CREATE TABLE table_name_13 (score_in_the_final VARCHAR, championship VARCHAR) ### Question: What was the final score of the Australian Open? ### Answer: SELECT score_in_the_final FROM table_name_13 WHERE championship = "australian open"
What record was set by walter brennan before 1941?
CREATE TABLE table_name_30 (record_set VARCHAR, actor VARCHAR, year VARCHAR)
SELECT record_set FROM table_name_30 WHERE actor = "walter brennan" AND year < 1941
### Context: CREATE TABLE table_name_30 (record_set VARCHAR, actor VARCHAR, year VARCHAR) ### Question: What record was set by walter brennan before 1941? ### Answer: SELECT record_set FROM table_name_30 WHERE actor = "walter brennan" AND year < 1941
What is the earliest year for ordinary people to appear in the notes?
CREATE TABLE table_name_83 (year INTEGER, notes VARCHAR)
SELECT MIN(year) FROM table_name_83 WHERE notes = "ordinary people"
### Context: CREATE TABLE table_name_83 (year INTEGER, notes VARCHAR) ### Question: What is the earliest year for ordinary people to appear in the notes? ### Answer: SELECT MIN(year) FROM table_name_83 WHERE notes = "ordinary people"
what is the engine when the rounds ar all, the tyre is m and the driver is david coulthard?
CREATE TABLE table_name_98 (engine_† VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR)
SELECT engine_† FROM table_name_98 WHERE rounds = "all" AND tyre = "m" AND driver = "david coulthard"
### Context: CREATE TABLE table_name_98 (engine_† VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR) ### Question: what is the engine when the rounds ar all, the tyre is m and the driver is david coulthard? ### Answer: SELECT engine_† FROM table_name_98 WHERE rounds = "all" AND tyre = "m" AND driver = "david coulth...
who is the entrant when the engine is bmw p82?
CREATE TABLE table_name_92 (entrant VARCHAR, engine_† VARCHAR)
SELECT entrant FROM table_name_92 WHERE engine_† = "bmw p82"
### Context: CREATE TABLE table_name_92 (entrant VARCHAR, engine_† VARCHAR) ### Question: who is the entrant when the engine is bmw p82? ### Answer: SELECT entrant FROM table_name_92 WHERE engine_† = "bmw p82"
what is the rounds when the engine is mercedes fo110m?
CREATE TABLE table_name_17 (rounds VARCHAR, engine_† VARCHAR)
SELECT rounds FROM table_name_17 WHERE engine_† = "mercedes fo110m"
### Context: CREATE TABLE table_name_17 (rounds VARCHAR, engine_† VARCHAR) ### Question: what is the rounds when the engine is mercedes fo110m? ### Answer: SELECT rounds FROM table_name_17 WHERE engine_† = "mercedes fo110m"
who is the driver when the engine is mercedes fo110m?
CREATE TABLE table_name_1 (driver VARCHAR, engine_† VARCHAR)
SELECT driver FROM table_name_1 WHERE engine_† = "mercedes fo110m"
### Context: CREATE TABLE table_name_1 (driver VARCHAR, engine_† VARCHAR) ### Question: who is the driver when the engine is mercedes fo110m? ### Answer: SELECT driver FROM table_name_1 WHERE engine_† = "mercedes fo110m"
what is the tyre when the engine is asiatech at02 and the driver is alex yoong?
CREATE TABLE table_name_47 (tyre VARCHAR, engine_† VARCHAR, driver VARCHAR)
SELECT tyre FROM table_name_47 WHERE engine_† = "asiatech at02" AND driver = "alex yoong"
### Context: CREATE TABLE table_name_47 (tyre VARCHAR, engine_† VARCHAR, driver VARCHAR) ### Question: what is the tyre when the engine is asiatech at02 and the driver is alex yoong? ### Answer: SELECT tyre FROM table_name_47 WHERE engine_† = "asiatech at02" AND driver = "alex yoong"
what is the chassis when the tyre is b, the engine is ferrari 050 ferrari 051 and the driver is rubens barrichello?
CREATE TABLE table_name_14 (chassis VARCHAR, driver VARCHAR, tyre VARCHAR, engine_† VARCHAR)
SELECT chassis FROM table_name_14 WHERE tyre = "b" AND engine_† = "ferrari 050 ferrari 051" AND driver = "rubens barrichello"
### Context: CREATE TABLE table_name_14 (chassis VARCHAR, driver VARCHAR, tyre VARCHAR, engine_† VARCHAR) ### Question: what is the chassis when the tyre is b, the engine is ferrari 050 ferrari 051 and the driver is rubens barrichello? ### Answer: SELECT chassis FROM table_name_14 WHERE tyre = "b" AND engine_† = "ferra...
What is the rank of the rider with time of 1:41.40.55?
CREATE TABLE table_name_24 (rank INTEGER, time VARCHAR)
SELECT SUM(rank) FROM table_name_24 WHERE time = "1:41.40.55"
### Context: CREATE TABLE table_name_24 (rank INTEGER, time VARCHAR) ### Question: What is the rank of the rider with time of 1:41.40.55? ### Answer: SELECT SUM(rank) FROM table_name_24 WHERE time = "1:41.40.55"
What is the time of the rider with a 398cc yamaha?
CREATE TABLE table_name_85 (time VARCHAR, team VARCHAR)
SELECT time FROM table_name_85 WHERE team = "398cc yamaha"
### Context: CREATE TABLE table_name_85 (time VARCHAR, team VARCHAR) ### Question: What is the time of the rider with a 398cc yamaha? ### Answer: SELECT time FROM table_name_85 WHERE team = "398cc yamaha"
What is the time of the rider ranked 6?
CREATE TABLE table_name_76 (time VARCHAR, rank VARCHAR)
SELECT time FROM table_name_76 WHERE rank = 6
### Context: CREATE TABLE table_name_76 (time VARCHAR, rank VARCHAR) ### Question: What is the time of the rider ranked 6? ### Answer: SELECT time FROM table_name_76 WHERE rank = 6
Who is the rider with a 399cc Kawasaki?
CREATE TABLE table_name_94 (rider VARCHAR, team VARCHAR)
SELECT rider FROM table_name_94 WHERE team = "399cc kawasaki"
### Context: CREATE TABLE table_name_94 (rider VARCHAR, team VARCHAR) ### Question: Who is the rider with a 399cc Kawasaki? ### Answer: SELECT rider FROM table_name_94 WHERE team = "399cc kawasaki"
Where did Tyler Haws, 2009 Utah Mr. Basketball, go to high school?
CREATE TABLE table_name_89 (high_school VARCHAR, utah_mr_basketball VARCHAR, year VARCHAR)
SELECT high_school FROM table_name_89 WHERE utah_mr_basketball = "tyler haws" AND year = 2009
### Context: CREATE TABLE table_name_89 (high_school VARCHAR, utah_mr_basketball VARCHAR, year VARCHAR) ### Question: Where did Tyler Haws, 2009 Utah Mr. Basketball, go to high school? ### Answer: SELECT high_school FROM table_name_89 WHERE utah_mr_basketball = "tyler haws" AND year = 2009
How much have players earned with 14 wins ranked below 3?
CREATE TABLE table_name_5 (earnings__ VARCHAR, wins VARCHAR, rank VARCHAR)
SELECT COUNT(earnings__) AS $__ FROM table_name_5 WHERE wins = 14 AND rank > 3
### Context: CREATE TABLE table_name_5 (earnings__ VARCHAR, wins VARCHAR, rank VARCHAR) ### Question: How much have players earned with 14 wins ranked below 3? ### Answer: SELECT COUNT(earnings__) AS $__ FROM table_name_5 WHERE wins = 14 AND rank > 3
Who built the car that ran out of fuel before 28 laps?
CREATE TABLE table_name_47 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT constructor FROM table_name_47 WHERE laps < 28 AND time_retired = "out of fuel"
### Context: CREATE TABLE table_name_47 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR) ### Question: Who built the car that ran out of fuel before 28 laps? ### Answer: SELECT constructor FROM table_name_47 WHERE laps < 28 AND time_retired = "out of fuel"
What is the high lap total for cards with a grid larger than 21, and a Time/Retired of +2 laps?
CREATE TABLE table_name_91 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
SELECT MAX(laps) FROM table_name_91 WHERE grid > 21 AND time_retired = "+2 laps"
### Context: CREATE TABLE table_name_91 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) ### Question: What is the high lap total for cards with a grid larger than 21, and a Time/Retired of +2 laps? ### Answer: SELECT MAX(laps) FROM table_name_91 WHERE grid > 21 AND time_retired = "+2 laps"
Which SECR numbers have a class of b1?
CREATE TABLE table_name_36 (secr_numbers VARCHAR, class VARCHAR)
SELECT secr_numbers FROM table_name_36 WHERE class = "b1"
### Context: CREATE TABLE table_name_36 (secr_numbers VARCHAR, class VARCHAR) ### Question: Which SECR numbers have a class of b1? ### Answer: SELECT secr_numbers FROM table_name_36 WHERE class = "b1"
Which class was made in 1880?
CREATE TABLE table_name_34 (class VARCHAR, year_made VARCHAR)
SELECT class FROM table_name_34 WHERE year_made = "1880"
### Context: CREATE TABLE table_name_34 (class VARCHAR, year_made VARCHAR) ### Question: Which class was made in 1880? ### Answer: SELECT class FROM table_name_34 WHERE year_made = "1880"
What is the date of the game when attendance is more than 20,682?
CREATE TABLE table_name_59 (date VARCHAR, attendance INTEGER)
SELECT date FROM table_name_59 WHERE attendance > 20 OFFSET 682
### Context: CREATE TABLE table_name_59 (date VARCHAR, attendance INTEGER) ### Question: What is the date of the game when attendance is more than 20,682? ### Answer: SELECT date FROM table_name_59 WHERE attendance > 20 OFFSET 682
Which home team played the Away team from Richmond?
CREATE TABLE table_name_29 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_29 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_29 (home_team VARCHAR, away_team VARCHAR) ### Question: Which home team played the Away team from Richmond? ### Answer: SELECT home_team FROM table_name_29 WHERE away_team = "richmond"
What was the home teams score while playing the away team of south melbourne?
CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team AS score FROM table_name_73 WHERE away_team = "south melbourne"
### Context: CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home teams score while playing the away team of south melbourne? ### Answer: SELECT home_team AS score FROM table_name_73 WHERE away_team = "south melbourne"
What was the score of the away team while playing at the arden street oval?
CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_53 WHERE venue = "arden street oval"
### Context: CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR) ### Question: What was the score of the away team while playing at the arden street oval? ### Answer: SELECT away_team AS score FROM table_name_53 WHERE venue = "arden street oval"
What are the rounds for the B tyres and Ferrari 053 engine +?
CREATE TABLE table_name_50 (rounds VARCHAR, tyre VARCHAR, engine_† VARCHAR)
SELECT rounds FROM table_name_50 WHERE tyre = "b" AND engine_† = "ferrari 053"
### Context: CREATE TABLE table_name_50 (rounds VARCHAR, tyre VARCHAR, engine_† VARCHAR) ### Question: What are the rounds for the B tyres and Ferrari 053 engine +? ### Answer: SELECT rounds FROM table_name_50 WHERE tyre = "b" AND engine_† = "ferrari 053"
What kind of chassis does Ricardo Zonta have?
CREATE TABLE table_name_30 (chassis VARCHAR, driver VARCHAR)
SELECT chassis FROM table_name_30 WHERE driver = "ricardo zonta"
### Context: CREATE TABLE table_name_30 (chassis VARCHAR, driver VARCHAR) ### Question: What kind of chassis does Ricardo Zonta have? ### Answer: SELECT chassis FROM table_name_30 WHERE driver = "ricardo zonta"
What kind of free practice is there with a Ford RS2 engine +?
CREATE TABLE table_name_8 (free_practice_driver_s_ VARCHAR, engine_† VARCHAR)
SELECT free_practice_driver_s_ FROM table_name_8 WHERE engine_† = "ford rs2"
### Context: CREATE TABLE table_name_8 (free_practice_driver_s_ VARCHAR, engine_† VARCHAR) ### Question: What kind of free practice is there with a Ford RS2 engine +? ### Answer: SELECT free_practice_driver_s_ FROM table_name_8 WHERE engine_† = "ford rs2"
What is the total number of matches with a loss less than 5 in the 2008/2009 season and has a draw larger than 9?
CREATE TABLE table_name_53 (matches VARCHAR, draw VARCHAR, lost VARCHAR, season VARCHAR)
SELECT COUNT(matches) FROM table_name_53 WHERE lost < 5 AND season = "2008/2009" AND draw > 9
### Context: CREATE TABLE table_name_53 (matches VARCHAR, draw VARCHAR, lost VARCHAR, season VARCHAR) ### Question: What is the total number of matches with a loss less than 5 in the 2008/2009 season and has a draw larger than 9? ### Answer: SELECT COUNT(matches) FROM table_name_53 WHERE lost < 5 AND season = "2008/200...
What competition has a score greater than 30, a draw less than 5, and a loss larger than 10?
CREATE TABLE table_name_88 (competition VARCHAR, lost VARCHAR, points VARCHAR, draw VARCHAR)
SELECT competition FROM table_name_88 WHERE points > 30 AND draw < 5 AND lost > 10
### Context: CREATE TABLE table_name_88 (competition VARCHAR, lost VARCHAR, points VARCHAR, draw VARCHAR) ### Question: What competition has a score greater than 30, a draw less than 5, and a loss larger than 10? ### Answer: SELECT competition FROM table_name_88 WHERE points > 30 AND draw < 5 AND lost > 10
What is the sum of the losses that a match score larger than 26, a points score of 62, and a draw greater than 5?
CREATE TABLE table_name_6 (lost INTEGER, draw VARCHAR, matches VARCHAR, points VARCHAR)
SELECT SUM(lost) FROM table_name_6 WHERE matches > 26 AND points = 62 AND draw > 5
### Context: CREATE TABLE table_name_6 (lost INTEGER, draw VARCHAR, matches VARCHAR, points VARCHAR) ### Question: What is the sum of the losses that a match score larger than 26, a points score of 62, and a draw greater than 5? ### Answer: SELECT SUM(lost) FROM table_name_6 WHERE matches > 26 AND points = 62 AND draw ...
What is the record for the game on January 19?
CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_92 WHERE date = "january 19"
### Context: CREATE TABLE table_name_92 (record VARCHAR, date VARCHAR) ### Question: What is the record for the game on January 19? ### Answer: SELECT record FROM table_name_92 WHERE date = "january 19"
What is the score of the game on January 12?
CREATE TABLE table_name_46 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_46 WHERE date = "january 12"
### Context: CREATE TABLE table_name_46 (score VARCHAR, date VARCHAR) ### Question: What is the score of the game on January 12? ### Answer: SELECT score FROM table_name_46 WHERE date = "january 12"
Who was the home team when the vistor team was the Montreal Canadiens on February 12?
CREATE TABLE table_name_60 (home VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT home FROM table_name_60 WHERE visitor = "montreal canadiens" AND date = "february 12"
### Context: CREATE TABLE table_name_60 (home VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: Who was the home team when the vistor team was the Montreal Canadiens on February 12? ### Answer: SELECT home FROM table_name_60 WHERE visitor = "montreal canadiens" AND date = "february 12"
Tell me the city of license with frequency of Mhz of 90.3 fm
CREATE TABLE table_name_26 (city_of_license VARCHAR, frequency_mhz VARCHAR)
SELECT city_of_license FROM table_name_26 WHERE frequency_mhz = "90.3 fm"
### Context: CREATE TABLE table_name_26 (city_of_license VARCHAR, frequency_mhz VARCHAR) ### Question: Tell me the city of license with frequency of Mhz of 90.3 fm ### Answer: SELECT city_of_license FROM table_name_26 WHERE frequency_mhz = "90.3 fm"
Name the call sign for ERP W of 4
CREATE TABLE table_name_20 (call_sign VARCHAR, erp_w VARCHAR)
SELECT call_sign FROM table_name_20 WHERE erp_w = 4
### Context: CREATE TABLE table_name_20 (call_sign VARCHAR, erp_w VARCHAR) ### Question: Name the call sign for ERP W of 4 ### Answer: SELECT call_sign FROM table_name_20 WHERE erp_w = 4
Name the frequence MHz for ERP W of 55
CREATE TABLE table_name_80 (frequency_mhz VARCHAR, erp_w VARCHAR)
SELECT frequency_mhz FROM table_name_80 WHERE erp_w = 55
### Context: CREATE TABLE table_name_80 (frequency_mhz VARCHAR, erp_w VARCHAR) ### Question: Name the frequence MHz for ERP W of 55 ### Answer: SELECT frequency_mhz FROM table_name_80 WHERE erp_w = 55
Name the FCC info for call sign of w279at
CREATE TABLE table_name_17 (fcc_info VARCHAR, call_sign VARCHAR)
SELECT fcc_info FROM table_name_17 WHERE call_sign = "w279at"
### Context: CREATE TABLE table_name_17 (fcc_info VARCHAR, call_sign VARCHAR) ### Question: Name the FCC info for call sign of w279at ### Answer: SELECT fcc_info FROM table_name_17 WHERE call_sign = "w279at"
Name the call sign for ERP W of 27
CREATE TABLE table_name_65 (call_sign VARCHAR, erp_w VARCHAR)
SELECT call_sign FROM table_name_65 WHERE erp_w = 27
### Context: CREATE TABLE table_name_65 (call_sign VARCHAR, erp_w VARCHAR) ### Question: Name the call sign for ERP W of 27 ### Answer: SELECT call_sign FROM table_name_65 WHERE erp_w = 27
What was the date of the game that had a score of 3 – 1?
CREATE TABLE table_name_60 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_60 WHERE score = "3 – 1"
### Context: CREATE TABLE table_name_60 (date VARCHAR, score VARCHAR) ### Question: What was the date of the game that had a score of 3 – 1? ### Answer: SELECT date FROM table_name_60 WHERE score = "3 – 1"
What was the score of the game when the Boston Bruins were the visiting team?
CREATE TABLE table_name_75 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_75 WHERE visitor = "boston bruins"
### Context: CREATE TABLE table_name_75 (score VARCHAR, visitor VARCHAR) ### Question: What was the score of the game when the Boston Bruins were the visiting team? ### Answer: SELECT score FROM table_name_75 WHERE visitor = "boston bruins"
What was the score with a 16–14–6 record?
CREATE TABLE table_name_37 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_37 WHERE record = "16–14–6"
### Context: CREATE TABLE table_name_37 (score VARCHAR, record VARCHAR) ### Question: What was the score with a 16–14–6 record? ### Answer: SELECT score FROM table_name_37 WHERE record = "16–14–6"
What was the SECR number of the item made in 1861?
CREATE TABLE table_name_31 (secr_numbers VARCHAR, year_made VARCHAR)
SELECT secr_numbers FROM table_name_31 WHERE year_made = "1861"
### Context: CREATE TABLE table_name_31 (secr_numbers VARCHAR, year_made VARCHAR) ### Question: What was the SECR number of the item made in 1861? ### Answer: SELECT secr_numbers FROM table_name_31 WHERE year_made = "1861"
Name the venue with a home team of geelong
CREATE TABLE table_name_72 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_72 WHERE home_team = "geelong"
### Context: CREATE TABLE table_name_72 (venue VARCHAR, home_team VARCHAR) ### Question: Name the venue with a home team of geelong ### Answer: SELECT venue FROM table_name_72 WHERE home_team = "geelong"
When the Venue was Punt Road Oval, who was the Home Team?
CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_47 WHERE venue = "punt road oval"
### Context: CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR) ### Question: When the Venue was Punt Road Oval, who was the Home Team? ### Answer: SELECT home_team FROM table_name_47 WHERE venue = "punt road oval"
When Melbourne was the Away team, what was their score?
CREATE TABLE table_name_75 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_75 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_75 (away_team VARCHAR) ### Question: When Melbourne was the Away team, what was their score? ### Answer: SELECT away_team AS score FROM table_name_75 WHERE away_team = "melbourne"
Who is driver of the d6 chassis?
CREATE TABLE table_name_99 (driver VARCHAR, chassis VARCHAR)
SELECT driver FROM table_name_99 WHERE chassis = "d6"
### Context: CREATE TABLE table_name_99 (driver VARCHAR, chassis VARCHAR) ### Question: Who is driver of the d6 chassis? ### Answer: SELECT driver FROM table_name_99 WHERE chassis = "d6"
Who is the constructor for driver Niki Lauda and a chassis of mp4/1c?
CREATE TABLE table_name_91 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_91 WHERE chassis = "mp4/1c" AND driver = "niki lauda"
### Context: CREATE TABLE table_name_91 (constructor VARCHAR, chassis VARCHAR, driver VARCHAR) ### Question: Who is the constructor for driver Niki Lauda and a chassis of mp4/1c? ### Answer: SELECT constructor FROM table_name_91 WHERE chassis = "mp4/1c" AND driver = "niki lauda"
Who is the Constructor for driver Piercarlo Ghinzani and a Ford cosworth dfv 3.0 v8 engine?
CREATE TABLE table_name_42 (constructor VARCHAR, driver VARCHAR, engine VARCHAR)
SELECT constructor FROM table_name_42 WHERE driver = "piercarlo ghinzani" AND engine = "ford cosworth dfv 3.0 v8"
### Context: CREATE TABLE table_name_42 (constructor VARCHAR, driver VARCHAR, engine VARCHAR) ### Question: Who is the Constructor for driver Piercarlo Ghinzani and a Ford cosworth dfv 3.0 v8 engine? ### Answer: SELECT constructor FROM table_name_42 WHERE driver = "piercarlo ghinzani" AND engine = "ford cosworth dfv 3....
When Jean Alesi had laps less than 24, what was his highest grid?
CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT MAX(grid) FROM table_name_75 WHERE driver = "jean alesi" AND laps < 24
### Context: CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR) ### Question: When Jean Alesi had laps less than 24, what was his highest grid? ### Answer: SELECT MAX(grid) FROM table_name_75 WHERE driver = "jean alesi" AND laps < 24
How many laps did Ricardo Zonta drive with a grid less than 14?
CREATE TABLE table_name_15 (laps INTEGER, grid VARCHAR, driver VARCHAR)
SELECT SUM(laps) FROM table_name_15 WHERE grid < 14 AND driver = "ricardo zonta"
### Context: CREATE TABLE table_name_15 (laps INTEGER, grid VARCHAR, driver VARCHAR) ### Question: How many laps did Ricardo Zonta drive with a grid less than 14? ### Answer: SELECT SUM(laps) FROM table_name_15 WHERE grid < 14 AND driver = "ricardo zonta"
What was Alexander Wurz's highest grid with laps of less than 25?
CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT MAX(grid) FROM table_name_75 WHERE driver = "alexander wurz" AND laps < 25
### Context: CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR) ### Question: What was Alexander Wurz's highest grid with laps of less than 25? ### Answer: SELECT MAX(grid) FROM table_name_75 WHERE driver = "alexander wurz" AND laps < 25
How many years have a Title of Magia Nuda?
CREATE TABLE table_name_78 (year VARCHAR, title VARCHAR)
SELECT COUNT(year) FROM table_name_78 WHERE title = "magia nuda"
### Context: CREATE TABLE table_name_78 (year VARCHAR, title VARCHAR) ### Question: How many years have a Title of Magia Nuda? ### Answer: SELECT COUNT(year) FROM table_name_78 WHERE title = "magia nuda"
What is the country that has a music writer of Angelo Francesco Lavagnino, written in 1969?
CREATE TABLE table_name_57 (country VARCHAR, music VARCHAR, year VARCHAR)
SELECT country FROM table_name_57 WHERE music = "angelo francesco lavagnino" AND year = 1969
### Context: CREATE TABLE table_name_57 (country VARCHAR, music VARCHAR, year VARCHAR) ### Question: What is the country that has a music writer of Angelo Francesco Lavagnino, written in 1969? ### Answer: SELECT country FROM table_name_57 WHERE music = "angelo francesco lavagnino" AND year = 1969
Which music has the notes of AKA Africa Uncensored?
CREATE TABLE table_name_61 (music VARCHAR, notes VARCHAR)
SELECT music FROM table_name_61 WHERE notes = "aka africa uncensored"
### Context: CREATE TABLE table_name_61 (music VARCHAR, notes VARCHAR) ### Question: Which music has the notes of AKA Africa Uncensored? ### Answer: SELECT music FROM table_name_61 WHERE notes = "aka africa uncensored"
What is Pegasus' right ascension with a 7318a NGC?
CREATE TABLE table_name_67 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)
SELECT right_ascension___j2000__ FROM table_name_67 WHERE constellation = "pegasus" AND ngc_number = "7318a"
### Context: CREATE TABLE table_name_67 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR) ### Question: What is Pegasus' right ascension with a 7318a NGC? ### Answer: SELECT right_ascension___j2000__ FROM table_name_67 WHERE constellation = "pegasus" AND ngc_number = "7318a"
What is the declination of the spiral galaxy Pegasus with 7337 NGC
CREATE TABLE table_name_89 (declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR, constellation VARCHAR)
SELECT declination___j2000__ FROM table_name_89 WHERE object_type = "spiral galaxy" AND constellation = "pegasus" AND ngc_number = "7337"
### Context: CREATE TABLE table_name_89 (declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR, constellation VARCHAR) ### Question: What is the declination of the spiral galaxy Pegasus with 7337 NGC ### Answer: SELECT declination___j2000__ FROM table_name_89 WHERE object_type = "spiral galaxy" AND con...
What is the right ascension of Pegasus with a 7343 NGC?
CREATE TABLE table_name_57 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)
SELECT right_ascension___j2000__ FROM table_name_57 WHERE constellation = "pegasus" AND ngc_number = "7343"
### Context: CREATE TABLE table_name_57 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR) ### Question: What is the right ascension of Pegasus with a 7343 NGC? ### Answer: SELECT right_ascension___j2000__ FROM table_name_57 WHERE constellation = "pegasus" AND ngc_number = "7343"
What was the score on October 13?
CREATE TABLE table_name_94 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_94 WHERE date = "october 13"
### Context: CREATE TABLE table_name_94 (score VARCHAR, date VARCHAR) ### Question: What was the score on October 13? ### Answer: SELECT score FROM table_name_94 WHERE date = "october 13"
Which team won when the visitor was Carolina?
CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR)
SELECT decision FROM table_name_56 WHERE visitor = "carolina"
### Context: CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR) ### Question: Which team won when the visitor was Carolina? ### Answer: SELECT decision FROM table_name_56 WHERE visitor = "carolina"
What was the score on October 31?
CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_93 WHERE date = "october 31"
### Context: CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) ### Question: What was the score on October 31? ### Answer: SELECT score FROM table_name_93 WHERE date = "october 31"
Which team was home on October 13?
CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_26 WHERE date = "october 13"
### Context: CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR) ### Question: Which team was home on October 13? ### Answer: SELECT home FROM table_name_26 WHERE date = "october 13"
What is the home city for angelo massimino stadium?
CREATE TABLE table_name_7 (home_city VARCHAR, stadium VARCHAR)
SELECT home_city FROM table_name_7 WHERE stadium = "angelo massimino"
### Context: CREATE TABLE table_name_7 (home_city VARCHAR, stadium VARCHAR) ### Question: What is the home city for angelo massimino stadium? ### Answer: SELECT home_city FROM table_name_7 WHERE stadium = "angelo massimino"
What is the H/A for 20 february 2007?
CREATE TABLE table_name_54 (h___a VARCHAR, date VARCHAR)
SELECT h___a FROM table_name_54 WHERE date = "20 february 2007"
### Context: CREATE TABLE table_name_54 (h___a VARCHAR, date VARCHAR) ### Question: What is the H/A for 20 february 2007? ### Answer: SELECT h___a FROM table_name_54 WHERE date = "20 february 2007"
How many people attended on 2 may 2007?
CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_14 WHERE date = "2 may 2007"
### Context: CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR) ### Question: How many people attended on 2 may 2007? ### Answer: SELECT SUM(attendance) FROM table_name_14 WHERE date = "2 may 2007"
Which date has roma as opponent and a H/A of A?
CREATE TABLE table_name_46 (date VARCHAR, opponents VARCHAR, h___a VARCHAR)
SELECT date FROM table_name_46 WHERE opponents = "roma" AND h___a = "a"
### Context: CREATE TABLE table_name_46 (date VARCHAR, opponents VARCHAR, h___a VARCHAR) ### Question: Which date has roma as opponent and a H/A of A? ### Answer: SELECT date FROM table_name_46 WHERE opponents = "roma" AND h___a = "a"
Which round happened on 10 april 2007?
CREATE TABLE table_name_41 (round VARCHAR, date VARCHAR)
SELECT round FROM table_name_41 WHERE date = "10 april 2007"
### Context: CREATE TABLE table_name_41 (round VARCHAR, date VARCHAR) ### Question: Which round happened on 10 april 2007? ### Answer: SELECT round FROM table_name_41 WHERE date = "10 april 2007"
Who was home at Princes Park?
CREATE TABLE table_name_55 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_55 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_55 (home_team VARCHAR, venue VARCHAR) ### Question: Who was home at Princes Park? ### Answer: SELECT home_team AS score FROM table_name_55 WHERE venue = "princes park"
What was the away team's score at Princes Park?
CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_38 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team's score at Princes Park? ### Answer: SELECT away_team AS score FROM table_name_38 WHERE venue = "princes park"
When was the game played at Lake Oval?
CREATE TABLE table_name_56 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_56 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_56 (date VARCHAR, venue VARCHAR) ### Question: When was the game played at Lake Oval? ### Answer: SELECT date FROM table_name_56 WHERE venue = "lake oval"
What was the away team when the game was at Princes Park?
CREATE TABLE table_name_12 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_12 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_12 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team when the game was at Princes Park? ### Answer: SELECT away_team FROM table_name_12 WHERE venue = "princes park"
What is the smallest place number when the total is 16 and average is less than 16?
CREATE TABLE table_name_52 (place INTEGER, total VARCHAR, average VARCHAR)
SELECT MIN(place) FROM table_name_52 WHERE total = 16 AND average < 16
### Context: CREATE TABLE table_name_52 (place INTEGER, total VARCHAR, average VARCHAR) ### Question: What is the smallest place number when the total is 16 and average is less than 16? ### Answer: SELECT MIN(place) FROM table_name_52 WHERE total = 16 AND average < 16
What is the average when the rank by average is more than 12?
CREATE TABLE table_name_88 (average INTEGER, rank_by_average INTEGER)
SELECT SUM(average) FROM table_name_88 WHERE rank_by_average > 12
### Context: CREATE TABLE table_name_88 (average INTEGER, rank_by_average INTEGER) ### Question: What is the average when the rank by average is more than 12? ### Answer: SELECT SUM(average) FROM table_name_88 WHERE rank_by_average > 12
What is the average place for a couple with the rank by average of 9 and total smaller than 83?
CREATE TABLE table_name_91 (place INTEGER, rank_by_average VARCHAR, total VARCHAR)
SELECT AVG(place) FROM table_name_91 WHERE rank_by_average = 9 AND total < 83
### Context: CREATE TABLE table_name_91 (place INTEGER, rank_by_average VARCHAR, total VARCHAR) ### Question: What is the average place for a couple with the rank by average of 9 and total smaller than 83? ### Answer: SELECT AVG(place) FROM table_name_91 WHERE rank_by_average = 9 AND total < 83
What is the rank by average where the total was larger than 245 and the average was 27.1 with fewer than 15 dances?
CREATE TABLE table_name_43 (rank_by_average INTEGER, number_of_dances VARCHAR, total VARCHAR, average VARCHAR)
SELECT AVG(rank_by_average) FROM table_name_43 WHERE total > 245 AND average = 27.1 AND number_of_dances < 15
### Context: CREATE TABLE table_name_43 (rank_by_average INTEGER, number_of_dances VARCHAR, total VARCHAR, average VARCHAR) ### Question: What is the rank by average where the total was larger than 245 and the average was 27.1 with fewer than 15 dances? ### Answer: SELECT AVG(rank_by_average) FROM table_name_43 WHERE t...
Which stadium was used for the North East Stars club?
CREATE TABLE table_name_3 (stadium VARCHAR, club VARCHAR)
SELECT stadium FROM table_name_3 WHERE club = "north east stars"
### Context: CREATE TABLE table_name_3 (stadium VARCHAR, club VARCHAR) ### Question: Which stadium was used for the North East Stars club? ### Answer: SELECT stadium FROM table_name_3 WHERE club = "north east stars"
What was the total number of Top Division Titles where the year founded was prior to 1975 and the location was in Chaguaramas?
CREATE TABLE table_name_90 (top_division_titles INTEGER, founded VARCHAR, location VARCHAR)
SELECT SUM(top_division_titles) FROM table_name_90 WHERE founded < 1975 AND location = "chaguaramas"
### Context: CREATE TABLE table_name_90 (top_division_titles INTEGER, founded VARCHAR, location VARCHAR) ### Question: What was the total number of Top Division Titles where the year founded was prior to 1975 and the location was in Chaguaramas? ### Answer: SELECT SUM(top_division_titles) FROM table_name_90 WHERE found...
What was the higest attendance on November 9, 1958?
CREATE TABLE table_name_4 (attendance INTEGER, date VARCHAR)
SELECT MAX(attendance) FROM table_name_4 WHERE date = "november 9, 1958"
### Context: CREATE TABLE table_name_4 (attendance INTEGER, date VARCHAR) ### Question: What was the higest attendance on November 9, 1958? ### Answer: SELECT MAX(attendance) FROM table_name_4 WHERE date = "november 9, 1958"