answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT AVG(industry) FROM table_name_44 WHERE agriculture > 11
What is the average Industry, when Agriculture is greater than 11?
CREATE TABLE table_name_44 (industry INTEGER, agriculture INTEGER)
SELECT COUNT(title_and_source) FROM table_26538035_1 WHERE developer = "Clover Studio"
How many titles/sources have a developer of Clover Studio?
CREATE TABLE table_26538035_1 (title_and_source VARCHAR, developer VARCHAR)
SELECT score FROM table_name_32 WHERE date = "february 18, 2008"
What was the Score on February 18, 2008?
CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)
SELECT typhoid_fever FROM table_1007688_1 WHERE year = "1929"
what is the typhoid fever number for the year 1929
CREATE TABLE table_1007688_1 (typhoid_fever VARCHAR, year VARCHAR)
SELECT 2 AS nd_party FROM table_name_16 WHERE election = "1874"
What is the 2nd party in the 1874 election?
CREATE TABLE table_name_16 (election VARCHAR)
SELECT Carrier FROM phone WHERE Memory_in_G < 32 INTERSECT SELECT Carrier FROM phone WHERE Memory_in_G > 64
Show the carriers that have both phones with memory smaller than 32 and phones with memory bigger than 64.
CREATE TABLE phone (Carrier VARCHAR, Memory_in_G INTEGER)
SELECT AVG(scoring_average) FROM table_name_51 WHERE top_10s = 4
What was the average scoring the the top 10s is 4?
CREATE TABLE table_name_51 (scoring_average INTEGER, top_10s VARCHAR)
SELECT ties FROM table_name_38 WHERE wins = "0"
What is the tie with a win of 0?
CREATE TABLE table_name_38 (ties VARCHAR, wins VARCHAR)
SELECT conv FROM table_name_37 WHERE player = "dick hyland"
What was Dick Hyland's conv?
CREATE TABLE table_name_37 (conv VARCHAR, player VARCHAR)
SELECT name FROM table_name_40 WHERE call_sign = "dwys"
What name has the call sign DWYS?
CREATE TABLE table_name_40 (name VARCHAR, call_sign VARCHAR)
SELECT MAX(byes) FROM table_name_24 WHERE losses = 6 AND draws > 0
When losses is 6 and draws is more than 0, what is the greatest byes?
CREATE TABLE table_name_24 (byes INTEGER, losses VARCHAR, draws VARCHAR)
SELECT SUM(matches) FROM table_name_25 WHERE player = "jim laker" AND wickets < 9
what is the sum of matches when the player is jim laker and wikets is less than 9?
CREATE TABLE table_name_25 (matches INTEGER, player VARCHAR, wickets VARCHAR)
SELECT rank FROM table_name_52 WHERE 2010 = "2,903,000"
what is the ranking for 2010 production of 2,903,000?
CREATE TABLE table_name_52 (rank VARCHAR)
SELECT location_attendance FROM table_23281862_6 WHERE high_points = "Carl Landry (25)"
Where was the game in which Carl Landry (25) did the most high points played?
CREATE TABLE table_23281862_6 (location_attendance VARCHAR, high_points VARCHAR)
SELECT version FROM table_name_45 WHERE year < 1996
What was the Version prior to 1996?
CREATE TABLE table_name_45 (version VARCHAR, year INTEGER)
SELECT COUNT(gold) FROM table_name_31 WHERE bronze = 2 AND rank = "61" AND total > 3
What is the total number of gold medals when there were 2 bronze medals, a total of more than 3 medals and ranked 61?
CREATE TABLE table_name_31 (gold VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT city_location FROM table_name_48 WHERE race_name = "budweiser/g. i. joe's 200"
Where is the budweiser/g. i. joe's 200?
CREATE TABLE table_name_48 (city_location VARCHAR, race_name VARCHAR)
SELECT player FROM table_28540609_2 WHERE starts = 26
Which player made exactly 26 starts?
CREATE TABLE table_28540609_2 (player VARCHAR, starts VARCHAR)
SELECT against FROM table_11326124_3 WHERE opponent = "Tina Pisnik"
Who did Tina Pisnik verse?
CREATE TABLE table_11326124_3 (against VARCHAR, opponent VARCHAR)
SELECT margin FROM table_22754491_1 WHERE constituency = "Periyakulam"
What is the margin when periyakulam is the constituency?
CREATE TABLE table_22754491_1 (margin VARCHAR, constituency VARCHAR)
SELECT power_output FROM table_name_88 WHERE wheel_arrangement = "b-b" AND build_date = "1952"
What is the power of b-b wheel arrangement, built in 1952?
CREATE TABLE table_name_88 (power_output VARCHAR, wheel_arrangement VARCHAR, build_date VARCHAR)
SELECT team FROM table_name_10 WHERE assists > 118 AND rank < 2
I want the team with assists greater than 118 and rank less than 2
CREATE TABLE table_name_10 (team VARCHAR, assists VARCHAR, rank VARCHAR)
SELECT directx FROM table_19161046_1 WHERE code_name = "RV770 PRO" AND core___mhz__ > 650.0
What's the directx of the model with code name RV770 PRO and a core bigger than 650.0 MHz?
CREATE TABLE table_19161046_1 (directx VARCHAR, code_name VARCHAR, core___mhz__ VARCHAR)
SELECT date FROM table_name_17 WHERE home_team = "richmond"
What date was Richmond the home team?
CREATE TABLE table_name_17 (date VARCHAR, home_team VARCHAR)
SELECT head_coach FROM table_name_94 WHERE team = "arminia bielefeld"
Who is the head coach for the team, arminia bielefeld?
CREATE TABLE table_name_94 (head_coach VARCHAR, team VARCHAR)
SELECT COUNT(attendance) FROM table_name_80 WHERE opponent = "st. johnstone" AND venue = "home"
What was the Attendance during the Home game where St. Johnstone was the Opponent?
CREATE TABLE table_name_80 (attendance VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT shoulder FROM table_name_41 WHERE neck = "7.3 (.288)"
Which shoulder has a Neck of 7.3 (.288)?
CREATE TABLE table_name_41 (shoulder VARCHAR, neck VARCHAR)
SELECT AVG(tournaments_played) FROM table_name_63 WHERE cuts_made = 14
what is the average tournaments played when cuts made is 14?
CREATE TABLE table_name_63 (tournaments_played INTEGER, cuts_made VARCHAR)
SELECT stellar_age__myr_ FROM table_2296507_1 WHERE stellar_classification = "F3V"
Name the stellar age for f3v
CREATE TABLE table_2296507_1 (stellar_age__myr_ VARCHAR, stellar_classification VARCHAR)
SELECT venue FROM table_name_98 WHERE sport = "basketball"
Which venue held a basketball team?
CREATE TABLE table_name_98 (venue VARCHAR, sport VARCHAR)
SELECT title FROM table_name_66 WHERE series = "lt" AND director = "ben hardaway" AND production_num = "6612"
What title has lt as the series, ben hardaway as the director, with 6612 as the production num.?
CREATE TABLE table_name_66 (title VARCHAR, production_num VARCHAR, series VARCHAR, director VARCHAR)
SELECT points_per_game FROM table_2761641_1 WHERE assists_per_game = "1.5"
How many points per game did he have when he had 1.5 assists per game?
CREATE TABLE table_2761641_1 (points_per_game VARCHAR, assists_per_game VARCHAR)
SELECT company FROM table_name_84 WHERE number > 5 AND price = "$389m"
What company is numbered larger than 5 and priced at $389M?
CREATE TABLE table_name_84 (company VARCHAR, number VARCHAR, price VARCHAR)
SELECT SUM(appeared) FROM table_name_95 WHERE rr_w_rate < 0.17
What's the total appeared that has an RR Rate less than 0.17?
CREATE TABLE table_name_95 (appeared INTEGER, rr_w_rate INTEGER)
SELECT loco_nos FROM table_name_80 WHERE class = "e3"
What is the Loco Nos of the e3 class?
CREATE TABLE table_name_80 (loco_nos VARCHAR, class VARCHAR)
SELECT COUNT(number_in_series) FROM table_1231892_4 WHERE broadcast_order = "S04 E07"
What's the number of episodes with a broadcast order s04 e07?
CREATE TABLE table_1231892_4 (number_in_series VARCHAR, broadcast_order VARCHAR)
SELECT TYPE FROM ship WHERE Tonnage > 6000 INTERSECT SELECT TYPE FROM ship WHERE Tonnage < 4000
Show the types of ships that have both ships with tonnage larger than 6000 and ships with tonnage smaller than 4000.
CREATE TABLE ship (TYPE VARCHAR, Tonnage INTEGER)
SELECT MIN(2009) FROM table_name_45 WHERE 2005 = 11.8 AND 2006 < 12.6
What is the 2009 when there's 11.8 in 2005 and less than 12.6 in 2006?
CREATE TABLE table_name_45 (Id VARCHAR)
SELECT cfl_team FROM table_16575609_1 WHERE college = "Weber State"
Who picked a player from Weber State?
CREATE TABLE table_16575609_1 (cfl_team VARCHAR, college VARCHAR)
SELECT player FROM table_name_18 WHERE tries > 1 AND points < 54 AND position = "hooker"
I want to know the player with tries more than 1 and position of hooker with points less than 54
CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR, tries VARCHAR, points VARCHAR)
SELECT college_junior_club_team FROM table_name_8 WHERE position = "right wing"
Which team has a right wing position listed?
CREATE TABLE table_name_8 (college_junior_club_team VARCHAR, position VARCHAR)
SELECT event FROM table_name_2 WHERE opponent = "kendall grove"
which Event that has an Opponent of kendall grove?
CREATE TABLE table_name_2 (event VARCHAR, opponent VARCHAR)
SELECT MAX(_number) FROM table_29050051_3 WHERE position = "Guard" AND previous_school = "Brophy College Prep"
What is the highest number a guard from brophy college prep wore?
CREATE TABLE table_29050051_3 (_number INTEGER, position VARCHAR, previous_school VARCHAR)
SELECT COUNT(three_pointers) FROM table_22824324_2 WHERE points = 581
How many games had three pointers where the number of points was 581?
CREATE TABLE table_22824324_2 (three_pointers VARCHAR, points VARCHAR)
SELECT us AS Christian FROM table_name_92 WHERE year = 1989
What is the U.S. Christian with a Year that is 1989?
CREATE TABLE table_name_92 (us VARCHAR, year VARCHAR)
SELECT COUNT(game) FROM table_name_10 WHERE november = 10
How many games have a November of 10?
CREATE TABLE table_name_10 (game VARCHAR, november VARCHAR)
SELECT COUNT(fa_cup) FROM table_name_64 WHERE play_offs = 3 AND name = "mitch cook category:articles with hcards" AND total < 11
What's the total number of FA Cup with a Play-offs of 3, and the Name of Mitch Cook Category:Articles with hCards and has a Total thats less than 11?
CREATE TABLE table_name_64 (fa_cup VARCHAR, total VARCHAR, play_offs VARCHAR, name VARCHAR)
SELECT black__both_hispanic_and_non_hispanic_ FROM table_name_63 WHERE white__both_hispanic_and_non_hispanic_ < 80.6 AND n_asia__both_hispanic_and_non_hispanic_ = 0.1 AND amerindian__both_hispanic_and_non_hispanic_ < 0.6000000000000001 AND municipality__2010_ = "vega baja"
What is the Black (Hispanic/Non-Hispanic) value having a white (Hispanic/Non-Hispanic) under 80.6, Asian (Hispanic/Non-Hispanic) of 0.1, Amerindian (Hispanic/Non-Hispanic) under 0.6000000000000001, and municipality of Vega Baja?
CREATE TABLE table_name_63 (black__both_hispanic_and_non_hispanic_ VARCHAR, municipality__2010_ VARCHAR, amerindian__both_hispanic_and_non_hispanic_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR, n_asia__both_hispanic_and_non_hispanic_ VARCHAR)
SELECT year FROM table_name_14 WHERE laps = 200 AND rank = "24"
Name the year for laps of 200 and rank of 24
CREATE TABLE table_name_14 (year VARCHAR, laps VARCHAR, rank VARCHAR)
SELECT Track AS title FROM table_name_6 WHERE year < 2005
Which track title has a year lesser thsn 2005?
CREATE TABLE table_name_6 (Track VARCHAR, year INTEGER)
SELECT third_runner_up FROM table_name_80 WHERE year = 1969
Can you tell me the Third runner-up that has the Year of 1969?
CREATE TABLE table_name_80 (third_runner_up VARCHAR, year VARCHAR)
SELECT icao FROM table_name_19 WHERE iata = "ika"
What is the ICAO when the IATA is ika?
CREATE TABLE table_name_19 (icao VARCHAR, iata VARCHAR)
SELECT episode_no FROM table_15211468_3 WHERE presenter = "Ben Okri"
What episode number is presented by Ben Okri ?
CREATE TABLE table_15211468_3 (episode_no VARCHAR, presenter VARCHAR)
SELECT SUM(joined) FROM table_name_59 WHERE institution = "northeastern university"
When did Northeastern University join?
CREATE TABLE table_name_59 (joined INTEGER, institution VARCHAR)
SELECT T1.lot_details FROM LOTS AS T1 JOIN TRANSACTIONS_LOTS AS T2 ON T1.lot_id = T2.transaction_id JOIN TRANSACTIONS AS T3 ON T2.transaction_id = T3.transaction_id WHERE T3.share_count < 50
What are the lot details of lots associated with transactions with share count smaller than 50?
CREATE TABLE LOTS (lot_details VARCHAR, lot_id VARCHAR); CREATE TABLE TRANSACTIONS_LOTS (transaction_id VARCHAR); CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, share_count INTEGER)
SELECT MAX(attendance) FROM table_name_87 WHERE week > 1 AND opponent = "new york jets"
What is the highest attendance for the game after week 1 against the New York Jets?
CREATE TABLE table_name_87 (attendance INTEGER, week VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_42 WHERE date = "february 2"
What was the record on February 2?
CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)
SELECT incoming_manager FROM table_26914759_3 WHERE position_in_table = "12th"
who was the incoming manager for the 12th position in the table
CREATE TABLE table_26914759_3 (incoming_manager VARCHAR, position_in_table VARCHAR)
SELECT title FROM table_18424435_3 WHERE production_code = 217
Which episodes had production code 217?
CREATE TABLE table_18424435_3 (title VARCHAR, production_code VARCHAR)
SELECT COUNT(total) FROM table_name_83 WHERE player = "pádraig harrington"
How many totals does pádraig harrington have?
CREATE TABLE table_name_83 (total VARCHAR, player VARCHAR)
SELECT incumbent FROM table_name_75 WHERE results = "re-elected" AND party = "democratic" AND district = "minnesota 7"
What is Incumbent, when Results is "Re-Elected", when Party is "Democratic", and when District is "Minnesota 7"?
CREATE TABLE table_name_75 (incumbent VARCHAR, district VARCHAR, results VARCHAR, party VARCHAR)
SELECT result FROM table_1341604_26 WHERE incumbent = "Ike Skelton"
What was the result of the election featuring ike skelton?
CREATE TABLE table_1341604_26 (result VARCHAR, incumbent VARCHAR)
SELECT championship FROM table_22834834_2 WHERE year = 1993
Who is the championship for the year of 1993?
CREATE TABLE table_22834834_2 (championship VARCHAR, year VARCHAR)
SELECT week_3_sept_14 FROM table_name_87 WHERE week_6_oct_5 = "kansas (4-1)"
Which Week 3 Sept 14 has a Week 6 Oct 5 of kansas (4-1)?
CREATE TABLE table_name_87 (week_3_sept_14 VARCHAR, week_6_oct_5 VARCHAR)
SELECT COUNT(game) FROM table_name_31 WHERE november = 7 AND points > 17
How many games have November 7 as the date, and points greater than 17?
CREATE TABLE table_name_31 (game VARCHAR, november VARCHAR, points VARCHAR)
SELECT COUNT(s_asset__billion_) AS $_ FROM table_name_14 WHERE headquarters = "stockholm, sweden" AND market_value__billion_$_ < 39.8 AND revenue__billion_$__ > 5.8 AND profits__billion_$_ = 1.1
How much is the total assets of a company based in Stockholm, Sweden with a market capitalization smaller than 39.8 with revenues greater than 5.8 and profit of 1.1?
CREATE TABLE table_name_14 (s_asset__billion_ VARCHAR, profits__billion_$_ VARCHAR, revenue__billion_$__ VARCHAR, headquarters VARCHAR, market_value__billion_$_ VARCHAR)
SELECT original_team FROM table_12286195_1 WHERE result = "08 Fired in week 10 (2008-03-06)"
What is the original team of the celebrity who had the result 08 fired in week 10 (2008-03-06)
CREATE TABLE table_12286195_1 (original_team VARCHAR, result VARCHAR)
SELECT T1.name FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id HAVING COUNT(*) >= 2 INTERSECT SELECT T1.name FROM storm AS T1 JOIN affected_region AS T2 ON T1.storm_id = T2.storm_id GROUP BY T1.storm_id HAVING SUM(T2.number_city_affected) >= 10
Show storm name with at least two regions and 10 cities affected.
CREATE TABLE affected_region (storm_id VARCHAR, number_city_affected INTEGER); CREATE TABLE storm (name VARCHAR, storm_id VARCHAR)
SELECT position FROM table_name_9 WHERE round > 6 AND overall = 191
WHAT IS THE POSITION WITH A ROUND LARGER THAN 6, AND OVERALL OF 191?
CREATE TABLE table_name_9 (position VARCHAR, round VARCHAR, overall VARCHAR)
SELECT T2.name FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid GROUP BY T1.aid HAVING COUNT(*) >= 2
Show names for all aircraft with at least two flights.
CREATE TABLE Aircraft (name VARCHAR, aid VARCHAR); CREATE TABLE Flight (aid VARCHAR)
SELECT record FROM table_name_59 WHERE visitor = "nashville" AND decision = "ellis" AND game > 32
Which game later than number 32 had both Ellis for the decision and Nashville as the visiting team?
CREATE TABLE table_name_59 (record VARCHAR, game VARCHAR, visitor VARCHAR, decision VARCHAR)
SELECT MAX(no) FROM table_21979779_1 WHERE production_code = "2T7211"
what is the biggest series episode number whose production code is 2t7211?
CREATE TABLE table_21979779_1 (no INTEGER, production_code VARCHAR)
SELECT segment_b FROM table_name_93 WHERE segment_d = "pasta"
For a segment D of pasta, what is the segment B?
CREATE TABLE table_name_93 (segment_b VARCHAR, segment_d VARCHAR)
SELECT Product_Type_Code, COUNT(*) FROM Products GROUP BY Product_Type_Code
Show different type codes of products and the number of products with each type code.
CREATE TABLE Products (Product_Type_Code VARCHAR)
SELECT city_location FROM table_name_93 WHERE round < 11 AND circuit = "streets of denver"
For which location was the round smaller than 11 and the circuit streets of denver?
CREATE TABLE table_name_93 (city_location VARCHAR, round VARCHAR, circuit VARCHAR)
SELECT COUNT(high_rebounds) FROM table_27713030_11 WHERE location_attendance = "Philips Arena 20,024"
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 language_s_ FROM table_name_33 WHERE original_title = "rosie"
What is the language of the film Rosie?
CREATE TABLE table_name_33 (language_s_ VARCHAR, original_title VARCHAR)
SELECT country FROM table_name_43 WHERE director_s_ = "2007"
What Country has a Director of 2007?
CREATE TABLE table_name_43 (country VARCHAR, director_s_ VARCHAR)
SELECT COUNT(gold) FROM table_name_88 WHERE silver > 4 AND bronze > 14 AND total = 97
How many gold medals were won by the nation that won over 4 silver medals, over 14 bronze, and 97 medals total?
CREATE TABLE table_name_88 (gold VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT runner_s__up FROM table_name_81 WHERE winning_score = –28(66 - 67 - 68 - 64 - 67 = 332)
Who was the runner-up when the winning score was –28 (66-67-68-64-67=332)?
CREATE TABLE table_name_81 (runner_s__up VARCHAR, winning_score VARCHAR)
SELECT MIN(goals¹) FROM table_24565004_21
What was the lowest score.
CREATE TABLE table_24565004_21 (goals¹ INTEGER)
SELECT result FROM table_19625976_1 WHERE persian_title = "میم مثل مادر"
For the Persian Title میم مثل مادر, what were the results?
CREATE TABLE table_19625976_1 (result VARCHAR, persian_title VARCHAR)
SELECT MAX(season) FROM table_name_44 WHERE podiums = "0" AND races = "16"
Which Season has Podiums of 0, and Races of 16?
CREATE TABLE table_name_44 (season INTEGER, podiums VARCHAR, races VARCHAR)
SELECT COUNT(party) FROM table_1342270_3 WHERE district = "Alabama 6"
how many party with dbeingtrict being alabama 6
CREATE TABLE table_1342270_3 (party VARCHAR, district VARCHAR)
SELECT away_team FROM table_name_61 WHERE home_team = "hartlepools united"
Who is the away team against the home team Hartlepools United?
CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR)
SELECT MAX(points) FROM table_name_30 WHERE goals_against = 32 AND played > 38
Which Points have Goals against of 32, and Played larger than 38?
CREATE TABLE table_name_30 (points INTEGER, goals_against VARCHAR, played VARCHAR)
SELECT player FROM table_name_66 WHERE year = 2000
What player played in 2000?
CREATE TABLE table_name_66 (player VARCHAR, year VARCHAR)
SELECT COUNT(incumbent) FROM table_2668401_12 WHERE district = "Pennsylvania 5"
How many incumbents are there in Pennsylvania 5?
CREATE TABLE table_2668401_12 (incumbent VARCHAR, district VARCHAR)
SELECT number_of_sequences_number_of_sequences AS :_ FROM table_name_72 WHERE name = "alifoldz"
What is the number of sequences for the name Alifoldz?
CREATE TABLE table_name_72 (number_of_sequences_number_of_sequences VARCHAR, name VARCHAR)
SELECT result FROM table_name_95 WHERE game_site = "jeppesen stadium"
What was the result of the game played at Jeppesen Stadium?
CREATE TABLE table_name_95 (result VARCHAR, game_site VARCHAR)
SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE points__total_500_ = 289
How many times has the points total for the afc cup competion been 289?
CREATE TABLE table_14460937_1 (afc_cup VARCHAR, points__total_500_ VARCHAR)
SELECT player FROM table_23346303_5 WHERE field_goals = 26
If the field goals is 26, what are the players names?
CREATE TABLE table_23346303_5 (player VARCHAR, field_goals VARCHAR)
SELECT position FROM table_name_36 WHERE school_club_team = "vanderbilt"
What is the Position of the player from Vanderbilt?
CREATE TABLE table_name_36 (position VARCHAR, school_club_team VARCHAR)
SELECT headquarters_city FROM table_21926985_2 WHERE revenue__$billions__2012_estimate = "33.3"
Where is the company with estimated revenue of 33.3 billion headquartered?
CREATE TABLE table_21926985_2 (headquarters_city VARCHAR, revenue__$billions__2012_estimate VARCHAR)
SELECT SUM(density__2005_) FROM table_name_25 WHERE area__km²_ = 340086.7 AND population__2005_ < 5926300
Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300?
CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km²_ VARCHAR, population__2005_ VARCHAR)
SELECT points FROM table_name_99 WHERE engine = "chevrolet 265c"
Name the points for Engine of chevrolet 265c
CREATE TABLE table_name_99 (points VARCHAR, engine VARCHAR)
SELECT Chinese AS name FROM table_name_73 WHERE index = "f10"
What is the Chinese name of the player in Index F10?
CREATE TABLE table_name_73 (Chinese VARCHAR, index VARCHAR)
SELECT week_2 FROM table_name_47 WHERE week_4 = "terri lynn farrow"
Who was the girl of the week 2 weeks before terri lynn farrow in the same month?
CREATE TABLE table_name_47 (week_2 VARCHAR, week_4 VARCHAR)
SELECT COUNT(goals_against) FROM table_name_85 WHERE lost > 7 AND goals_for < 27 AND drawn > 1
How many goals scored against the opposing team occurred with more than 7 losses, less than 27 goals scored for the team and drawn more than 1?
CREATE TABLE table_name_85 (goals_against VARCHAR, drawn VARCHAR, lost VARCHAR, goals_for VARCHAR)
SELECT COUNT(rank) FROM table_name_83 WHERE lane > 4 AND nationality = "great britain" AND name = "margaretha pedder"
How many ranks are higher than lane 4 from Great Britain, raced by Margaretha Pedder?
CREATE TABLE table_name_83 (rank VARCHAR, name VARCHAR, lane VARCHAR, nationality VARCHAR)