combined_text
stringlengths
106
1.05k
###question:who had the high rebounds when the game number was 6?###answer:SELECT high_rebounds FROM table_name_70 WHERE game = 6###context:CREATE TABLE table_name_70 (high_rebounds VARCHAR, game 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"###context:CREATE TABLE table_name_67 (score VARCHAR, visitor VARCHAR)
###question:What was the record when the visiting team was Ottawa?###answer:SELECT record FROM table_name_54 WHERE visitor = "ottawa"###context:CREATE TABLE table_name_54 (record VARCHAR, visitor 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:SELECT SUM(total_seats) FROM table_name_26 WHERE constituency_seats > 0 AND party = "liberal democrat" AND regional_seats < 6###conte...
###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 > 46###context:CREATE TABLE table_name_77 (regional_seats VARCHAR, party VARCHAR, total_seats VARCHAR)
###question:Which team was the visitor on January 10?###answer:SELECT visitor FROM table_name_69 WHERE date = "january 10"###context:CREATE TABLE table_name_69 (visitor VARCHAR, date VARCHAR)
###question:What is the average Draw when the Place is larger than 5?###answer:SELECT AVG(draw) FROM table_name_65 WHERE place > 5###context:CREATE TABLE table_name_65 (draw INTEGER, place INTEGER)
###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###context:CREATE TABLE table_name_95 (draw INTEGER, artist VARCHAR, points 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###context:CREATE TABLE table_name_92 (draw INTEGER, points VARCHAR, place 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"###context:CREATE TABLE table_name_21 (position VARCHAR, round 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 player = "ian cole"###context:CREATE TABLE table_name_35 (round INTEGER, player VARCHAR, position VARCHAR, nationality...
###question:Who is the player from Denmark who plays position c?###answer: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: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"###context:CREATE TABLE table_name_45 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
###question:Which date has a To par of –12?###answer:SELECT date FROM table_name_53 WHERE to_par = "–12"###context:CREATE TABLE table_name_53 (date VARCHAR, to_par VARCHAR)
###question:How many attended the game on December 16, 2001?###answer:SELECT attendance FROM table_name_92 WHERE date = "december 16, 2001"###context:CREATE TABLE table_name_92 (attendance VARCHAR, date VARCHAR)
###question:What week is a bye week?###answer:SELECT week FROM table_name_64 WHERE date = "bye"###context:CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR)
###question:How many years entered service when there were 13 locomotives?###answer:SELECT COUNT(entered_service) FROM table_name_89 WHERE locomotive = "13"###context:CREATE TABLE table_name_89 (entered_service VARCHAR, locomotive 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_service < 1915 AND built > 1911###context:CREATE TABLE table_name_9 (locomotive VARCHAR, built VARCHAR, type VARCHAR, entered...
###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 club = "villarreal cf" AND played > 38###context:CREATE TABLE table_name_82 (wins INTEGER, played VARCHAR, goal_diffe...
###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###context:CREATE TABLE table_name_57 (played INTEGER, goal_difference INTEGER)
###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###context:CREATE TABLE table_name_73 (losses INTEGER, position 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 goals_for > 57 AND goal_difference < 4###context:CREATE TABLE table_name_39 (position INTEGER, goal_difference VARCHAR, losses ...
###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###context:CREATE TABLE table_name_4 (goal_difference INTEGER, goals_against VARCHAR, losses 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_against < 59 AND played > 38###context:CREATE TABLE table_name_37 (position INTEGER, played VARCHAR, points VARCHAR, goals_...
###question:What was the final score of the Australian Open?###answer: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 record was set by walter brennan before 1941?###answer: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 is the earliest year for ordinary people to appear in the notes?###answer: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 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 coulthard"###context:CREATE TABLE table_name_98 (engine_† VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR)
###question:who is the entrant when the engine is bmw p82?###answer:SELECT entrant FROM table_name_92 WHERE engine_† = "bmw p82"###context:CREATE TABLE table_name_92 (entrant 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"###context:CREATE TABLE table_name_17 (rounds 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"###context:CREATE TABLE table_name_1 (driver VARCHAR, engine_† 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"###context:CREATE TABLE table_name_47 (tyre VARCHAR, engine_† VARCHAR, driver 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_† = "ferrari 050 ferrari 051" AND driver = "rubens barrichello"###context:CREATE TABLE table_name_14 (chassis VARCHAR, dr...
###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"###context:CREATE TABLE table_name_24 (rank INTEGER, time VARCHAR)
###question:What is the time of the rider with a 398cc yamaha?###answer: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 ranked 6?###answer:SELECT time FROM table_name_76 WHERE rank = 6###context:CREATE TABLE table_name_76 (time VARCHAR, rank VARCHAR)
###question:Who is the rider with a 399cc Kawasaki?###answer:SELECT rider FROM table_name_94 WHERE team = "399cc kawasaki"###context:CREATE TABLE table_name_94 (rider VARCHAR, team 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###context:CREATE TABLE table_name_89 (high_school VARCHAR, utah_mr_basketball VARCHAR, year 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###context:CREATE TABLE table_name_5 (earnings__ VARCHAR, wins VARCHAR, rank 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"###context:CREATE TABLE table_name_47 (constructor VARCHAR, laps 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"###context:CREATE TABLE table_name_91 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
###question:Which SECR numbers have a class of b1?###answer:SELECT secr_numbers FROM table_name_36 WHERE class = "b1"###context:CREATE TABLE table_name_36 (secr_numbers VARCHAR, class VARCHAR)
###question:Which class was made in 1880?###answer:SELECT class FROM table_name_34 WHERE year_made = "1880"###context:CREATE TABLE table_name_34 (class VARCHAR, year_made VARCHAR)
###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###context:CREATE TABLE table_name_59 (date VARCHAR, attendance INTEGER)
###question:Which home team played the Away team from Richmond?###answer:SELECT home_team FROM table_name_29 WHERE away_team = "richmond"###context:CREATE TABLE table_name_29 (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"###context:CREATE TABLE table_name_73 (home_team VARCHAR, away_team 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"###context:CREATE TABLE table_name_53 (away_team VARCHAR, venue 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"###context:CREATE TABLE table_name_50 (rounds VARCHAR, tyre VARCHAR, engine_† VARCHAR)
###question:What kind of chassis does Ricardo Zonta have?###answer:SELECT chassis FROM table_name_30 WHERE driver = "ricardo zonta"###context:CREATE TABLE table_name_30 (chassis VARCHAR, driver 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"###context:CREATE TABLE table_name_8 (free_practice_driver_s_ VARCHAR, engine_† 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/2009" AND draw > 9###context:CREATE TABLE table_name_53 (matches VARCHAR, draw VARCHAR, lost VARCHAR, season V...
###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###context:CREATE TABLE table_name_88 (competition VARCHAR, lost VARCHAR, points VARCHAR, draw 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 > 5###context:CREATE TABLE table_name_6 (lost INTEGER, draw VARCHAR, matches VARCHAR, points VARCHAR)
###question:What is the record for the game on January 19?###answer:SELECT record FROM table_name_92 WHERE date = "january 19"###context:CREATE TABLE table_name_92 (record 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"###context:CREATE TABLE table_name_46 (score 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"###context:CREATE TABLE table_name_60 (home VARCHAR, visitor VARCHAR, date 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"###context:CREATE TABLE table_name_26 (city_of_license VARCHAR, frequency_mhz VARCHAR)
###question:Name the call sign for ERP W of 4###answer: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 frequence MHz for ERP W of 55###answer: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 FCC info for call sign of w279at###answer: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 call sign for ERP W of 27###answer:SELECT call_sign FROM table_name_65 WHERE erp_w = 27###context:CREATE TABLE table_name_65 (call_sign VARCHAR, erp_w 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"###context:CREATE TABLE table_name_60 (date VARCHAR, score 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"###context:CREATE TABLE table_name_75 (score VARCHAR, visitor VARCHAR)
###question:What was the score with a 16–14–6 record?###answer: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 SECR number of the item made in 1861?###answer:SELECT secr_numbers FROM table_name_31 WHERE year_made = "1861"###context:CREATE TABLE table_name_31 (secr_numbers VARCHAR, year_made VARCHAR)
###question:Name the venue with a home team of geelong###answer:SELECT venue FROM table_name_72 WHERE home_team = "geelong"###context:CREATE TABLE table_name_72 (venue VARCHAR, home_team 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"###context:CREATE TABLE table_name_47 (home_team VARCHAR, venue 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"###context:CREATE TABLE table_name_75 (away_team VARCHAR)
###question:Who is driver of the d6 chassis?###answer:SELECT driver FROM table_name_99 WHERE chassis = "d6"###context:CREATE TABLE table_name_99 (driver VARCHAR, chassis 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"###context:CREATE TABLE table_name_91 (constructor VARCHAR, chassis VARCHAR, driver 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.0 v8"###context:CREATE TABLE table_name_42 (constructor VARCHAR, driver VARCHAR, engine 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###context:CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps 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"###context:CREATE TABLE table_name_15 (laps INTEGER, grid VARCHAR, driver 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###context:CREATE TABLE table_name_75 (grid INTEGER, driver VARCHAR, laps VARCHAR)
###question:How many years have a Title of Magia Nuda?###answer:SELECT COUNT(year) FROM table_name_78 WHERE title = "magia nuda"###context:CREATE TABLE table_name_78 (year VARCHAR, title 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###context:CREATE TABLE table_name_57 (country VARCHAR, music VARCHAR, year VARCHAR)
###question:Which music has the notes of AKA Africa Uncensored?###answer:SELECT music FROM table_name_61 WHERE notes = "aka africa uncensored"###context:CREATE TABLE table_name_61 (music VARCHAR, notes 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"###context:CREATE TABLE table_name_67 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number 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 constellation = "pegasus" AND ngc_number = "7337"###context:CREATE TABLE table_name_89 (declination___j2000__ VARCHAR, ngc_number VARCHAR, objec...
###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"###context:CREATE TABLE table_name_57 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)
###question:What was the score on October 13?###answer:SELECT score FROM table_name_94 WHERE date = "october 13"###context:CREATE TABLE table_name_94 (score VARCHAR, date VARCHAR)
###question:Which team won when the visitor was Carolina?###answer:SELECT decision FROM table_name_56 WHERE visitor = "carolina"###context:CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR)
###question:What was the score on October 31?###answer:SELECT score FROM table_name_93 WHERE date = "october 31"###context:CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)
###question:Which team was home on October 13?###answer:SELECT home FROM table_name_26 WHERE date = "october 13"###context:CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR)
###question:What is the home city for angelo massimino stadium?###answer: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 H/A for 20 february 2007?###answer:SELECT h___a FROM table_name_54 WHERE date = "20 february 2007"###context:CREATE TABLE table_name_54 (h___a VARCHAR, date VARCHAR)
###question:How many people attended on 2 may 2007?###answer:SELECT SUM(attendance) FROM table_name_14 WHERE date = "2 may 2007"###context:CREATE TABLE table_name_14 (attendance INTEGER, date 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"###context:CREATE TABLE table_name_46 (date VARCHAR, opponents VARCHAR, h___a VARCHAR)
###question:Which round happened on 10 april 2007?###answer:SELECT round FROM table_name_41 WHERE date = "10 april 2007"###context:CREATE TABLE table_name_41 (round VARCHAR, date VARCHAR)
###question:Who was home at Princes Park?###answer: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:What was the away team's score at Princes Park?###answer: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:When was the game played at Lake Oval?###answer:SELECT date FROM table_name_56 WHERE venue = "lake oval"###context:CREATE TABLE table_name_56 (date 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"###context:CREATE TABLE table_name_12 (away_team VARCHAR, venue 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###context:CREATE TABLE table_name_52 (place INTEGER, total VARCHAR, average VARCHAR)
###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###context:CREATE TABLE table_name_88 (average INTEGER, rank_by_average INTEGER)
###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###context:CREATE TABLE table_name_91 (place INTEGER, rank_by_average VARCHAR, total 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 total > 245 AND average = 27.1 AND number_of_dances < 15###context:CREATE TABLE table_name_43 (rank_by_average INTEGER, number_of_...
###question:Which stadium was used for the North East Stars club?###answer:SELECT stadium FROM table_name_3 WHERE club = "north east stars"###context:CREATE TABLE table_name_3 (stadium VARCHAR, club 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 founded < 1975 AND location = "chaguaramas"###context:CREATE TABLE table_name_90 (top_division_titles INTEGER, foun...
###question:What was the higest attendance on November 9, 1958?###answer:SELECT MAX(attendance) FROM table_name_4 WHERE date = "november 9, 1958"###context:CREATE TABLE table_name_4 (attendance INTEGER, date VARCHAR)