Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
57,600
<question>: What is High Points, when High Rebounds is "Ron Artest (9)"? <context>: CREATE TABLE table_name_12 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT high_points FROM table_name_12 WHERE high_rebounds = "ron artest (9)"
57,601
<question>: What is Date, when High Rebounds is "Yao Ming (10)"? <context>: CREATE TABLE table_name_86 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_name_86 WHERE high_rebounds = "yao ming (10)"
57,602
<question>: What is Score, when High Points is "Luis Scola (18)", and when High Rebounds is "Luis Scola (11)"? <context>: CREATE TABLE table_name_93 (score VARCHAR, high_points VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_name_93 WHERE high_points = "luis scola (18)" AND high_rebounds = "luis scola (11)"
57,603
<question>: What is Team, when High Points is "Tracy McGrady (24)"? <context>: CREATE TABLE table_name_49 (team VARCHAR, high_points VARCHAR)
SELECT team FROM table_name_49 WHERE high_points = "tracy mcgrady (24)"
57,604
<question>: What is the record for the opponent Atlanta Hawks? <context>: CREATE TABLE table_name_9 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_9 WHERE opponent = "atlanta hawks"
57,605
<question>: Which opponent had a 113-124 score? <context>: CREATE TABLE table_name_52 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_52 WHERE score = "113-124"
57,606
<question>: What is the final record for the Philadelphia 76ers? <context>: CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_58 WHERE opponent = "philadelphia 76ers"
57,607
<question>: What is the record for the Detroit Pistons on March 7? <context>: CREATE TABLE table_name_82 (record VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT record FROM table_name_82 WHERE opponent = "detroit pistons" AND date = "march 7"
57,608
<question>: What is the WR player? <context>: CREATE TABLE table_name_98 (player VARCHAR, position VARCHAR)
SELECT player FROM table_name_98 WHERE position = "wr"
57,609
<question>: What is the Length (m) of the Koppenberg course? <context>: CREATE TABLE table_name_46 (length__m_ VARCHAR, name VARCHAR)
SELECT length__m_ FROM table_name_46 WHERE name = "koppenberg"
57,610
<question>: What is the Kilometer of the Berendries asphalt course with an Average climb less than 7 and Length (m) longer than 645? <context>: CREATE TABLE table_name_15 (kilometer INTEGER, average_climb___percentage_ VARCHAR, name VARCHAR, pavement VARCHAR, length__m_ VARCHAR)
SELECT AVG(kilometer) FROM table_name_15 WHERE pavement = "asphalt" AND length__m_ > 645 AND name = "berendries" AND average_climb___percentage_ < 7
57,611
<question>: What is the Number of the Koppenberg course with less than 195 Kilometers? <context>: CREATE TABLE table_name_28 (number VARCHAR, name VARCHAR, kilometer VARCHAR)
SELECT COUNT(number) FROM table_name_28 WHERE name = "koppenberg" AND kilometer < 195
57,612
<question>: Which part three is class 4? <context>: CREATE TABLE table_name_4 (part_3 VARCHAR, class VARCHAR)
SELECT part_3 FROM table_name_4 WHERE class = "4"
57,613
<question>: Which part one is class 7d? <context>: CREATE TABLE table_name_36 (part_1 VARCHAR, class VARCHAR)
SELECT part_1 FROM table_name_36 WHERE class = "7d"
57,614
<question>: Which part 3 has class 7b? <context>: CREATE TABLE table_name_97 (part_3 VARCHAR, class VARCHAR)
SELECT part_3 FROM table_name_97 WHERE class = "7b"
57,615
<question>: Which class has a part 2 of halp warþ? <context>: CREATE TABLE table_name_14 (class VARCHAR, part_2 VARCHAR)
SELECT class FROM table_name_14 WHERE part_2 = "halp warþ"
57,616
<question>: Which part 2 has a verb that means to leap? <context>: CREATE TABLE table_name_70 (part_2 VARCHAR, verb_meaning VARCHAR)
SELECT part_2 FROM table_name_70 WHERE verb_meaning = "to leap"
57,617
<question>: Who are the semifinalists when the tournament is in Cincinnati? <context>: CREATE TABLE table_name_58 (semifinalists VARCHAR, tournament VARCHAR)
SELECT semifinalists FROM table_name_58 WHERE tournament = "cincinnati"
57,618
<question>: What is the finalist in the week of March 12? <context>: CREATE TABLE table_name_91 (finalist VARCHAR, week VARCHAR)
SELECT finalist FROM table_name_91 WHERE week = "march 12"
57,619
<question>: What is the May 7 finalist? <context>: CREATE TABLE table_name_14 (finalist VARCHAR, week VARCHAR)
SELECT finalist FROM table_name_14 WHERE week = "may 7"
57,620
<question>: For the week of August 6, who is the finalist? <context>: CREATE TABLE table_name_26 (finalist VARCHAR, week VARCHAR)
SELECT finalist FROM table_name_26 WHERE week = "august 6"
57,621
<question>: What is the lowest Pick #, when College is "Jackson State"? <context>: CREATE TABLE table_name_98 (pick__number INTEGER, college VARCHAR)
SELECT MIN(pick__number) FROM table_name_98 WHERE college = "jackson state"
57,622
<question>: What is Pick #, when Round is "10"? <context>: CREATE TABLE table_name_49 (pick__number VARCHAR, round VARCHAR)
SELECT pick__number FROM table_name_49 WHERE round = 10
57,623
<question>: What is Player, when Round is greater than 8, when Pick # is greater than 234, and when College is "Louisville"? <context>: CREATE TABLE table_name_22 (player VARCHAR, college VARCHAR, round VARCHAR, pick__number VARCHAR)
SELECT player FROM table_name_22 WHERE round > 8 AND pick__number > 234 AND college = "louisville"
57,624
<question>: What is the average Round, when Player is "Gurnest Brown", and when Pick # is greater than 180? <context>: CREATE TABLE table_name_84 (round INTEGER, player VARCHAR, pick__number VARCHAR)
SELECT AVG(round) FROM table_name_84 WHERE player = "gurnest brown" AND pick__number > 180
57,625
<question>: What is the lowest Pick #, when College is "Louisville", and when Round is less than 10? <context>: CREATE TABLE table_name_6 (pick__number INTEGER, college VARCHAR, round VARCHAR)
SELECT MIN(pick__number) FROM table_name_6 WHERE college = "louisville" AND round < 10
57,626
<question>: Which Class has a Frequency MHz larger than 91.7, and a Call sign of k272ec? <context>: CREATE TABLE table_name_21 (class VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT class FROM table_name_21 WHERE frequency_mhz > 91.7 AND call_sign = "k272ec"
57,627
<question>: Which Frequency MHz has a Call sign of k210dv? <context>: CREATE TABLE table_name_35 (frequency_mhz INTEGER, call_sign VARCHAR)
SELECT MAX(frequency_mhz) FROM table_name_35 WHERE call_sign = "k210dv"
57,628
<question>: Which City of license has a Frequency MHz larger than 89.5, and a Call sign of k213el? <context>: CREATE TABLE table_name_22 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT city_of_license FROM table_name_22 WHERE frequency_mhz > 89.5 AND call_sign = "k213el"
57,629
<question>: Which ERP W has a Frequency MHz larger than 89.1, and a City of license of de queen, arkansas? <context>: CREATE TABLE table_name_54 (erp_w VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR)
SELECT erp_w FROM table_name_54 WHERE frequency_mhz > 89.1 AND city_of_license = "de queen, arkansas"
57,630
<question>: Which FCC info has a City of license of burley, idaho, and a Frequency MHz of 89.5? <context>: CREATE TABLE table_name_65 (fcc_info VARCHAR, city_of_license VARCHAR, frequency_mhz VARCHAR)
SELECT fcc_info FROM table_name_65 WHERE city_of_license = "burley, idaho" AND frequency_mhz = 89.5
57,631
<question>: For the game played on 31 July 2007 on clay what was the score? <context>: CREATE TABLE table_name_42 (score VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score FROM table_name_42 WHERE surface = "clay" AND date = "31 july 2007"
57,632
<question>: When was Pablo Andújar the opponent? <context>: CREATE TABLE table_name_38 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_38 WHERE opponent = "pablo andújar"
57,633
<question>: What is the decision when Buffalo was the visitor? <context>: CREATE TABLE table_name_20 (decision VARCHAR, visitor VARCHAR)
SELECT decision FROM table_name_20 WHERE visitor = "buffalo"
57,634
<question>: Who is the visiting team when Minnesota is the home team? <context>: CREATE TABLE table_name_67 (visitor VARCHAR, home VARCHAR)
SELECT visitor FROM table_name_67 WHERE home = "minnesota"
57,635
<question>: What is the date of the match when Phoenix is the home team? <context>: CREATE TABLE table_name_75 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_75 WHERE home = "phoenix"
57,636
<question>: Who is the quarterback for Arkansas State? <context>: CREATE TABLE table_name_38 (player VARCHAR, position VARCHAR, college VARCHAR)
SELECT player FROM table_name_38 WHERE position = "quarterback" AND college = "arkansas state"
57,637
<question>: What is the total round of the 129 pick? <context>: CREATE TABLE table_name_49 (round VARCHAR, pick__number VARCHAR)
SELECT COUNT(round) FROM table_name_49 WHERE pick__number = 129
57,638
<question>: What is the record for January 19? <context>: CREATE TABLE table_name_37 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_37 WHERE date = "january 19"
57,639
<question>: What record has the score 111-89? <context>: CREATE TABLE table_name_75 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_75 WHERE score = "111-89"
57,640
<question>: What is the record for January 7? <context>: CREATE TABLE table_name_21 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_21 WHERE date = "january 7"
57,641
<question>: Who was the opponent on January 7? <context>: CREATE TABLE table_name_36 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_36 WHERE date = "january 7"
57,642
<question>: What home team scored 102-87? <context>: CREATE TABLE table_name_60 (home_team VARCHAR, score VARCHAR)
SELECT home_team FROM table_name_60 WHERE score = "102-87"
57,643
<question>: What venue had a Score of 120-108? <context>: CREATE TABLE table_name_1 (venue VARCHAR, score VARCHAR)
SELECT venue FROM table_name_1 WHERE score = "120-108"
57,644
<question>: What was the score when Sydney Spirit was the home team? <context>: CREATE TABLE table_name_41 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_41 WHERE home_team = "sydney spirit"
57,645
<question>: What was the score at North Shore Events Centre? <context>: CREATE TABLE table_name_9 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_9 WHERE venue = "north shore events centre"
57,646
<question>: What is the home team venue for the New Zealand Breakers? <context>: CREATE TABLE table_name_30 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_30 WHERE home_team = "new zealand breakers"
57,647
<question>: Who had the decision when the visitor was Detroit and the home team was Ottawa? <context>: CREATE TABLE table_name_71 (decision VARCHAR, visitor VARCHAR, home VARCHAR)
SELECT decision FROM table_name_71 WHERE visitor = "detroit" AND home = "ottawa"
57,648
<question>: What is the score on March 18? <context>: CREATE TABLE table_name_97 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_97 WHERE date = "march 18"
57,649
<question>: Who had the highest points on March 27? <context>: CREATE TABLE table_name_61 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_name_61 WHERE date = "march 27"
57,650
<question>: Name the average Lead Margin on november 13-november 19, 2007? <context>: CREATE TABLE table_name_86 (lead_margin INTEGER, dates_administered VARCHAR)
SELECT AVG(lead_margin) FROM table_name_86 WHERE dates_administered = "november 13-november 19, 2007"
57,651
<question>: For week 15, what was the total number of attendance recorded? <context>: CREATE TABLE table_name_66 (attendance VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_66 WHERE week = 15
57,652
<question>: what is the score when the home team is king's lynn? <context>: CREATE TABLE table_name_66 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_66 WHERE home_team = "king's lynn"
57,653
<question>: what is the home team when the away team is frickley colliery? <context>: CREATE TABLE table_name_17 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_17 WHERE away_team = "frickley colliery"
57,654
<question>: what is the tie no, on 24 november 1971 and the away team is king's lynn? <context>: CREATE TABLE table_name_65 (tie_no VARCHAR, date VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_65 WHERE date = "24 november 1971" AND away_team = "king's lynn"
57,655
<question>: What is the Longitude of the 61.0s Latitude? <context>: CREATE TABLE table_name_27 (longitude VARCHAR, latitude VARCHAR)
SELECT longitude FROM table_name_27 WHERE latitude = "61.0s"
57,656
<question>: What name has a longitude of 213.0e? <context>: CREATE TABLE table_name_6 (name VARCHAR, longitude VARCHAR)
SELECT name FROM table_name_6 WHERE longitude = "213.0e"
57,657
<question>: Which type had an unknown manufacturer? <context>: CREATE TABLE table_name_57 (type VARCHAR, manufacturer VARCHAR)
SELECT type FROM table_name_57 WHERE manufacturer = "unknown"
57,658
<question>: What is the name of the dreamworks experience from Ferrari? <context>: CREATE TABLE table_name_30 (name VARCHAR, themed_area VARCHAR, manufacturer VARCHAR)
SELECT name FROM table_name_30 WHERE themed_area = "dreamworks experience" AND manufacturer = "ferrari"
57,659
<question>: Which type opened in 1982? <context>: CREATE TABLE table_name_12 (type VARCHAR, opened VARCHAR)
SELECT type FROM table_name_12 WHERE opened = "1982"
57,660
<question>: What themed area opened in 2010 as an animal show? <context>: CREATE TABLE table_name_35 (themed_area VARCHAR, type VARCHAR, opened VARCHAR)
SELECT themed_area FROM table_name_35 WHERE type = "animal show" AND opened = "2010"
57,661
<question>: Which visitor lives in Minnesota? <context>: CREATE TABLE table_name_23 (visitor VARCHAR, home VARCHAR)
SELECT visitor FROM table_name_23 WHERE home = "minnesota"
57,662
<question>: What was the score on november 21? <context>: CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_2 WHERE date = "november 21"
57,663
<question>: Who has the lead in the season where Cathrine Norberg is second and Anna Rindeskog is third? <context>: CREATE TABLE table_name_70 (lead VARCHAR, second VARCHAR, third VARCHAR)
SELECT lead FROM table_name_70 WHERE second = "cathrine norberg" AND third = "anna rindeskog"
57,664
<question>: What is the score of game 21? <context>: CREATE TABLE table_name_96 (score VARCHAR, game VARCHAR)
SELECT score FROM table_name_96 WHERE game = 21
57,665
<question>: What is the score of the game on December 22? <context>: CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_81 WHERE date = "december 22"
57,666
<question>: What is the record when the game is greater than 24? <context>: CREATE TABLE table_name_65 (record VARCHAR, game INTEGER)
SELECT record FROM table_name_65 WHERE game > 24
57,667
<question>: What is the highest Market Value (billion $), when Rank is 02 2, and when Sales (billion $) is greater than 113.1? <context>: CREATE TABLE table_name_99 (market_value__billion_ INTEGER, rank VARCHAR, sales__billion_$_ VARCHAR)
SELECT MAX(market_value__billion_) AS $_ FROM table_name_99 WHERE rank = "02 2" AND sales__billion_$_ > 113.1
57,668
<question>: What is Rank, when Headquarters is United Kingdom, and when Sales (billion $) is 370.9? <context>: CREATE TABLE table_name_14 (rank VARCHAR, headquarters VARCHAR, sales__billion_$_ VARCHAR)
SELECT rank FROM table_name_14 WHERE headquarters = "united kingdom" AND sales__billion_$_ = 370.9
57,669
<question>: What is the lowest Profits (billion $), when Market Value (billion $) is less than 201.3, when Headquarters is United States, and when Company is JPMorgan Chase? <context>: CREATE TABLE table_name_83 (profits__billion_ INTEGER, company VARCHAR, market_value__billion_$_ VARCHAR, headquarters VARCHAR)
SELECT MIN(profits__billion_) AS $_ FROM table_name_83 WHERE market_value__billion_$_ < 201.3 AND headquarters = "united states" AND company = "jpmorgan chase"
57,670
<question>: What is the status of the community that has an area larger than 5.2 sq km, and a Census Ranking of 2,531 of 5,008? <context>: CREATE TABLE table_name_60 (status VARCHAR, area_km_2 VARCHAR, census_ranking VARCHAR)
SELECT status FROM table_name_60 WHERE area_km_2 > 5.2 AND census_ranking = "2,531 of 5,008"
57,671
<question>: What is saint-andré's population? <context>: CREATE TABLE table_name_62 (population VARCHAR, official_name VARCHAR)
SELECT population FROM table_name_62 WHERE official_name = "saint-andré"
57,672
<question>: what's the results of week 12? <context>: CREATE TABLE table_name_57 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_57 WHERE week = 12
57,673
<question>: What opponent has 76,202 attendance ? <context>: CREATE TABLE table_name_5 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_5 WHERE attendance = "76,202"
57,674
<question>: What is the FIS Nordic World Ski Championship years when the winter Olympics took place in 1968? <context>: CREATE TABLE table_name_93 (fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR)
SELECT fis_nordic_world_ski_championships FROM table_name_93 WHERE winter_olympics = 1968
57,675
<question>: Which country has a FIS Nordic World Ski Championship before 1989, was in the winter Olympics before 1980, and has a Holmenkollen of 1956? <context>: CREATE TABLE table_name_26 (country VARCHAR, holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR)
SELECT country FROM table_name_26 WHERE fis_nordic_world_ski_championships < 1989 AND winter_olympics < 1980 AND holmenkollen = "1956"
57,676
<question>: When the Grids is less than 2 what are the total laps? <context>: CREATE TABLE table_name_87 (laps VARCHAR, grid INTEGER)
SELECT COUNT(laps) FROM table_name_87 WHERE grid < 2
57,677
<question>: Which Player has a To par of –4? <context>: CREATE TABLE table_name_93 (player VARCHAR, to_par VARCHAR)
SELECT player FROM table_name_93 WHERE to_par = "–4"
57,678
<question>: Which Place has a Score larger than 68, and a Player of david ogrin? <context>: CREATE TABLE table_name_63 (place VARCHAR, score VARCHAR, player VARCHAR)
SELECT place FROM table_name_63 WHERE score > 68 AND player = "david ogrin"
57,679
<question>: Which Player has a Place of t2? <context>: CREATE TABLE table_name_31 (player VARCHAR, place VARCHAR)
SELECT player FROM table_name_31 WHERE place = "t2"
57,680
<question>: What event did Mikhail Avetisyan win by method of DQ (eye gouging)? <context>: CREATE TABLE table_name_98 (event VARCHAR, method VARCHAR)
SELECT event FROM table_name_98 WHERE method = "dq (eye gouging)"
57,681
<question>: For the item that has a Gecko of 'font', what is the KHTML value? <context>: CREATE TABLE table_name_11 (khtml VARCHAR, gecko VARCHAR)
SELECT khtml FROM table_name_11 WHERE gecko = "font"
57,682
<question>: What is the Prince XML value for the engine that has a Gecko value of 'no' and webkit value of 'nightly build'? <context>: CREATE TABLE table_name_63 (prince_xml VARCHAR, gecko VARCHAR, webkit VARCHAR)
SELECT prince_xml FROM table_name_63 WHERE gecko = "no" AND webkit = "nightly build"
57,683
<question>: What is the Gecko value for the item that has a Trident value of 'font'? <context>: CREATE TABLE table_name_34 (gecko VARCHAR, trident VARCHAR)
SELECT gecko FROM table_name_34 WHERE trident = "font"
57,684
<question>: What is the Gecko value for the item that has a Prince XML value of 'no' and a KHTML value of 'yes'? <context>: CREATE TABLE table_name_6 (gecko VARCHAR, prince_xml VARCHAR, khtml VARCHAR)
SELECT gecko FROM table_name_6 WHERE prince_xml = "yes" AND khtml = "yes"
57,685
<question>: Which Trident version has a Gecko value of 19.0? <context>: CREATE TABLE table_name_57 (trident VARCHAR, gecko VARCHAR)
SELECT trident FROM table_name_57 WHERE gecko = "19.0"
57,686
<question>: For the item with a Prince XML value of 'font', what is the WebKit value? <context>: CREATE TABLE table_name_71 (webkit VARCHAR, prince_xml VARCHAR)
SELECT webkit FROM table_name_71 WHERE prince_xml = "font"
57,687
<question>: Which Played has a Team of cerro corá, and Losses larger than 4? <context>: CREATE TABLE table_name_55 (played INTEGER, team VARCHAR, losses VARCHAR)
SELECT AVG(played) FROM table_name_55 WHERE team = "cerro corá" AND losses > 4
57,688
<question>: Which Losses has Scored of 9, and Points larger than 8? <context>: CREATE TABLE table_name_87 (losses INTEGER, scored VARCHAR, points VARCHAR)
SELECT AVG(losses) FROM table_name_87 WHERE scored = 9 AND points > 8
57,689
<question>: On Race 14 when the FLap is larger than 1, what is the podium number? <context>: CREATE TABLE table_name_42 (podium VARCHAR, race VARCHAR, flap VARCHAR)
SELECT COUNT(podium) FROM table_name_42 WHERE race = 14 AND flap > 1
57,690
<question>: When the Flap is less than 15 and the podium is larger than 11, what is the pole? <context>: CREATE TABLE table_name_95 (pole VARCHAR, flap VARCHAR, podium VARCHAR)
SELECT pole FROM table_name_95 WHERE flap < 15 AND podium > 11
57,691
<question>: When the pole is larger than 0 and the podium is less than 44, with a race number less than 16, what is the FLap? <context>: CREATE TABLE table_name_79 (flap VARCHAR, race VARCHAR, pole VARCHAR, podium VARCHAR)
SELECT flap FROM table_name_79 WHERE pole > 0 AND podium < 44 AND race < 16
57,692
<question>: What is the average Week, when Opponent is Minnesota Vikings? <context>: CREATE TABLE table_name_16 (week INTEGER, opponent VARCHAR)
SELECT AVG(week) FROM table_name_16 WHERE opponent = "minnesota vikings"
57,693
<question>: What is Opponent, when Attendance is 58,836? <context>: CREATE TABLE table_name_19 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_19 WHERE attendance = "58,836"
57,694
<question>: Which engine of Rob Walker Racing Team has 47 points and F tyres? <context>: CREATE TABLE table_name_27 (engine VARCHAR, entrant VARCHAR, points VARCHAR, tyres VARCHAR)
SELECT engine FROM table_name_27 WHERE points = "47" AND tyres = "f" AND entrant = "rob walker racing team"
57,695
<question>: Which entrant has 49 points and a Mclaren M7A chassis? <context>: CREATE TABLE table_name_66 (entrant VARCHAR, points VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_66 WHERE points = "49" AND chassis = "mclaren m7a"
57,696
<question>: How many points did Bob Gerard Racing have in 1965? <context>: CREATE TABLE table_name_37 (points VARCHAR, entrant VARCHAR, year VARCHAR)
SELECT points FROM table_name_37 WHERE entrant = "bob gerard racing" AND year = 1965
57,697
<question>: Which entrant had a Brabham BT10 chassis before 1965? <context>: CREATE TABLE table_name_12 (entrant VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT entrant FROM table_name_12 WHERE year < 1965 AND chassis = "brabham bt10"
57,698
<question>: What is the Attendance on September 28, 1997? <context>: CREATE TABLE table_name_53 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_53 WHERE date = "september 28, 1997"
57,699
<question>: What was the Opponent on August 31, 1997? <context>: CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_15 WHERE date = "august 31, 1997"