question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What's the 1996 when 1997 is 3R?
CREATE TABLE table_name_44 (Id VARCHAR)
SELECT 1996 FROM table_name_44 WHERE 1997 = "3r"
What winner has pierre rolland as mountains classification, with 7 as the stage?
CREATE TABLE table_name_14 (winner VARCHAR, mountains_classification VARCHAR, stage VARCHAR)
SELECT winner FROM table_name_14 WHERE mountains_classification = "pierre rolland" AND stage = "7"
Name the field goals for alexis yackley
CREATE TABLE table_23184448_4 (field_goals INTEGER, player VARCHAR)
SELECT MAX(field_goals) FROM table_23184448_4 WHERE player = "Alexis Yackley"
What was the score of the game on 27 January 1996?
CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_15 WHERE date = "27 january 1996"
Who were the candidates in the election where Saxby Chambliss was the incumbent?
CREATE TABLE table_1341453_12 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341453_12 WHERE incumbent = "Saxby Chambliss"
What is the upstream for the internet 100 plans?
CREATE TABLE table_name_42 (upstream VARCHAR, internet_plan VARCHAR)
SELECT upstream FROM table_name_42 WHERE internet_plan = "internet 100"
What is the total for guests with a ship name of rv indochina, and a crew smaller than 28?
CREATE TABLE table_name_89 (guests VARCHAR, ship_name VARCHAR, crew VARCHAR)
SELECT COUNT(guests) FROM table_name_89 WHERE ship_name = "rv indochina" AND crew < 28
How many Total matches have a Year of career, and a Points won larger than 25?
CREATE TABLE table_name_61 (total_matches INTEGER, year VARCHAR, points_won VARCHAR)
SELECT SUM(total_matches) FROM table_name_61 WHERE year = "career" AND points_won > 25
Which character has a French voice actor of Marc Saez and a German voice actor of Dirk Fenselau?
CREATE TABLE table_name_70 (character VARCHAR, french_voice_actor VARCHAR, german_voice_actor VARCHAR)
SELECT character FROM table_name_70 WHERE french_voice_actor = "marc saez" AND german_voice_actor = "dirk fenselau"
What's the type of muzzle devices on the models with round hand guards?
CREATE TABLE table_12834315_1 (muzzle_device VARCHAR, hand_guards VARCHAR)
SELECT muzzle_device FROM table_12834315_1 WHERE hand_guards = "Round"
Which Bask has Soft of 18, and a Total larger than 35?
CREATE TABLE table_name_17 (bask INTEGER, soft VARCHAR, total VARCHAR)
SELECT AVG(bask) FROM table_name_17 WHERE soft = "18" AND total > 35
What is the Tournament when the 2013 is 2r, and a 2006 is 1r?
CREATE TABLE table_name_26 (tournament VARCHAR)
SELECT tournament FROM table_name_26 WHERE 2013 = "2r" AND 2006 = "1r"
What is the number for march 27-29 whern november 3 is 153?
CREATE TABLE table_25252080_3 (march_27_29 VARCHAR, november_3 VARCHAR)
SELECT march_27_29 FROM table_25252080_3 WHERE november_3 = "153"
What was the home team score at VFL Park?
CREATE TABLE table_name_99 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_99 WHERE venue = "vfl park"
Name the howard bake when bush had 66%
CREATE TABLE table_name_64 (howard_baker VARCHAR, george_h_w_bush VARCHAR)
SELECT howard_baker FROM table_name_64 WHERE george_h_w_bush = "66%"
What is the high school for the player who's hometown is Blue Island, Il?
CREATE TABLE table_20785990_2 (high_school VARCHAR, home_town VARCHAR)
SELECT high_school FROM table_20785990_2 WHERE home_town = "Blue Island, IL"
What height is the tallest for an outside hitter?
CREATE TABLE table_name_94 (height INTEGER, position VARCHAR)
SELECT MAX(height) FROM table_name_94 WHERE position = "outside hitter"
What is the total number of picks for PBA team san miguel beermen who picked rommel daep?
CREATE TABLE table_name_26 (pick VARCHAR, pba_team VARCHAR, player VARCHAR)
SELECT COUNT(pick) FROM table_name_26 WHERE pba_team = "san miguel beermen" AND player = "rommel daep"
which cilvil parishes have areas of 405?
CREATE TABLE table_30120560_1 (civil_parish VARCHAR, area__acres__ VARCHAR)
SELECT civil_parish FROM table_30120560_1 WHERE area__acres__ = 405
On what date was the venue A with a result of 3–0?
CREATE TABLE table_name_93 (date VARCHAR, venue VARCHAR, result VARCHAR)
SELECT date FROM table_name_93 WHERE venue = "a" AND result = "3–0"
What score has Leicestershire as the opponent after 1906?
CREATE TABLE table_name_58 (score VARCHAR, opposition VARCHAR, year VARCHAR)
SELECT score FROM table_name_58 WHERE opposition = "leicestershire" AND year > 1906
What is the name of the role that has a Title of Salud, Dinero y Amor and antagonist in the notes field?
CREATE TABLE table_name_26 (role VARCHAR, notes VARCHAR, title VARCHAR)
SELECT role FROM table_name_26 WHERE notes = "antagonist" AND title = "salud, dinero y amor"
Show names for all regions except for Denmark.
CREATE TABLE region (region_name VARCHAR)
SELECT region_name FROM region WHERE region_name <> 'Denmark'
When did the series number 23 air?
CREATE TABLE table_11630008_3 (original_air_date VARCHAR, series_no VARCHAR)
SELECT original_air_date FROM table_11630008_3 WHERE series_no = 23
WHAT COUNTRY HAS A SCORE OF 68-70=138?
CREATE TABLE table_name_58 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_58 WHERE score = 68 - 70 = 138
What was the position of the player from Saskatchewan Roughriders?
CREATE TABLE table_23619005_3 (position VARCHAR, cfl_team VARCHAR)
SELECT position FROM table_23619005_3 WHERE cfl_team = "Saskatchewan Roughriders"
For week 6, what were the results?
CREATE TABLE table_17861179_1 (result VARCHAR, week VARCHAR)
SELECT result FROM table_17861179_1 WHERE week = 6
Show the famous titles of the artists with both volumes that lasted more than 2 weeks on top and volumes that lasted less than 2 weeks on top.
CREATE TABLE artist (Famous_Title VARCHAR, Artist_ID VARCHAR); CREATE TABLE volume (Artist_ID VARCHAR, Weeks_on_Top INTEGER)
SELECT T1.Famous_Title FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T2.Weeks_on_Top > 2 INTERSECT SELECT T1.Famous_Title FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T2.Weeks_on_Top < 2
What is Resident Country, when Local Location is "Copenhagen"?
CREATE TABLE table_name_79 (resident_country VARCHAR, local_location VARCHAR)
SELECT resident_country FROM table_name_79 WHERE local_location = "copenhagen"
How many total numbers of attendance are there during the game in October 27?
CREATE TABLE table_17972193_1 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_17972193_1 WHERE date = "October 27"
When was the date of an event at Tokyo venue?
CREATE TABLE table_name_86 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_86 WHERE venue = "tokyo"
What torque does a 1905 cc capacity have?
CREATE TABLE table_name_63 (torque VARCHAR, capacity VARCHAR)
SELECT torque FROM table_name_63 WHERE capacity = "1905 cc"
what is the monotone when pareto efficiency is yes, non-dictatorship is yes, and clone independence is yes?
CREATE TABLE table_name_41 (monotone VARCHAR, clone_independence VARCHAR, pareto_efficiency VARCHAR, non_dictatorship VARCHAR)
SELECT monotone FROM table_name_41 WHERE pareto_efficiency = "yes" AND non_dictatorship = "yes" AND clone_independence = "yes"
What is Application Sharing, when Web Conferencing is "Web Conferencing"?
CREATE TABLE table_name_40 (application_sharing VARCHAR, web_conferencing VARCHAR)
SELECT application_sharing FROM table_name_40 WHERE web_conferencing = "web conferencing"
Which constructor had a laps number bigger than 3 when the driver was Jarno Trulli?
CREATE TABLE table_name_5 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_5 WHERE laps > 3 AND driver = "jarno trulli"
Which name had the circuit Monza?
CREATE TABLE table_name_49 (name VARCHAR, circuit VARCHAR)
SELECT name FROM table_name_49 WHERE circuit = "monza"
Who went to ohio state?
CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_53 WHERE college = "ohio state"
Which Score has a To par of +1, and a Player of masashi ozaki?
CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT score FROM table_name_94 WHERE to_par = "+1" AND player = "masashi ozaki"
where together we can do more is gloria mujica ( ph ) what are all the cons.
CREATE TABLE table_2651755_2 (cons VARCHAR, together_we_can_do_more VARCHAR)
SELECT cons FROM table_2651755_2 WHERE together_we_can_do_more = "Gloria Mujica ( PH )"
Please show the names and the players of clubs.
CREATE TABLE club (name VARCHAR, Club_ID VARCHAR); CREATE TABLE player (Player_id VARCHAR, Club_ID VARCHAR)
SELECT T1.name, T2.Player_id FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID
How many entries are shown for high rebounds for the philips arena 20,024 game?
CREATE TABLE table_27713030_11 (high_rebounds VARCHAR, location_attendance VARCHAR)
SELECT COUNT(high_rebounds) FROM table_27713030_11 WHERE location_attendance = "Philips Arena 20,024"
Which venue hosted the Los Angeles Rams as an opponent?
CREATE TABLE table_name_64 (venue VARCHAR, opponent VARCHAR)
SELECT venue FROM table_name_64 WHERE opponent = "los angeles rams"
WHERE THE THEME WAS "YEAR THEY WERE BORN," WHAT THE TOTAL NUMBER OF RESULTS?
CREATE TABLE table_15778392_1 (result VARCHAR, theme VARCHAR)
SELECT COUNT(result) FROM table_15778392_1 WHERE theme = "Year They Were Born"
tries against is 88, played is 22, what is the lost?
CREATE TABLE table_name_57 (lost VARCHAR, played VARCHAR, tries_against VARCHAR)
SELECT lost FROM table_name_57 WHERE played = "22" AND tries_against = "88"
What is the lowest nightly rank for an episode after episode 1 with a rating/share of 2.6/8?
CREATE TABLE table_name_91 (rank__night_ INTEGER, episode VARCHAR, rating VARCHAR)
SELECT MIN(rank__night_) FROM table_name_91 WHERE rating / SHARE(18 - 49) = 2.6 / 8 AND episode > 1
Show the names of companies and the number of employees they have
CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR)
SELECT T3.Name, COUNT(*) FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID GROUP BY T3.Name
When was the event that had Liberia as an opponent and resulted in a 1-0 score?
CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, score VARCHAR)
SELECT date FROM table_name_75 WHERE opponent = "liberia" AND score = "1-0"
What is the club had 431 points against them?
CREATE TABLE table_name_63 (club VARCHAR, points_against VARCHAR)
SELECT club FROM table_name_63 WHERE points_against = "431"
What is the transfer window for Hleb?
CREATE TABLE table_name_69 (transfer_window VARCHAR, name VARCHAR)
SELECT transfer_window FROM table_name_69 WHERE name = "hleb"
Name the score for december 19
CREATE TABLE table_23453931_5 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23453931_5 WHERE date = "December 19"
Who manufactured the car driven by Will Power and Scott Dixon had the most laps?
CREATE TABLE table_27913160_3 (manufacturer VARCHAR, driver VARCHAR, most_laps_led VARCHAR)
SELECT manufacturer FROM table_27913160_3 WHERE driver = "Will Power" AND most_laps_led = "Scott Dixon"
What is Team, when Location Attendance is "Rose Garden 20,020"?
CREATE TABLE table_name_69 (team VARCHAR, location_attendance VARCHAR)
SELECT team FROM table_name_69 WHERE location_attendance = "rose garden 20,020"
Which engine has more than 0 points and a year before 1984?
CREATE TABLE table_name_53 (engine_s_ VARCHAR, points VARCHAR, year VARCHAR)
SELECT engine_s_ FROM table_name_53 WHERE points > 0 AND year < 1984
What is the Player with a Cross Code Debut of RL Test GB v France?
CREATE TABLE table_name_25 (player VARCHAR, cross_code_debut VARCHAR)
SELECT player FROM table_name_25 WHERE cross_code_debut = "rl test gb v france"
What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4?
CREATE TABLE table_name_14 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR)
SELECT MAX(administrative_panel) FROM table_name_14 WHERE cultural_and_educational_panel = 2 AND industrial_and_commercial_panel > 4
Score of 0–3 (11–21, 14–21) had what outcome?
CREATE TABLE table_name_32 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_32 WHERE score = "0–3 (11–21, 14–21)"
What is the record for the date november 19?
CREATE TABLE table_27712180_6 (record VARCHAR, date VARCHAR)
SELECT record FROM table_27712180_6 WHERE date = "November 19"
At which stadiums was attendance total 79176?
CREATE TABLE table_16028479_2 (game_site VARCHAR, attendance VARCHAR)
SELECT game_site FROM table_16028479_2 WHERE attendance = 79176
On 5 May 2011, what was the lead percentage?
CREATE TABLE table_name_61 (lead VARCHAR, date_s__conducted VARCHAR)
SELECT lead FROM table_name_61 WHERE date_s__conducted = "5 may 2011"
On what day was Tie #29 played?
CREATE TABLE table_name_55 (date VARCHAR, tie_no VARCHAR)
SELECT date FROM table_name_55 WHERE tie_no = "29"
What is the highest numbered event?
CREATE TABLE table_30060356_3 (event INTEGER)
SELECT MAX(event) FROM table_30060356_3
What is Friday 4 June if Wednesday 2 June is 20' 11.98 112.071mph?
CREATE TABLE table_25220821_3 (fri_4_june VARCHAR, wed_2_june VARCHAR)
SELECT fri_4_june FROM table_25220821_3 WHERE wed_2_june = "20' 11.98 112.071mph"
What is the Date of the Fifa World Cup with a Score of 1-0?
CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR, competition VARCHAR)
SELECT date FROM table_name_15 WHERE score = "1-0" AND competition = "fifa world cup"
What is the # of candidates that have a popular vote of 41.37%?
CREATE TABLE table_name_36 (_number_of_candidates INTEGER, _percentage_of_popular_vote VARCHAR)
SELECT AVG(_number_of_candidates) FROM table_name_36 WHERE _percentage_of_popular_vote = "41.37%"
Which of the opponents has bye as their box score?
CREATE TABLE table_name_32 (opponent VARCHAR, box_scores VARCHAR)
SELECT opponent FROM table_name_32 WHERE box_scores = "bye"
Which nation has 0 gold, a rank greater than 14, a total of 1, and silver less than 1?
CREATE TABLE table_name_10 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT nation FROM table_name_10 WHERE gold = 0 AND rank > 14 AND total = 1 AND silver < 1
For the NBC network, what was the new/returning/same network status?
CREATE TABLE table_169766_13 (new_returning_same_network VARCHAR, previous_network VARCHAR)
SELECT new_returning_same_network FROM table_169766_13 WHERE previous_network = "NBC"
Which player has an A-League of 113 (0)?
CREATE TABLE table_name_6 (name VARCHAR, a_league VARCHAR)
SELECT name FROM table_name_6 WHERE a_league = "113 (0)"
What was the method in round 1 of the UFC 20 event?
CREATE TABLE table_name_87 (method VARCHAR, round VARCHAR, event VARCHAR)
SELECT method FROM table_name_87 WHERE round = 1 AND event = "ufc 20"
What is the value for Tackles, when the value for Solo is greater than 67, when the value for Sacks is less than 2, and when the value for INT YDS is greater than 1?
CREATE TABLE table_name_75 (tackles VARCHAR, int_yds VARCHAR, solo VARCHAR, sacks VARCHAR)
SELECT tackles FROM table_name_75 WHERE solo > 67 AND sacks < 2 AND int_yds > 1
What is the sum of the prominence in m of slovakia?
CREATE TABLE table_name_39 (prominence__m_ INTEGER, country VARCHAR)
SELECT SUM(prominence__m_) FROM table_name_39 WHERE country = "slovakia"
What was the attendance of the w 28-13 game?
CREATE TABLE table_name_61 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_61 WHERE result = "w 28-13"
How many points against when 41 is the tries for?
CREATE TABLE table_name_59 (points_against VARCHAR, tries_for VARCHAR)
SELECT points_against FROM table_name_59 WHERE tries_for = "41"
What year had a score of 6–7(5), 2–6 and opponent of Brenda Schultz-Mccarthy?
CREATE TABLE table_name_96 (year VARCHAR, opponent_in_the_final VARCHAR, score VARCHAR)
SELECT year FROM table_name_96 WHERE opponent_in_the_final = "brenda schultz-mccarthy" AND score = "6–7(5), 2–6"
What is the percent for when against prohibition is 2978?
CREATE TABLE table_120778_1 (percent_for VARCHAR, against_prohibition VARCHAR)
SELECT percent_for FROM table_120778_1 WHERE against_prohibition = 2978
When is the rhel release date when scientific linux release is 3.0.4
CREATE TABLE table_1500146_1 (rhel_release_date VARCHAR, scientific_linux_release VARCHAR)
SELECT rhel_release_date FROM table_1500146_1 WHERE scientific_linux_release = "3.0.4"
What is the highest score with a Result of 1–1 on 4 march 2001?
CREATE TABLE table_name_59 (scored INTEGER, result VARCHAR, date VARCHAR)
SELECT MAX(scored) FROM table_name_59 WHERE result = "1–1" AND date = "4 march 2001"
What was the lowest attendance for the game that had a time of 3:31 and was before game 7?
CREATE TABLE table_name_58 (attendance INTEGER, time VARCHAR, game VARCHAR)
SELECT MIN(attendance) FROM table_name_58 WHERE time = "3:31" AND game < 7
How many flights depart from City 'Aberdeen' and have destination City 'Ashley'?
CREATE TABLE FLIGHTS (DestAirport VARCHAR, SourceAirport VARCHAR); CREATE TABLE AIRPORTS (AirportCode VARCHAR, City VARCHAR)
SELECT COUNT(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRPORTS AS T3 ON T1.SourceAirport = T3.AirportCode WHERE T2.City = "Ashley" AND T3.City = "Aberdeen"
What label is formatted as compact disc and has United Kingdom as its region?
CREATE TABLE table_name_94 (label VARCHAR, format VARCHAR, region VARCHAR)
SELECT label FROM table_name_94 WHERE format = "compact disc" AND region = "united kingdom"
For the game that was played on week 2, what is the record?
CREATE TABLE table_name_24 (record VARCHAR, week VARCHAR)
SELECT record FROM table_name_24 WHERE week = 2
How many episodes had 3.62 million viewers?
CREATE TABLE table_22353769_3 (share VARCHAR, viewers__millions_ VARCHAR)
SELECT COUNT(share) FROM table_22353769_3 WHERE viewers__millions_ = "3.62"
What are the description and credit of the course which the student whose last name is Smithson took?
CREATE TABLE student (stu_num VARCHAR, stu_lname VARCHAR); CREATE TABLE course (crs_description VARCHAR, crs_credit VARCHAR, crs_code VARCHAR); CREATE TABLE CLASS (class_code VARCHAR, crs_code VARCHAR); CREATE TABLE enroll (class_code VARCHAR, stu_num VARCHAR)
SELECT T4.crs_description, T4.crs_credit FROM CLASS AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN student AS T3 ON T3.stu_num = T2.stu_num JOIN course AS T4 ON T4.crs_code = T1.crs_code WHERE T3.stu_lname = 'Smithson'
What Torque has a Power of HP (KW)?
CREATE TABLE table_name_21 (torque VARCHAR, power VARCHAR)
SELECT torque FROM table_name_21 WHERE power = "hp (kw)"
Who was the leading scorer against the visiting team Bulls?
CREATE TABLE table_name_96 (leading_scorer VARCHAR, visitor VARCHAR)
SELECT leading_scorer FROM table_name_96 WHERE visitor = "bulls"
What is the second leg that has kk bosna?
CREATE TABLE table_name_49 (team__number1 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_49 WHERE team__number1 = "kk bosna"
Name the marginal ordinary income tax rate that has a head of household of $372,951+
CREATE TABLE table_name_40 (marginal_ordinary_income_tax_rate VARCHAR, head_of_household VARCHAR)
SELECT marginal_ordinary_income_tax_rate FROM table_name_40 WHERE head_of_household = "$372,951+"
When FA Cup Apps is 9 what is the smallest number of FA Cup Goals?
CREATE TABLE table_10240125_1 (fa_cup_goals INTEGER, fa_cup_apps VARCHAR)
SELECT MIN(fa_cup_goals) FROM table_10240125_1 WHERE fa_cup_apps = 9
Who is the driver for team Collé Racing with more than 206 points?
CREATE TABLE table_name_66 (driver VARCHAR, team VARCHAR, points VARCHAR)
SELECT driver FROM table_name_66 WHERE team = "collé racing" AND points > 206
What is Team 2, when Score is 2 - 1?
CREATE TABLE table_name_86 (team_2 VARCHAR, score VARCHAR)
SELECT team_2 FROM table_name_86 WHERE score = "2 - 1"
What is the largest gold when silver is less than 1 for Canada and bronze is less than 0?
CREATE TABLE table_name_48 (gold INTEGER, bronze VARCHAR, silver VARCHAR, nation VARCHAR)
SELECT MAX(gold) FROM table_name_48 WHERE silver < 1 AND nation = "canada" AND bronze < 0
What date has 2:59 as the time?
CREATE TABLE table_name_95 (date VARCHAR, time VARCHAR)
SELECT date FROM table_name_95 WHERE time = "2:59"
what is Peter Little's party?
CREATE TABLE table_2668329_11 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_2668329_11 WHERE incumbent = "Peter Little"
What venue is the home of the Carlton team?
CREATE TABLE table_name_39 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_39 WHERE home_team = "carlton"
Tell me the championship game for big eight
CREATE TABLE table_name_29 (championship_game VARCHAR, conference VARCHAR)
SELECT championship_game FROM table_name_29 WHERE conference = "big eight"
Name the hebrew for *tišʻ-
CREATE TABLE table_26919_6 (hebrew VARCHAR, proto_semitic VARCHAR)
SELECT hebrew FROM table_26919_6 WHERE proto_semitic = "*tišʻ-"
What was the cyclone's pressure in the storm that death was equal to 95km/h (60mph)?
CREATE TABLE table_10602294_1 (pressure VARCHAR, deaths VARCHAR)
SELECT pressure FROM table_10602294_1 WHERE deaths = "95km/h (60mph)"
Which film or series was nominated in the category of best fansite?
CREATE TABLE table_name_2 (film_or_series VARCHAR, result VARCHAR, category VARCHAR)
SELECT film_or_series FROM table_name_2 WHERE result = "nominated" AND category = "best fansite"
What engine did Dick Simon Racing use?
CREATE TABLE table_name_21 (engine VARCHAR, team VARCHAR)
SELECT engine FROM table_name_21 WHERE team = "dick simon racing"
What is the name of the player from Maylands, Western Australia?
CREATE TABLE table_24501530_1 (candidate VARCHAR, hometown VARCHAR)
SELECT candidate FROM table_24501530_1 WHERE hometown = "Maylands, Western Australia"