question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the total swimsuit number with gowns larger than 9.48 with interviews larger than 8.94 in florida? | CREATE TABLE table_name_35 (swimsuit VARCHAR, interview VARCHAR, evening_gown VARCHAR, country VARCHAR) | SELECT COUNT(swimsuit) FROM table_name_35 WHERE evening_gown > 9.48 AND country = "florida" AND interview > 8.94 |
What was the opposing team for the second test? | CREATE TABLE table_name_5 (opposing_team VARCHAR, status VARCHAR) | SELECT opposing_team FROM table_name_5 WHERE status = "second test" |
How many rounds was the bout against bobby rehman? | CREATE TABLE table_name_87 (round VARCHAR, opponent VARCHAR) | SELECT round FROM table_name_87 WHERE opponent = "bobby rehman" |
Which bike did Jiri Drazdak ride when he had a grid number larger than 14 and less than 22 laps? | CREATE TABLE table_name_34 (bike VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR) | SELECT bike FROM table_name_34 WHERE grid > 14 AND laps < 22 AND rider = "jiri drazdak" |
Which driver drove car Wolf WR3? | CREATE TABLE table_name_12 (winning_driver VARCHAR, winning_car VARCHAR) | SELECT winning_driver FROM table_name_12 WHERE winning_car = "wolf wr3" |
What party did incumbent Brooks Hays belong to? | CREATE TABLE table_1342249_5 (party VARCHAR, incumbent VARCHAR) | SELECT party FROM table_1342249_5 WHERE incumbent = "Brooks Hays" |
What is the most recent year that Gulf Racing Middle East won? | CREATE TABLE table_name_91 (year INTEGER, team VARCHAR) | SELECT MAX(year) FROM table_name_91 WHERE team = "gulf racing middle east" |
How many games did the Club that has a try bonus of 4 and 391 points against play ? | CREATE TABLE table_name_21 (played VARCHAR, try_bonus VARCHAR, points_against VARCHAR) | SELECT played FROM table_name_21 WHERE try_bonus = "4" AND points_against = "391" |
What was the founding of navy blue? | CREATE TABLE table_11604804_5 (founded VARCHAR, color VARCHAR) | SELECT founded FROM table_11604804_5 WHERE color = "Navy Blue" |
what is the country with the album best of and weeks on chart is less than 5? | CREATE TABLE table_name_53 (country VARCHAR, album VARCHAR, weeks_on_chart VARCHAR) | SELECT country FROM table_name_53 WHERE album = "best of" AND weeks_on_chart < 5 |
What's the mascot in Huntington after the year 2000? | CREATE TABLE table_name_40 (mascot VARCHAR, year_left VARCHAR, location VARCHAR) | SELECT mascot FROM table_name_40 WHERE year_left > 2000 AND location = "huntington" |
Name the fa cup apps for george green | CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR) | SELECT fa_cup_apps FROM table_19730892_1 WHERE name = "George Green" |
What are the elimination moves of wrestlers whose team is "Team Orton"? | CREATE TABLE Elimination (Elimination_Move VARCHAR, Team VARCHAR) | SELECT Elimination_Move FROM Elimination WHERE Team = "Team Orton" |
What Release date has a Category of utilities, a Developer of microsoft, and a Title of chord finder? | CREATE TABLE table_name_86 (release_date VARCHAR, title VARCHAR, category VARCHAR, developer VARCHAR) | SELECT release_date FROM table_name_86 WHERE category = "utilities" AND developer = "microsoft" AND title = "chord finder" |
What was the date of a week larger than 16? | CREATE TABLE table_name_55 (date VARCHAR, week INTEGER) | SELECT date FROM table_name_55 WHERE week > 16 |
When salyut 7 – ve-4 – eva 1 is the spacecraft, what is the duration? | CREATE TABLE table_245801_2 (duration VARCHAR, spacecraft VARCHAR) | SELECT duration FROM table_245801_2 WHERE spacecraft = "Salyut 7 – VE-4 – EVA 1" |
What is Place, when Player is "Mi Hyun Kim"? | CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_94 WHERE player = "mi hyun kim" |
What's the Time/Retired of Laps of 75? | CREATE TABLE table_name_59 (time_retired VARCHAR, laps VARCHAR) | SELECT time_retired FROM table_name_59 WHERE laps = 75 |
Name the stations for zone 5 and 1 platform by tramlink | CREATE TABLE table_name_58 (stations VARCHAR, platforms VARCHAR, managed_by VARCHAR, zone VARCHAR) | SELECT stations FROM table_name_58 WHERE managed_by = "tramlink" AND zone = 5 AND platforms = 1 |
What is the total area with the Census Ranking of 3,129 of 5,008, and a Population larger than 460? | CREATE TABLE table_name_66 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR) | SELECT COUNT(area_km_2) FROM table_name_66 WHERE census_ranking = "3,129 of 5,008" AND population > 460 |
what's the team where date is february 8 | CREATE TABLE table_11964154_9 (team VARCHAR, date VARCHAR) | SELECT team FROM table_11964154_9 WHERE date = "February 8" |
What road is associated with Carson Valley county? | CREATE TABLE table_25438110_5 (road VARCHAR, county VARCHAR) | SELECT road FROM table_25438110_5 WHERE county = "Carson Valley" |
WHAT IS THE TOTAL THAT HAS A WIN IN 1982? | CREATE TABLE table_name_14 (total INTEGER, year_s__won VARCHAR) | SELECT AVG(total) FROM table_name_14 WHERE year_s__won = "1982" |
What type of yacht has a LOA of 15.15 metres? | CREATE TABLE table_name_94 (yacht VARCHAR, loa__metres_ VARCHAR) | SELECT yacht AS Type FROM table_name_94 WHERE loa__metres_ = 15.15 |
Show all student IDs who have at least two allergies. | CREATE TABLE Has_allergy (StuID VARCHAR) | SELECT StuID FROM Has_allergy GROUP BY StuID HAVING COUNT(*) >= 2 |
If the title is Paradox Lost and the reader is Briggs, Nicholas Nicholas Briggs, what are all of the notes? | CREATE TABLE table_20174050_7 (notes VARCHAR, reader VARCHAR, title VARCHAR) | SELECT notes FROM table_20174050_7 WHERE reader = "Briggs, Nicholas Nicholas Briggs" AND title = "Paradox Lost" |
Which steal/intercept ball has no for both the sliding tackle and dump tackle? | CREATE TABLE table_name_37 (steal_intercept_ball VARCHAR, sliding_tackle VARCHAR, dump_tackle VARCHAR) | SELECT steal_intercept_ball FROM table_name_37 WHERE sliding_tackle = "no" AND dump_tackle = "no" |
What is the Outcome of the match with a Score of 6–3, 6–4? | CREATE TABLE table_name_75 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_75 WHERE score = "6–3, 6–4" |
What is the record of the game with a decision of Ellis and Vancouver as the visitor? | CREATE TABLE table_name_79 (record VARCHAR, decision VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_79 WHERE decision = "ellis" AND visitor = "vancouver" |
Who is the professional partner of celebrity małgorzata foremniak with a season less than 7, an average greater than 34.66, and a rank less than 10? | CREATE TABLE table_name_52 (professional_partner VARCHAR, celebrity VARCHAR, rank VARCHAR, season VARCHAR, average VARCHAR) | SELECT professional_partner FROM table_name_52 WHERE season < 7 AND average > 34.66 AND rank < 10 AND celebrity = "małgorzata foremniak" |
Which Horse finished in 8? | CREATE TABLE table_name_54 (horse VARCHAR, finished VARCHAR) | SELECT horse FROM table_name_54 WHERE finished = "8" |
What Winning driver has a Name of mugello circuit? | CREATE TABLE table_name_55 (winning_driver VARCHAR, name VARCHAR) | SELECT winning_driver FROM table_name_55 WHERE name = "mugello circuit" |
What is the money list rank for 1966? | CREATE TABLE table_13026799_3 (money_list_rank VARCHAR, year VARCHAR) | SELECT money_list_rank FROM table_13026799_3 WHERE year = 1966 |
What number does the player who was with the grizzles in 1999 wear? | CREATE TABLE table_16494599_4 (no INTEGER, years_for_grizzlies VARCHAR) | SELECT MIN(no) FROM table_16494599_4 WHERE years_for_grizzlies = "1999" |
what's the district with result being re-elected and candidates being clarence f. lea (d) unopposed | CREATE TABLE table_1342233_6 (district VARCHAR, result VARCHAR, candidates VARCHAR) | SELECT district FROM table_1342233_6 WHERE result = "Re-elected" AND candidates = "Clarence F. Lea (D) Unopposed" |
Name the mandate for list pct 12.39% | CREATE TABLE table_14834801_1 (mandate VARCHAR, list_pct VARCHAR) | SELECT mandate FROM table_14834801_1 WHERE list_pct = "12.39%" |
What is the total number of Established for soccer plated in kuntz stadium? | CREATE TABLE table_name_65 (established VARCHAR, sport VARCHAR, venue VARCHAR) | SELECT COUNT(established) FROM table_name_65 WHERE sport = "soccer" AND venue = "kuntz stadium" |
How many points has more than 15 wins and less than 10 losses? | CREATE TABLE table_name_54 (points VARCHAR, wins VARCHAR, losses VARCHAR) | SELECT points FROM table_name_54 WHERE wins > 15 AND losses < 10 |
What is the original title of Madame Rosa? | CREATE TABLE table_name_83 (original_title VARCHAR, english_title VARCHAR) | SELECT original_title FROM table_name_83 WHERE english_title = "madame rosa" |
Where has a Player of tom watson? | CREATE TABLE table_name_22 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_22 WHERE player = "tom watson" |
What's the 1861 had 1991 in 1881 and a year of year? | CREATE TABLE table_name_82 (Id VARCHAR) | SELECT 1861 FROM table_name_82 WHERE "year" = "year" AND 1881 = "1991" |
What is the Country of the Player with a Score of 66-72-70-69=277? | CREATE TABLE table_name_47 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_47 WHERE score = 66 - 72 - 70 - 69 = 277 |
What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1? | CREATE TABLE table_name_50 (percentage_of_marine_area__foreez_ INTEGER, ecozone VARCHAR, percentage_of_total_area__foreez_ VARCHAR) | SELECT MIN(percentage_of_marine_area__foreez_) FROM table_name_50 WHERE ecozone = "pacific marine" AND percentage_of_total_area__foreez_ > 3.1 |
The person with a rank of 8 moving to Shakhtar Donetsk was moving from what Ukrainian Football Club as a transfer? | CREATE TABLE table_name_2 (moving_from VARCHAR, moving_to VARCHAR, rank VARCHAR) | SELECT moving_from FROM table_name_2 WHERE moving_to = "shakhtar donetsk" AND rank = 8 |
Name the Date of mercedes, and a Circuit of elgin? | CREATE TABLE table_name_57 (date VARCHAR, winning_constructor VARCHAR, circuit VARCHAR) | SELECT date FROM table_name_57 WHERE winning_constructor = "mercedes" AND circuit = "elgin" |
If the location is Chicago, Illinois, what is the airport name? | CREATE TABLE table_18047346_4 (airport_name VARCHAR, location VARCHAR) | SELECT airport_name FROM table_18047346_4 WHERE location = "Chicago, Illinois" |
What's the position when the player was Justin Mapp Category:articles with hcards with a United States nationality? | CREATE TABLE table_name_36 (position VARCHAR, nationality VARCHAR, player VARCHAR) | SELECT position FROM table_name_36 WHERE nationality = "united states" AND player = "justin mapp category:articles with hcards" |
Which year had a vehicle of Mitsubishi? | CREATE TABLE table_name_88 (year VARCHAR, vehicle VARCHAR) | SELECT year FROM table_name_88 WHERE vehicle = "mitsubishi" |
What was the score when York City was home? | CREATE TABLE table_name_89 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_89 WHERE home_team = "york city" |
how many result with district being florida 14 | CREATE TABLE table_1341604_10 (result VARCHAR, district VARCHAR) | SELECT COUNT(result) FROM table_1341604_10 WHERE district = "Florida 14" |
What is the ranking of BNP Paribas? | CREATE TABLE table_1682026_3 (rank INTEGER, company VARCHAR) | SELECT MIN(rank) FROM table_1682026_3 WHERE company = "BNP Paribas" |
What's the highest Date listed that has U-boats destroyed (Pola) of 1? | CREATE TABLE table_name_97 (date INTEGER, u_boats_destroyed__pola_ VARCHAR) | SELECT MAX(date) FROM table_name_97 WHERE u_boats_destroyed__pola_ = "1" |
What is the fewest number of wins for a team ranked 8th with fewer than 32 points in the 350cc class? | CREATE TABLE table_name_75 (wins INTEGER, rank VARCHAR, points VARCHAR, class VARCHAR) | SELECT MIN(wins) FROM table_name_75 WHERE points < 32 AND class = "350cc" AND rank = "8th" |
What is the FCC info for the translator with frequency over 89.3MHz and licensd in Portales, New Mexico? | CREATE TABLE table_name_98 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR) | SELECT fcc_info FROM table_name_98 WHERE frequency_mhz > 89.3 AND city_of_license = "portales, new mexico" |
What is sSpec Number, when Frequency is 1 GHZ? | CREATE TABLE table_name_98 (sspec_number VARCHAR, frequency VARCHAR) | SELECT sspec_number FROM table_name_98 WHERE frequency = "1 ghz" |
What is the highest tonnage for a ship from Great Britain named Newton Ash? | CREATE TABLE table_name_13 (tonnage INTEGER, nationality VARCHAR, ship VARCHAR) | SELECT MAX(tonnage) FROM table_name_13 WHERE nationality = "great britain" AND ship = "newton ash" |
Which Record has a Location/Attendance of palace of auburn hills 8,108? | CREATE TABLE table_name_22 (record VARCHAR, location_attendance VARCHAR) | SELECT record FROM table_name_22 WHERE location_attendance = "palace of auburn hills 8,108" |
What is the lowest figure for her age when the year of marriage is before 1853, the number of children is less than 8, and the bride was Eliza Maria Partridge? | CREATE TABLE table_name_60 (her_age INTEGER, name VARCHAR, year_of_marriage VARCHAR, _number_of_children VARCHAR) | SELECT MIN(her_age) FROM table_name_60 WHERE year_of_marriage < 1853 AND _number_of_children < 8 AND name = "eliza maria partridge" |
Which chassis is ranked 24th? | CREATE TABLE table_name_96 (chassis VARCHAR, rank VARCHAR) | SELECT chassis FROM table_name_96 WHERE rank = "24th" |
Which School has a #/ County of 85 wabash, and an IHSAA Football Class of A, and a Mascot of norsemen? | CREATE TABLE table_name_43 (school VARCHAR, mascot VARCHAR, _number___county VARCHAR, ihsaa_football_class VARCHAR) | SELECT school FROM table_name_43 WHERE _number___county = "85 wabash" AND ihsaa_football_class = "a" AND mascot = "norsemen" |
What is the HT value of threw Athlon x2 5200b model? | CREATE TABLE table_13869651_3 (ht VARCHAR, model_number VARCHAR) | SELECT ht FROM table_13869651_3 WHERE model_number = "Athlon X2 5200B" |
When mike bibby (9) has the highest amount of assists what is the location and attendance? | CREATE TABLE table_17311759_9 (location_attendance VARCHAR, high_assists VARCHAR) | SELECT location_attendance FROM table_17311759_9 WHERE high_assists = "Mike Bibby (9)" |
Can you tell me the Name that has the Roll larger than 419? | CREATE TABLE table_name_95 (name VARCHAR, roll INTEGER) | SELECT name FROM table_name_95 WHERE roll > 419 |
What location did the team win before 1998 in the europe/africa zone, group i, round robin? | CREATE TABLE table_name_96 (location VARCHAR, year VARCHAR, competition VARCHAR, result VARCHAR) | SELECT location FROM table_name_96 WHERE competition = "europe/africa zone, group i, round robin" AND result = "win" AND year < 1998 |
Find the name of rooms booked by some customers whose first name contains ROY. | CREATE TABLE Reservations (Room VARCHAR); CREATE TABLE Rooms (roomName VARCHAR, RoomId VARCHAR) | SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE firstname LIKE '%ROY%' |
what is the minimum points with goals for/against being 8-5 | CREATE TABLE table_14181578_1 (points INTEGER, goals_for_against VARCHAR) | SELECT MIN(points) FROM table_14181578_1 WHERE goals_for_against = "8-5" |
What college's team is the Saskatchewan Roughriders? | CREATE TABLE table_10812403_4 (college VARCHAR, cfl_team VARCHAR) | SELECT college FROM table_10812403_4 WHERE cfl_team = "Saskatchewan Roughriders" |
What is the sum of league cup appearances for the players with FA cup goals larger than 0 and FA cup appearances less than 2? | CREATE TABLE table_name_63 (league_cup_apps INTEGER, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR) | SELECT SUM(league_cup_apps) FROM table_name_63 WHERE fa_cup_goals > 0 AND fa_cup_apps < 2 |
Which driver had 35+3 points? | CREATE TABLE table_name_77 (driver VARCHAR, points VARCHAR) | SELECT driver FROM table_name_77 WHERE points = "35+3" |
What is the name of the player who is a height of 182? | CREATE TABLE table_name_84 (player VARCHAR, height VARCHAR) | SELECT player FROM table_name_84 WHERE height = 182 |
what is the name of the builder who launched in danaide | CREATE TABLE table_name_97 (launched VARCHAR, name VARCHAR) | SELECT launched FROM table_name_97 WHERE name = "danaide" |
How many goals occurred with Diego Milito in a debut year later than 2008? | CREATE TABLE table_name_40 (goals VARCHAR, name VARCHAR, debut_year VARCHAR) | SELECT COUNT(goals) FROM table_name_40 WHERE name = "diego milito" AND debut_year > 2008 |
What is the sum of the round of Fred Smoot, who has a pick number greater than 14? | CREATE TABLE table_name_39 (round INTEGER, name VARCHAR, pick VARCHAR) | SELECT SUM(round) FROM table_name_39 WHERE name = "fred smoot" AND pick > 14 |
Who were the candidates in the Louisiana 4 district? | CREATE TABLE table_1341604_19 (candidates VARCHAR, district VARCHAR) | SELECT candidates FROM table_1341604_19 WHERE district = "Louisiana 4" |
what is the highest rank for director john woo? | CREATE TABLE table_name_47 (rank INTEGER, director VARCHAR) | SELECT MAX(rank) FROM table_name_47 WHERE director = "john woo" |
What is the Score with a Team with @ houston? | CREATE TABLE table_name_35 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_35 WHERE team = "@ houston" |
What is Joan Leaven's occupation? | CREATE TABLE table_2933761_1 (occupation VARCHAR, name VARCHAR) | SELECT occupation FROM table_2933761_1 WHERE name = "Joan Leaven" |
Which player has a score of 71-72=143? | CREATE TABLE table_name_43 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_43 WHERE score = 71 - 72 = 143 |
Which season was there a game with the score of 1:3 played at the venue of national stadium, maldives? | CREATE TABLE table_name_40 (season INTEGER, score VARCHAR, venue VARCHAR) | SELECT SUM(season) FROM table_name_40 WHERE score = "1:3" AND venue = "national stadium, maldives" |
What was the Report for the Monaco race? | CREATE TABLE table_name_32 (report VARCHAR, location VARCHAR) | SELECT report FROM table_name_32 WHERE location = "monaco" |
When the score in the final is 3–6, 6–4, 3–6, 4–6, who are all the opponents in the final? | CREATE TABLE table_26202847_6 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT opponent_in_the_final FROM table_26202847_6 WHERE score_in_the_final = "3–6, 6–4, 3–6, 4–6" |
What's the attendance when the opponents are cambridge united? | CREATE TABLE table_name_12 (attendance VARCHAR, opponents VARCHAR) | SELECT attendance FROM table_name_12 WHERE opponents = "cambridge united" |
Which year had a Score of kapunda 14-13-97 tanunda 5-14-44? | CREATE TABLE table_name_53 (year INTEGER, score VARCHAR) | SELECT SUM(year) FROM table_name_53 WHERE score = "kapunda 14-13-97 tanunda 5-14-44" |
What is the total number of votes if Scotland cast 35? | CREATE TABLE table_10128185_2 (scotland VARCHAR, total VARCHAR) | SELECT COUNT(scotland) FROM table_10128185_2 WHERE total = 35 |
What is the distance to funao? | CREATE TABLE table_name_85 (distance__km_ VARCHAR, station VARCHAR) | SELECT distance__km_ FROM table_name_85 WHERE station = "funao" |
Who was the shirt sponsor for the Blackburn Rovers? | CREATE TABLE table_name_59 (shirt_sponsor VARCHAR, team VARCHAR) | SELECT shirt_sponsor FROM table_name_59 WHERE team = "blackburn rovers" |
Which company has an author of Aristophanes and play of Plutus? | CREATE TABLE table_name_74 (company VARCHAR, author VARCHAR, play VARCHAR) | SELECT company FROM table_name_74 WHERE author = "aristophanes" AND play = "plutus" |
What was the 2nd's season's ranking? | CREATE TABLE table_299121_2 (ranking VARCHAR, season VARCHAR) | SELECT ranking FROM table_299121_2 WHERE season = "2nd" |
Who sanctioned the event at fayette county speedway? | CREATE TABLE table_16275828_4 (sanction VARCHAR, track_name VARCHAR) | SELECT sanction FROM table_16275828_4 WHERE track_name = "Fayette County Speedway" |
Who directed the episode with 4.82 million U.S. viewers? | CREATE TABLE table_25851971_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT directed_by FROM table_25851971_1 WHERE us_viewers__million_ = "4.82" |
Who were the original artist(s) for track number 6? | CREATE TABLE table_28715942_2 (original_artist VARCHAR, track_no VARCHAR) | SELECT original_artist FROM table_28715942_2 WHERE track_no = 6 |
What class is assigned to frequencies lower than 90.5? | CREATE TABLE table_name_49 (class VARCHAR, frequency_mhz INTEGER) | SELECT class FROM table_name_49 WHERE frequency_mhz < 90.5 |
Which Country has a To par of –13? | CREATE TABLE table_name_12 (country VARCHAR, to_par VARCHAR) | SELECT country FROM table_name_12 WHERE to_par = "–13" |
Where was the game held when Fitzroy was the away team? | CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_24 WHERE away_team = "fitzroy" |
Who was the opponent with a series of 1-0? | CREATE TABLE table_name_79 (opponent VARCHAR, series VARCHAR) | SELECT opponent FROM table_name_79 WHERE series = "1-0" |
What was the original air date of the episode that had 5.30 million U.S. viewers? | CREATE TABLE table_25548505_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) | SELECT original_air_date FROM table_25548505_1 WHERE us_viewers__millions_ = "5.30" |
What teams played in Washington, DC the year that Ramapo LL Ramapo was the game in New York? | CREATE TABLE table_13012165_1 (washington VARCHAR, _dc VARCHAR, new_york VARCHAR) | SELECT washington, _dc FROM table_13012165_1 WHERE new_york = "Ramapo LL Ramapo" |
What type of engine does a 1951 alfa romeo 159m chasis have? | CREATE TABLE table_name_44 (engine VARCHAR, year VARCHAR, chassis VARCHAR) | SELECT engine FROM table_name_44 WHERE year = 1951 AND chassis = "alfa romeo 159m" |
Which driver won the Phillip Island Grand Prix Circuit? | CREATE TABLE table_name_61 (winner VARCHAR, circuit VARCHAR) | SELECT winner FROM table_name_61 WHERE circuit = "phillip island grand prix circuit" |
Who has the high points for the 69 game? | CREATE TABLE table_23285805_8 (high_points VARCHAR, game VARCHAR) | SELECT high_points FROM table_23285805_8 WHERE game = 69 |
Subsets and Splits