answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT score FROM table_name_29 WHERE date = "12 september 1990"
What is the score of the match on 12 September 1990?
CREATE TABLE table_name_29 (score VARCHAR, date VARCHAR)
SELECT SUM(top_25) FROM table_name_46 WHERE wins > 0
What is the sum of Top-25 when there are more than 0 wins?
CREATE TABLE table_name_46 (top_25 INTEGER, wins INTEGER)
SELECT to_par FROM table_name_11 WHERE score = 71 - 74 - 68 = 213
For which to par was the score 71-74-68=213?
CREATE TABLE table_name_11 (to_par VARCHAR, score VARCHAR)
SELECT district FROM table_1341598_10 WHERE incumbent = "Michael Bilirakis"
In what district was the incumbent Michael Bilirakis?
CREATE TABLE table_1341598_10 (district VARCHAR, incumbent VARCHAR)
SELECT death FROM table_name_45 WHERE name = "elisabeth of valois"
When did elisabeth of valois die?
CREATE TABLE table_name_45 (death VARCHAR, name VARCHAR)
SELECT MAX(3 AS rd_runner_up) FROM table_28634206_1 WHERE country = "Taiwan"
How many times was taiwan 3rd runner-up?
CREATE TABLE table_28634206_1 (country VARCHAR)
SELECT COUNT(year) FROM table_name_39 WHERE theme = "toronto maple leafs" AND issue_price = 24.95
How many years have a theme of Toronto Maple Leafs and an Issue Price of 24.95?
CREATE TABLE table_name_39 (year VARCHAR, theme VARCHAR, issue_price VARCHAR)
SELECT rainfall_by_depth__mm_year_ FROM table_25983027_1 WHERE land_area__km_2__ = "8,543.2"
In the Central region, where the land area (km 2) is 8,543.2, what was the rainfall by depth (mm/year)?
CREATE TABLE table_25983027_1 (rainfall_by_depth__mm_year_ VARCHAR, land_area__km_2__ VARCHAR)
SELECT AVG(round) FROM table_name_22 WHERE pick__number > 70 AND position = "tackle"
What is the average Round, when Pick # is greater than 70, and when Position is Tackle?
CREATE TABLE table_name_22 (round INTEGER, pick__number VARCHAR, position VARCHAR)
SELECT race FROM table_name_24 WHERE track = "pocono" AND date = "08-02-2008"
What race happened at pocono on 08-02-2008?
CREATE TABLE table_name_24 (race VARCHAR, track VARCHAR, date VARCHAR)
SELECT result FROM table_name_49 WHERE date = "may 14"
What is the result of the game on May 14?
CREATE TABLE table_name_49 (result VARCHAR, date VARCHAR)
SELECT high_points FROM table_17118657_10 WHERE score = "62-70"
If the score is 62-70, what are the high points?
CREATE TABLE table_17118657_10 (high_points VARCHAR, score VARCHAR)
SELECT AVG(gold) FROM table_name_51 WHERE nation = "japan (jpn)" AND total < 5
Japan (JPN) with a total of less than 5, has what average gold medals?
CREATE TABLE table_name_51 (gold INTEGER, nation VARCHAR, total VARCHAR)
SELECT COUNT(year) FROM table_name_29 WHERE rank = "16th" AND points > 12
What year was she ranked 16th with over 12 points?
CREATE TABLE table_name_29 (year VARCHAR, rank VARCHAR, points VARCHAR)
SELECT COUNT(year__ceremony_) FROM table_13719788_1 WHERE film_title_used_in_nomination = "Nagabonar"
How many years have a film that uses the title "Nagabonar" in the nomination?
CREATE TABLE table_13719788_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT batting_team FROM table_name_63 WHERE venue = "chittagong" AND season = "2003"
What batting team played in Chittagong in 2003?
CREATE TABLE table_name_63 (batting_team VARCHAR, venue VARCHAR, season VARCHAR)
SELECT date FROM table_name_2 WHERE competition = "international friendly"
On what date was there an International Friendly competition?
CREATE TABLE table_name_2 (date VARCHAR, competition VARCHAR)
SELECT pole_position FROM table_name_87 WHERE race = "belgian grand prix"
What was the pole position for the belgian grand prix?
CREATE TABLE table_name_87 (pole_position VARCHAR, race VARCHAR)
SELECT AVG(played) FROM table_name_64 WHERE goals_for < 43 AND draws > 9 AND position > 17 AND points = "30-8"
What are the average number of played with goals of less than 43, more than 9 draws, a higher position than 17 and 30-8 points?
CREATE TABLE table_name_64 (played INTEGER, points VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR)
SELECT production FROM table_2477085_1 WHERE alpina_model = "B10 4,6"
Name the production for alpina model being b10 4,6
CREATE TABLE table_2477085_1 (production VARCHAR, alpina_model VARCHAR)
SELECT T3.manager_name FROM station_company AS T1 JOIN company AS T2 ON T1.company_id = T2.company_id JOIN gas_station AS T3 ON T1.station_id = T3.station_id WHERE T2.company = 'ExxonMobil'
Show the manager name for gas stations belonging to the ExxonMobil company.
CREATE TABLE gas_station (manager_name VARCHAR, station_id VARCHAR); CREATE TABLE station_company (company_id VARCHAR, station_id VARCHAR); CREATE TABLE company (company_id VARCHAR, company VARCHAR)
SELECT president FROM table_name_6 WHERE presidency > 7
What President has a Presidency greater than 7?
CREATE TABLE table_name_6 (president VARCHAR, presidency INTEGER)
SELECT enrollment FROM table_262534_2 WHERE location__population_ = "Lebanon, Tennessee (20,235)"
What is the enrollment for the institution that is located in Lebanon, Tennessee (20,235)?
CREATE TABLE table_262534_2 (enrollment VARCHAR, location__population_ VARCHAR)
SELECT fa_cup FROM table_name_36 WHERE other_[c_] = "0 12 0 (0)"
The other [C] of 0 12 0 (0) belongs to what FA Cup?
CREATE TABLE table_name_36 (fa_cup VARCHAR, other_ VARCHAR, c_ VARCHAR)
SELECT place FROM table_name_81 WHERE score = 70 - 67 - 69 - 69 = 275
Can you tell me the Place that has the Score of 70-67-69-69=275?
CREATE TABLE table_name_81 (place VARCHAR, score VARCHAR)
SELECT score FROM table_name_72 WHERE tie_no = "12"
What was the score when the tie no was 12?
CREATE TABLE table_name_72 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_33 WHERE date = "october 23"
What was the score on october 23?
CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR)
SELECT COUNT(top_5) FROM table_name_6 WHERE tournament = "masters tournament" AND top_10 < 2
How many times is the tournament the masters tournament and the top-10 is less than 2?
CREATE TABLE table_name_6 (top_5 VARCHAR, tournament VARCHAR, top_10 VARCHAR)
SELECT units_sold_in_the_us FROM table_name_72 WHERE units_sold_in_japan = "346,000"
How many units were sold in the US of the game that sold 346,000 units in japan?
CREATE TABLE table_name_72 (units_sold_in_the_us VARCHAR, units_sold_in_japan VARCHAR)
SELECT winner FROM table_name_80 WHERE surface = "carpet (i)"
Who is the Winner, when the Surface is Carpet (i)?
CREATE TABLE table_name_80 (winner VARCHAR, surface VARCHAR)
SELECT candidates FROM table_2668416_18 WHERE district = "Virginia 17"
If the district is Virginia 17, who are the candidates?
CREATE TABLE table_2668416_18 (candidates VARCHAR, district VARCHAR)
SELECT engine FROM table_name_28 WHERE rounds = "all" AND entrant = "scuderia ferrari"
What kind of engine is in the car for Scuderia Ferrari that went all rounds?
CREATE TABLE table_name_28 (engine VARCHAR, rounds VARCHAR, entrant VARCHAR)
SELECT place FROM table_name_83 WHERE money___$__ = 150 AND player = "bobby cruickshank"
Which Place that has Money of 150, and a Player of bobby cruickshank?
CREATE TABLE table_name_83 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)
SELECT original_nfl_team FROM table_name_51 WHERE college = "oregon" AND pos = "dt"
What is the original NFL team of the College of Oregon DT Player?
CREATE TABLE table_name_51 (original_nfl_team VARCHAR, college VARCHAR, pos VARCHAR)
SELECT COUNT(laps) FROM table_name_50 WHERE qual = "136.168"
How many laps had a qualification of 136.168?
CREATE TABLE table_name_50 (laps VARCHAR, qual VARCHAR)
SELECT russian FROM table_25008327_8 WHERE bulgarian = "пес, куче"
What is every value for Russian when value for Bulgarian is пес, куче?
CREATE TABLE table_25008327_8 (russian VARCHAR, bulgarian VARCHAR)
SELECT opponent FROM table_name_97 WHERE record = "38-34-10"
Name the opponent with record of 38-34-10
CREATE TABLE table_name_97 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(tariff_code) FROM table_10408617_5 WHERE bts_retail_price__regulated_ = "2p/min or inclusive"
How many tariff codes have a bts retail price of 2p/min or inclusive?
CREATE TABLE table_10408617_5 (tariff_code VARCHAR, bts_retail_price__regulated_ VARCHAR)
SELECT result_games FROM table_21436373_11 WHERE attendance = 54530
Name the result/games for 54530
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
SELECT dominant_religion__2002_ FROM table_2562572_26 WHERE settlement = "Gornji Tavankut"
What is the dominant religion in Gornji Tavankut?
CREATE TABLE table_2562572_26 (dominant_religion__2002_ VARCHAR, settlement VARCHAR)
SELECT MAX(win__percentage) FROM table_name_80 WHERE coach = "john gartin" AND record = "11-0" AND year = "2009"
What is the largest win percentage when John Gartin is coach, the record is 11-0, and the year is 2009?
CREATE TABLE table_name_80 (win__percentage INTEGER, year VARCHAR, coach VARCHAR, record VARCHAR)
SELECT rank FROM table_18047346_5 WHERE iata_code = "JFK"
What rank is the airport whose IATA Code is JFK?
CREATE TABLE table_18047346_5 (rank VARCHAR, iata_code VARCHAR)
SELECT team FROM table_11961582_6 WHERE location_attendance = "Philips Arena 18,227"
What is the team located at philips arena 18,227?
CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR)
SELECT COUNT(joined) FROM table_262508_1 WHERE nickname = "Warriors"
How many joined the Warriors?
CREATE TABLE table_262508_1 (joined VARCHAR, nickname VARCHAR)
SELECT dates FROM table_name_6 WHERE rally_hq = "kingscliff"
Which dates have a Rally HQ of kingscliff?
CREATE TABLE table_name_6 (dates VARCHAR, rally_hq VARCHAR)
SELECT manufacturer FROM table_2241841_1 WHERE date = "May 21"
Who made the car that won the race on May 21?
CREATE TABLE table_2241841_1 (manufacturer VARCHAR, date VARCHAR)
SELECT record FROM table_name_12 WHERE event = "20000 m walk"
What is the record for the 20000 m walk?
CREATE TABLE table_name_12 (record VARCHAR, event VARCHAR)
SELECT variant FROM table_name_68 WHERE launch_site = "white sands"
What Variant has a Launch site that is white sands?
CREATE TABLE table_name_68 (variant VARCHAR, launch_site VARCHAR)
SELECT date FROM table_name_5 WHERE score = "379"
What's the date the score was 379?
CREATE TABLE table_name_5 (date VARCHAR, score VARCHAR)
SELECT published_as_serial FROM table_name_82 WHERE published_as_novel = "october 1917, mcclurg"
Which Published as serial has a Published as novel of october 1917, mcclurg?
CREATE TABLE table_name_82 (published_as_serial VARCHAR, published_as_novel VARCHAR)
SELECT venue FROM table_name_45 WHERE position_in_2004 = "9"
Which venue was number 9 for 2004?
CREATE TABLE table_name_45 (venue VARCHAR, position_in_2004 VARCHAR)
SELECT _percentage_of_1_rep_max_last_set_ FROM table_name_28 WHERE set_4 = "145lb x 5reps"
How many % of 1 Rep Max(Last Set) has a Set 4 of 145lb x 5reps?
CREATE TABLE table_name_28 (_percentage_of_1_rep_max_last_set_ VARCHAR, set_4 VARCHAR)
SELECT t1.name FROM ship AS t1 JOIN captain AS t2 ON t1.ship_id = t2.ship_id WHERE t2.rank = 'Midshipman' INTERSECT SELECT t1.name FROM ship AS t1 JOIN captain AS t2 ON t1.ship_id = t2.ship_id WHERE t2.rank = 'Lieutenant'
Find the name of the ships that are steered by both a captain with Midshipman rank and a captain with Lieutenant rank.
CREATE TABLE ship (name VARCHAR, ship_id VARCHAR); CREATE TABLE captain (ship_id VARCHAR, rank VARCHAR)
SELECT venue FROM table_name_78 WHERE result = "won" AND competition = "friendly" AND date = "28 may 2012"
Where was the friendly competition that Andriy Yarmolenko won on 28 may 2012?
CREATE TABLE table_name_78 (venue VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR)
SELECT rebounds_per_game FROM table_28547289_1 WHERE minutes_per_game = "35"
How many rebounds per game did Andrej Džaković average when playing 35 minutes per game?
CREATE TABLE table_28547289_1 (rebounds_per_game VARCHAR, minutes_per_game VARCHAR)
SELECT title FROM table_name_54 WHERE year = 1971
What title was released in 1971?
CREATE TABLE table_name_54 (title VARCHAR, year VARCHAR)
SELECT hometown FROM table_name_22 WHERE legislatures = "twenty-sixth"
What is the hometown of the representative that served the twenty-sixth legislature?
CREATE TABLE table_name_22 (hometown VARCHAR, legislatures VARCHAR)
SELECT date FROM table_name_71 WHERE new_entries_this_round = "44"
What is the date for the row with a new entries this round of 44?
CREATE TABLE table_name_71 (date VARCHAR, new_entries_this_round VARCHAR)
SELECT COUNT(episode) FROM table_15739098_1 WHERE story = "Alan Nourse"
Name the number of episodes for alan nourse
CREATE TABLE table_15739098_1 (episode VARCHAR, story VARCHAR)
SELECT payment_method_code FROM INVOICES GROUP BY payment_method_code ORDER BY COUNT(*) DESC LIMIT 1
What is the payment method code used by the most orders?
CREATE TABLE INVOICES (payment_method_code VARCHAR)
SELECT time_retired FROM table_name_46 WHERE laps < 73 AND grid = 5
What is the time/retired associated with a grid of 5 and under 73 laps?
CREATE TABLE table_name_46 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT branding FROM table_name_19 WHERE location = "metro manila" AND callsign = "dwbl"
What is the Branding of the Metro Manila Frequency with a Callsign of DWBL?
CREATE TABLE table_name_19 (branding VARCHAR, location VARCHAR, callsign VARCHAR)
SELECT athlete FROM table_1745820_5 WHERE event = "Flyweight"
Which athlete competed in the flyweight division?
CREATE TABLE table_1745820_5 (athlete VARCHAR, event VARCHAR)
SELECT settlement FROM table_2562572_33 WHERE cyrillic_name_other_names = "Мартонош (Hungarian: Martonos)"
What settlement is also called мартонош (hungarian: martonos)?
CREATE TABLE table_2562572_33 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT three_mora_word FROM table_name_18 WHERE NOT accented_mora = "low tone" AND one_mora = "2"
What is the three-mora word with a low tone accented mora and a one mora of 2?
CREATE TABLE table_name_18 (three_mora_word VARCHAR, one_mora VARCHAR, accented_mora VARCHAR)
SELECT years FROM table_name_24 WHERE goals = 82
What Years have a Goal of 82?
CREATE TABLE table_name_24 (years VARCHAR, goals VARCHAR)
SELECT introductory_phrase FROM table_25691838_8 WHERE production_code = 6101
What was the introductory phrase on the episode production code 6101?
CREATE TABLE table_25691838_8 (introductory_phrase VARCHAR, production_code VARCHAR)
SELECT MIN(crowd) FROM table_name_57 WHERE away_team = "richmond"
What was the lowest crowd seen at a game that Richmond was the Away team in?
CREATE TABLE table_name_57 (crowd INTEGER, away_team VARCHAR)
SELECT name FROM table_name_9 WHERE moving_to = "metalurh donetsk"
Who is moving to Metalurh Donetsk?
CREATE TABLE table_name_9 (name VARCHAR, moving_to VARCHAR)
SELECT country FROM table_2508175_1 WHERE annual_co2_emissions__in_thousands_of_metric_tons_ = 1811
when the annual co2 emissions (in thousands of metric tons) is 1811, what is the country?
CREATE TABLE table_2508175_1 (country VARCHAR, annual_co2_emissions__in_thousands_of_metric_tons_ VARCHAR)
SELECT AVG(year) FROM table_name_79 WHERE entrant = "sasol jordan yamaha"
How many years has Sasol Jordan Yamaha as an Entrant?
CREATE TABLE table_name_79 (year INTEGER, entrant VARCHAR)
SELECT COUNT(voice_actor__english_1998___pioneer_) FROM table_1410384_1 WHERE voice_actor__japanese_ = "Shinobu Satouchi"
how many voice actor (englbeingh 1998 / pioneer) with voice actor (japanese) being shinobu satouchi
CREATE TABLE table_1410384_1 (voice_actor__english_1998___pioneer_ VARCHAR, voice_actor__japanese_ VARCHAR)
SELECT hanyu_pinyin FROM table_name_65 WHERE density___km²_ = "77"
What is the Pinyin for the item that has a density of 77?
CREATE TABLE table_name_65 (hanyu_pinyin VARCHAR, density___km²_ VARCHAR)
SELECT power FROM table_name_49 WHERE acceleration_0_100km_h__0_62mph_ = "9.1 s"
What is the Power when the acceleration 0–100km/h (0–62mph) is 9.1 s?
CREATE TABLE table_name_49 (power VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)
SELECT driver FROM table_name_25 WHERE laps = 74 AND grid > 9
Who drive 74 laps in a grid larger than 9?
CREATE TABLE table_name_25 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT MIN(capacity___mw__) FROM table_name_99 WHERE rank < 46 AND province = "newfoundland and labrador"
what is the least capacity (mw) when the rank is less than 46 and the province is newfoundland and labrador?
CREATE TABLE table_name_99 (capacity___mw__ INTEGER, rank VARCHAR, province VARCHAR)
SELECT builder FROM table_name_98 WHERE kanji = "曙"
Which builder has the the kanji of 曙?
CREATE TABLE table_name_98 (builder VARCHAR, kanji VARCHAR)
SELECT to_par FROM table_name_66 WHERE country = "united states" AND player = "cristie kerr"
What is the to par of United States' Cristie Kerr?
CREATE TABLE table_name_66 (to_par VARCHAR, country VARCHAR, player VARCHAR)
SELECT group FROM table_14981555_1 WHERE race = "3yo Hcp Restricted Maiden"
What is the group name when 3yo hcp restricted maiden was raced?
CREATE TABLE table_14981555_1 (group VARCHAR, race VARCHAR)
SELECT Team FROM player ORDER BY Age DESC LIMIT 5
List the teams of the players with the top 5 largest ages.
CREATE TABLE player (Team VARCHAR, Age VARCHAR)
SELECT MAX(wins) FROM table_name_43 WHERE benalla_dfl = "tatong"
What's the most wins of Tatong?
CREATE TABLE table_name_43 (wins INTEGER, benalla_dfl VARCHAR)
SELECT DISTINCT T2.emp_fname, T3.prof_high_degree FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN professor AS T3 ON T2.emp_num = T3.emp_num JOIN department AS T4 ON T4.dept_code = T3.dept_code WHERE T4.dept_name = 'Computer Info. Systems'
Find the first names and degree of all professors who are teaching some class in Computer Info. Systems department.
CREATE TABLE professor (prof_high_degree VARCHAR, emp_num VARCHAR, dept_code VARCHAR); CREATE TABLE department (dept_code VARCHAR, dept_name VARCHAR); CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR)
SELECT constructor FROM table_1140117_5 WHERE circuit = "Silverstone"
What is the constructor for the Silverstone circuit?
CREATE TABLE table_1140117_5 (constructor VARCHAR, circuit VARCHAR)
SELECT MAX(town_ships) FROM table_19457_1 WHERE village_groups = 376
How many townships are there in the region with 376 village groups?
CREATE TABLE table_19457_1 (town_ships INTEGER, village_groups VARCHAR)
SELECT club_s_ FROM table_28286776_12 WHERE goal_s_ = 10
What club did the championship player come from who had 10 goals?
CREATE TABLE table_28286776_12 (club_s_ VARCHAR, goal_s_ VARCHAR)
SELECT SUM(game_2) FROM table_name_67 WHERE total = 759 OFFSET 997
What is the game 2 sum attendance of the team with a total attendance of 759,997?
CREATE TABLE table_name_67 (game_2 INTEGER, total VARCHAR)
SELECT SUM(attendance) FROM table_name_51 WHERE opponent = "dallas cowboys" AND week > 5
What is the Attendance with Opponent Dallas Cowboys in a Week greater than 5?
CREATE TABLE table_name_51 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
SELECT MIN(founded) FROM table_261913_1 WHERE joined = "1977"
What was the earliest date an institution was founded that joined in 1977?
CREATE TABLE table_261913_1 (founded INTEGER, joined VARCHAR)
SELECT power_output__kw_ FROM table_name_6 WHERE model = "hxd3d"
What is the power output (kw) of model hxd3d?
CREATE TABLE table_name_6 (power_output__kw_ VARCHAR, model VARCHAR)
SELECT MAX(total) FROM table_name_72 WHERE date = 1602 AND greater_doubles < 16
Which Total has a Date of 1602, and Greater Doubles smaller than 16?
CREATE TABLE table_name_72 (total INTEGER, date VARCHAR, greater_doubles VARCHAR)
SELECT high_assists FROM table_name_45 WHERE date = "april 28"
Who has the highest assists on april 28?
CREATE TABLE table_name_45 (high_assists VARCHAR, date VARCHAR)
SELECT team__number2 FROM table_21434618_1 WHERE team__number1 = "Poseidon Neoi Porroi"
which team#2 played against poseidon neoi porroi
CREATE TABLE table_21434618_1 (team__number2 VARCHAR, team__number1 VARCHAR)
SELECT MAX(points) FROM table_name_1 WHERE opponent = "boston bruins" AND game = 77
What is the highest number of points against the boston bruins on game 77?
CREATE TABLE table_name_1 (points INTEGER, opponent VARCHAR, game VARCHAR)
SELECT matches FROM table_name_11 WHERE team = "gold coast"
Name the matches for gold coast
CREATE TABLE table_name_11 (matches VARCHAR, team VARCHAR)
SELECT kicker FROM table_name_92 WHERE yards = 45 AND date = "november 8, 1971"
Yards of 45, and a Date of november 8, 1971 is what kicker?
CREATE TABLE table_name_92 (kicker VARCHAR, yards VARCHAR, date VARCHAR)
SELECT award FROM table_name_31 WHERE organisation = "star awards" AND year < 2005 AND result = "won"
What is the award for the Star Awards earlier than 2005 and the result is won?
CREATE TABLE table_name_31 (award VARCHAR, result VARCHAR, organisation VARCHAR, year VARCHAR)
SELECT MIN(rank) FROM table_name_53 WHERE rebounds < 130 AND team = "partizan igokea"
What rank is Partizan Igokea that has less than 130 rebounds?
CREATE TABLE table_name_53 (rank INTEGER, rebounds VARCHAR, team VARCHAR)
SELECT incumbent FROM table_1342331_5 WHERE district = "Arkansas 1"
who is the the incumbent with dbeingtrict being arkansas 1
CREATE TABLE table_1342331_5 (incumbent VARCHAR, district VARCHAR)
SELECT floors FROM table_name_89 WHERE location = "tower hill"
Which Floors has a Location of tower hill?
CREATE TABLE table_name_89 (floors VARCHAR, location VARCHAR)
SELECT COUNT(grid) FROM table_name_27 WHERE driver = "pedro de la rosa"
What is Pedro De La Rosa's total number of Grid?
CREATE TABLE table_name_27 (grid VARCHAR, driver VARCHAR)