question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
With silver medals less than 1, and total medals less than 2, what is the most bronze medals?
CREATE TABLE table_name_83 (bronze INTEGER, silver VARCHAR, total VARCHAR)
SELECT MAX(bronze) FROM table_name_83 WHERE silver < 1 AND total < 2
Show all allergy types.
CREATE TABLE Allergy_type (allergytype VARCHAR)
SELECT DISTINCT allergytype FROM Allergy_type
Which is the highest Rd 1 has a Province of utrecht and a Rd 4 larger than 0?
CREATE TABLE table_name_70 (rd_1 INTEGER, province VARCHAR, rd_4 VARCHAR)
SELECT MAX(rd_1) FROM table_name_70 WHERE province = "utrecht" AND rd_4 > 0
What City is the Jal hotel in?
CREATE TABLE table_name_77 (city VARCHAR, name VARCHAR)
SELECT city FROM table_name_77 WHERE name = "jal hotel"
What is the authority who set the budget limit (£m) at 900?
CREATE TABLE table_25316812_1 (authority VARCHAR, budget_limit__£m_ VARCHAR)
SELECT authority FROM table_25316812_1 WHERE budget_limit__£m_ = "900"
What country had a Finish of t8?
CREATE TABLE table_name_59 (country VARCHAR, finish VARCHAR)
SELECT country FROM table_name_59 WHERE finish = "t8"
What Texas has Johnson from Nort Dakota?
CREATE TABLE table_name_92 (texas VARCHAR, north_dakota VARCHAR)
SELECT texas FROM table_name_92 WHERE north_dakota = "johnson"
Name the G. Hager of E. Greenberg of 266 (14%)?
CREATE TABLE table_name_49 (g_hager VARCHAR, e_greenberg VARCHAR)
SELECT g_hager FROM table_name_49 WHERE e_greenberg = "266 (14%)"
Looking only at matches occurring after Game 51, who was the opponent for the game that ended with a score of 99-129?
CREATE TABLE table_name_61 (opponent VARCHAR, game VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_61 WHERE game > 51 AND score = "99-129"
What was the result for Thirst in 2010 at the Green Globe Film Awards?
CREATE TABLE table_name_91 (result VARCHAR, group VARCHAR, film_series VARCHAR, year VARCHAR)
SELECT result FROM table_name_91 WHERE film_series = "thirst" AND year = 2010 AND group = "green globe film awards"
Which University students and adults have minimum diameter of Sakigawa for female gender?
CREATE TABLE table_name_86 (university_students_and_adults__18yrs VARCHAR, _ VARCHAR, specification VARCHAR, gender VARCHAR)
SELECT university_students_and_adults__18yrs + _ FROM table_name_86 WHERE specification = "minimum diameter of sakigawa" AND gender = "female"
Display the lowest score for candidate Mir-Hossein Mousavi when candidate Mohsen Rezaee scored 44809 votes
CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, mohsen_rezaee VARCHAR)
SELECT MIN(mir_hossein_mousavi) FROM table_23390604_1 WHERE mohsen_rezaee = 44809
What is the result of game played on 10-05-2012?
CREATE TABLE table_name_23 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_23 WHERE date = "10-05-2012"
what is the year where glos & wilts is gloucester city winget?
CREATE TABLE table_12043148_2 (year VARCHAR, glos_ VARCHAR, _wilts VARCHAR)
SELECT year FROM table_12043148_2 WHERE glos_ & _wilts = "Gloucester City Winget"
What was the away team's score at Western Oval?
CREATE TABLE table_name_75 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_75 WHERE venue = "western oval"
What is the western word for "latrones" in Latin?
CREATE TABLE table_26614365_1 (western VARCHAR, latin VARCHAR)
SELECT western FROM table_26614365_1 WHERE latin = "latrones"
What was the location of the tournament held in Spain?
CREATE TABLE table_name_56 (location VARCHAR, country VARCHAR)
SELECT location FROM table_name_56 WHERE country = "spain"
What's the position of the club with w-l-d of 6-2-8?
CREATE TABLE table_13713206_1 (position INTEGER, w_l_d VARCHAR)
SELECT MAX(position) FROM table_13713206_1 WHERE w_l_d = "6-2-8"
What is the sum of Draft, when Round is greater than 9?
CREATE TABLE table_name_56 (draft INTEGER, round INTEGER)
SELECT SUM(draft) FROM table_name_56 WHERE round > 9
With a method of tko (kick) what is the record of the match?
CREATE TABLE table_name_73 (record VARCHAR, method VARCHAR)
SELECT record FROM table_name_73 WHERE method = "tko (kick)"
What locations did sid o'neill play football?
CREATE TABLE table_16527640_2 (location VARCHAR, player VARCHAR)
SELECT location FROM table_16527640_2 WHERE player = "Sid O'Neill"
Which points has the driver Paul Tracy?
CREATE TABLE table_name_56 (points VARCHAR, driver VARCHAR)
SELECT points FROM table_name_56 WHERE driver = "paul tracy"
Who are the featuring companions of number 3?
CREATE TABLE table_2950964_1 (featuring_companion VARCHAR, _number VARCHAR)
SELECT featuring_companion FROM table_2950964_1 WHERE _number = "3"
How much have players earned with 14 wins ranked below 3?
CREATE TABLE table_name_5 (earnings__ VARCHAR, wins VARCHAR, rank VARCHAR)
SELECT COUNT(earnings__) AS $__ FROM table_name_5 WHERE wins = 14 AND rank > 3
What was the score when the team played at the bobcats?
CREATE TABLE table_name_92 (score VARCHAR, home VARCHAR)
SELECT score FROM table_name_92 WHERE home = "bobcats"
What is the lowest against of the wimmera fl warrack eagles, which have less than 16 wins?
CREATE TABLE table_name_33 (against INTEGER, wins VARCHAR, wimmera_fl VARCHAR)
SELECT MIN(against) FROM table_name_33 WHERE wins < 16 AND wimmera_fl = "warrack eagles"
When bloggers was the poll winner, who was the root of all evil?
CREATE TABLE table_15781170_3 (root_of_all_evil VARCHAR, poll_winner VARCHAR)
SELECT root_of_all_evil FROM table_15781170_3 WHERE poll_winner = "Bloggers"
Who is in group B and has a mark of 6.33?
CREATE TABLE table_name_10 (name VARCHAR, group VARCHAR, mark VARCHAR)
SELECT name FROM table_name_10 WHERE group = "b" AND mark = "6.33"
Who was the maufacturer of the vehicle during the race where Cale Yarborough started at 19 and finished earlier than 42?
CREATE TABLE table_name_21 (manufacturer VARCHAR, finish VARCHAR, start VARCHAR)
SELECT manufacturer FROM table_name_21 WHERE finish < 42 AND start = 19
What is the structure of the document with the least number of accesses?
CREATE TABLE document_structures (document_structure_description VARCHAR, document_structure_code VARCHAR); CREATE TABLE documents (document_structure_code VARCHAR)
SELECT t2.document_structure_description FROM documents AS t1 JOIN document_structures AS t2 ON t1.document_structure_code = t2.document_structure_code GROUP BY t1.document_structure_code ORDER BY COUNT(*) DESC LIMIT 1
How tall is Marco Belinelli?
CREATE TABLE table_12962773_15 (height VARCHAR, player VARCHAR)
SELECT height FROM table_12962773_15 WHERE player = "Marco Belinelli"
Which area has a telephone of (052) of 3862279?
CREATE TABLE table_name_1 (area__km_2__ VARCHAR, telephone__052_ VARCHAR)
SELECT area__km_2__ FROM table_name_1 WHERE telephone__052_ = "3862279"
What's the Description for Scottish Tar Distillers No. 78, that's Livery is black, and a date prior to 1897?
CREATE TABLE table_name_49 (description VARCHAR, livery VARCHAR, date VARCHAR, number_ VARCHAR, _name VARCHAR)
SELECT description FROM table_name_49 WHERE livery = "black" AND date < 1897 AND number_ & _name = "scottish tar distillers no. 78"
What score has charlton athletic as the away team?
CREATE TABLE table_name_83 (score VARCHAR, away_team VARCHAR)
SELECT score FROM table_name_83 WHERE away_team = "charlton athletic"
What is the authority of the scientific name of O. Tricuspis?
CREATE TABLE table_name_50 (authority VARCHAR, scientic_name VARCHAR)
SELECT authority FROM table_name_50 WHERE scientic_name = "o. tricuspis"
How many accounts does each customer have? List the number and customer id.
CREATE TABLE Accounts (customer_id VARCHAR)
SELECT COUNT(*), customer_id FROM Accounts GROUP BY customer_id
Which Indicia has anEnd month in feb-75?
CREATE TABLE table_name_52 (indicia VARCHAR, end_month VARCHAR)
SELECT indicia FROM table_name_52 WHERE end_month = "feb-75"
What is the average grid that has over 8 laps, a Time/Retired of +2 laps, and peter gethin driving?
CREATE TABLE table_name_61 (grid INTEGER, driver VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT AVG(grid) FROM table_name_61 WHERE laps > 8 AND time_retired = "+2 laps" AND driver = "peter gethin"
Who is the champion of the title previously held by Lash?
CREATE TABLE table_name_4 (champion_s_ VARCHAR, previous_champion_s_ VARCHAR)
SELECT champion_s_ FROM table_name_4 WHERE previous_champion_s_ = "lash"
Who is the captain of the team in Essex county?
CREATE TABLE table_18461635_1 (captain VARCHAR, county VARCHAR)
SELECT captain FROM table_18461635_1 WHERE county = "Essex"
What was the Result on May 30?
CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_66 WHERE date = "may 30"
What is the Nationality that shows 4 as the ranking?
CREATE TABLE table_name_57 (nationality VARCHAR, ranking VARCHAR)
SELECT nationality FROM table_name_57 WHERE ranking = 4
Which county built a bridge in 1934?
CREATE TABLE table_name_59 (county VARCHAR, built VARCHAR)
SELECT county FROM table_name_59 WHERE built = "1934"
What United States Player has a To par of +4 and a Score of 71-77=148?
CREATE TABLE table_name_67 (player VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT player FROM table_name_67 WHERE country = "united states" AND to_par = "+4" AND score = 71 - 77 = 148
What is the name of the locomotive with a Glencar class?
CREATE TABLE table_name_98 (names VARCHAR, class VARCHAR)
SELECT names FROM table_name_98 WHERE class = "glencar"
What is Pos., when Height is "m (ft 10in)", and when Date of Birth is "1983-05-29"?
CREATE TABLE table_name_45 (pos VARCHAR, height VARCHAR, date_of_birth VARCHAR)
SELECT pos FROM table_name_45 WHERE height = "m (ft 10in)" AND date_of_birth = "1983-05-29"
In the year where Angela Stanford had a scoring average of 71.62, how many times did she take second place?
CREATE TABLE table_14836185_3 (scoring_average VARCHAR)
SELECT COUNT(2 AS nd) FROM table_14836185_3 WHERE scoring_average = "71.62"
Which Can Yayınları has a Güzelçamlı’nin Kayıp Panteri of çevreci peri?
CREATE TABLE table_name_39 (can_yayınları VARCHAR, güzelçamlı’nin_kayıp_panteri VARCHAR)
SELECT can_yayınları FROM table_name_39 WHERE güzelçamlı’nin_kayıp_panteri = "çevreci peri"
Who was the opponent after week 9 with an attendance of 44,020?
CREATE TABLE table_name_96 (opponent VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_96 WHERE week > 9 AND attendance = "44,020"
What location attendance has russell westbrook (5) as high assists and nenad krstic (8) as high rebounds?
CREATE TABLE table_23286112_7 (location_attendance VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR)
SELECT location_attendance FROM table_23286112_7 WHERE high_assists = "Russell Westbrook (5)" AND high_rebounds = "Nenad Krstic (8)"
What is the Record of the Chicago Black Hawks Home game with the New York Rangers and a Score of 3–2?
CREATE TABLE table_name_28 (record VARCHAR, score VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_28 WHERE home = "chicago black hawks" AND visitor = "new york rangers" AND score = "3–2"
What is Matt Allen's sail number?
CREATE TABLE table_25595209_1 (sail_number VARCHAR, skipper VARCHAR)
SELECT sail_number FROM table_25595209_1 WHERE skipper = "Matt Allen"
In 1981, with a studio host of Dave Hodge, who was the colour commentator?
CREATE TABLE table_name_17 (colour_commentator_s_ VARCHAR, studio_host VARCHAR, year VARCHAR)
SELECT colour_commentator_s_ FROM table_name_17 WHERE studio_host = "dave hodge" AND year = 1981
Which Natural change has a Crude death rate (per 1000) larger than 9, and Deaths of 40 399?
CREATE TABLE table_name_88 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, deaths VARCHAR)
SELECT natural_change FROM table_name_88 WHERE crude_death_rate__per_1000_ > 9 AND deaths = "40 399"
who is the the candidates with incumbent being don fuqua
CREATE TABLE table_1341604_10 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341604_10 WHERE incumbent = "Don Fuqua"
What the B Score when the total is 16.125 and the position is less than 7?
CREATE TABLE table_name_10 (b_score INTEGER, position VARCHAR, total VARCHAR)
SELECT SUM(b_score) FROM table_name_10 WHERE position < 7 AND total = 16.125
What is the name of the leading scorer on 2006-11-22?
CREATE TABLE table_name_5 (leading_scorer VARCHAR, date VARCHAR)
SELECT leading_scorer FROM table_name_5 WHERE date = "2006-11-22"
for what crime was gunther volz executed at metz?
CREATE TABLE table_2861364_1 (crime VARCHAR, place_of_execution VARCHAR, executed_person VARCHAR)
SELECT crime FROM table_2861364_1 WHERE place_of_execution = "Metz" AND executed_person = "Gunther Volz"
During what years did the Guard from Oklahoma with a height of 6-6 play for the Rockets?
CREATE TABLE table_name_41 (years_for_rockets VARCHAR, school_club_team_country VARCHAR, height_in_ft VARCHAR, position VARCHAR)
SELECT years_for_rockets FROM table_name_41 WHERE height_in_ft = "6-6" AND position = "guard" AND school_club_team_country = "oklahoma"
Name the timeslot for season 5
CREATE TABLE table_143554_1 (timeslot VARCHAR, season VARCHAR)
SELECT timeslot FROM table_143554_1 WHERE season = 5
What is the sum of Goals Against, when Lost is 45, and when Points is greater than 68?
CREATE TABLE table_name_33 (goals_against INTEGER, lost VARCHAR, points VARCHAR)
SELECT SUM(goals_against) FROM table_name_33 WHERE lost = 45 AND points > 68
How many times was the background self-employed - media agency?
CREATE TABLE table_26263322_1 (candidate VARCHAR, background VARCHAR)
SELECT COUNT(candidate) FROM table_26263322_1 WHERE background = "Self-employed - media agency"
What is the L3 cache of the processor with a release price of $440?
CREATE TABLE table_name_3 (l3_cache VARCHAR, release_price___usd__ VARCHAR)
SELECT l3_cache FROM table_name_3 WHERE release_price___usd__ = "$440"
What percentage of users were using Firefox according to the source that reported 15.40% used Safari?
CREATE TABLE table_name_66 (firefox VARCHAR, safari VARCHAR)
SELECT firefox FROM table_name_66 WHERE safari = "15.40%"
What label has a catalog of chem036cd?
CREATE TABLE table_name_2 (label VARCHAR, catalog VARCHAR)
SELECT label FROM table_name_2 WHERE catalog = "chem036cd"
Who was the director of the episode with series number 116?
CREATE TABLE table_28212888_2 (directed_by VARCHAR, no_in_series VARCHAR)
SELECT directed_by FROM table_28212888_2 WHERE no_in_series = 116
Which Car # has a Make of toyota, and a Pos of 7?
CREATE TABLE table_name_93 (car__number INTEGER, make VARCHAR, pos VARCHAR)
SELECT AVG(car__number) FROM table_name_93 WHERE make = "toyota" AND pos = 7
Which club has 1 cap?
CREATE TABLE table_name_90 (club_province VARCHAR, caps VARCHAR)
SELECT club_province FROM table_name_90 WHERE caps = 1
For Laps smaller than 6, what does the Grid add up to?
CREATE TABLE table_name_5 (grid INTEGER, laps INTEGER)
SELECT SUM(grid) FROM table_name_5 WHERE laps < 6
What is the number of wins the team Boston Red Stockings got in the postseasons each year in history?
CREATE TABLE team (team_id_br VARCHAR, name VARCHAR); CREATE TABLE postseason (year VARCHAR, team_id_winner VARCHAR)
SELECT COUNT(*), T1.year FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' GROUP BY T1.year
Which country has the score 70-76-68-214?
CREATE TABLE table_name_71 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_71 WHERE score = "70-76-68-214"
What is Name, when President is Khamtai Siphandon, and when Left Office is 1999?
CREATE TABLE table_name_66 (name VARCHAR, president VARCHAR, left_office VARCHAR)
SELECT name FROM table_name_66 WHERE president = "khamtai siphandon" AND left_office = "1999"
What is the size of the crowd for the home team of Footscray?
CREATE TABLE table_name_28 (crowd VARCHAR, home_team VARCHAR)
SELECT crowd FROM table_name_28 WHERE home_team = "footscray"
When 3 is the bbc three weekly ranking what is the airdate?
CREATE TABLE table_24399615_8 (airdate VARCHAR, bbc_three_weekly_ranking VARCHAR)
SELECT airdate FROM table_24399615_8 WHERE bbc_three_weekly_ranking = "3"
Name the latitude for 3809935740
CREATE TABLE table_18600760_8 (latitude VARCHAR, geo_id VARCHAR)
SELECT latitude FROM table_18600760_8 WHERE geo_id = 3809935740
Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12?
CREATE TABLE table_name_47 (particulate_size_approaching_100_percentage_retention VARCHAR, usage VARCHAR, class VARCHAR)
SELECT particulate_size_approaching_100_percentage_retention FROM table_name_47 WHERE usage = "semi hepa" AND class = "h12"
What is the least passengers from the Dallas/Fort Worth International (DFW) airport?
CREATE TABLE table_name_75 (passengers INTEGER, airport VARCHAR)
SELECT MIN(passengers) FROM table_name_75 WHERE airport = "dallas/fort worth international (dfw)"
What is the highest population for the province having a rank under 5?
CREATE TABLE table_name_57 (population INTEGER, rank_among_provinces INTEGER)
SELECT MAX(population) FROM table_name_57 WHERE rank_among_provinces < 5
Which student's age is older than 18 and is majoring in 600? List each student's first and last name.
CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Age VARCHAR, Major VARCHAR)
SELECT Fname, Lname FROM Student WHERE Age > 18 AND Major = 600
What is the lowest Round, when College/Team is "Kansas", and when Pick is less than 56?
CREATE TABLE table_name_96 (round INTEGER, college_team VARCHAR, pick VARCHAR)
SELECT MIN(round) FROM table_name_96 WHERE college_team = "kansas" AND pick < 56
What was the attendance of the game where Stoke city was the away team?
CREATE TABLE table_24887326_7 (attendance INTEGER, away_team VARCHAR)
SELECT MIN(attendance) FROM table_24887326_7 WHERE away_team = "Stoke City"
Which artist has a serial number of BOONCD1?
CREATE TABLE table_name_68 (artist VARCHAR, number VARCHAR)
SELECT artist FROM table_name_68 WHERE number = "booncd1"
Which group has David D'Angers as the official history?
CREATE TABLE table_name_91 (group VARCHAR, official_history VARCHAR)
SELECT group FROM table_name_91 WHERE official_history = "david d'angers"
What is the Tie no of the game with an Attendance of 4,658?
CREATE TABLE table_name_34 (tie_no VARCHAR, attendance VARCHAR)
SELECT tie_no FROM table_name_34 WHERE attendance = "4,658"
What is the Country, when Place is "1"?
CREATE TABLE table_name_46 (country VARCHAR, place VARCHAR)
SELECT country FROM table_name_46 WHERE place = "1"
What is the record for the w 100-99 score?
CREATE TABLE table_name_95 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_95 WHERE score = "w 100-99"
Which 1st leg that has hemofarm?
CREATE TABLE table_name_12 (team__number1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_12 WHERE team__number1 = "hemofarm"
What position does the player from the Arizona Diamondbacks play?
CREATE TABLE table_name_6 (position VARCHAR, team VARCHAR)
SELECT position FROM table_name_6 WHERE team = "arizona diamondbacks"
How many schools named southern new hampshire university?
CREATE TABLE table_1969634_1 (enrollment VARCHAR, institution VARCHAR)
SELECT COUNT(enrollment) FROM table_1969634_1 WHERE institution = "Southern New Hampshire University"
What are the years when the ranking is less than 8 with less than 66 goals and name is Paul McGee?
CREATE TABLE table_name_38 (years VARCHAR, name VARCHAR, ranking VARCHAR, goals VARCHAR)
SELECT years FROM table_name_38 WHERE ranking < 8 AND goals < 66 AND name = "paul mcgee"
What was the location and attendance for the game on December 12?
CREATE TABLE table_name_68 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_name_68 WHERE date = "december 12"
What is the Venue with a Result that is win, and a Score that is 5-0?
CREATE TABLE table_name_35 (venue VARCHAR, result VARCHAR, score VARCHAR)
SELECT venue FROM table_name_35 WHERE result = "win" AND score = "5-0"
What's the Pinyin name of the county with a postcode 246500?
CREATE TABLE table_1976898_1 (pinyin VARCHAR, post_code VARCHAR)
SELECT pinyin FROM table_1976898_1 WHERE post_code = 246500
What was the nadal in Miami in the final round?
CREATE TABLE table_name_55 (nadal INTEGER, round VARCHAR, tournament VARCHAR)
SELECT MAX(nadal) FROM table_name_55 WHERE round = "final" AND tournament = "miami"
How many seasons have a sacks of 39?
CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR)
SELECT COUNT(season) FROM table_27487336_1 WHERE sacks = "39"
Find the description of the most popular role among the users that have logged in.
CREATE TABLE users (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR); CREATE TABLE ROLES (role_description VARCHAR, role_code VARCHAR, user_login VARCHAR)
SELECT role_description FROM ROLES WHERE role_code = (SELECT role_code FROM users WHERE user_login = 1 GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1)
What is the name of the away team with glenferrie oval venue?
CREATE TABLE table_name_72 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_72 WHERE venue = "glenferrie oval"
Who was the manager that was positioned 11th in table and resigned in departure?
CREATE TABLE table_name_30 (replaced_by VARCHAR, position_in_table VARCHAR, manner_of_departure VARCHAR)
SELECT replaced_by FROM table_name_30 WHERE position_in_table = "11th" AND manner_of_departure = "resigned"
What is the highest ERP W with a w216bo call sign?
CREATE TABLE table_name_10 (erp_w INTEGER, call_sign VARCHAR)
SELECT MAX(erp_w) FROM table_name_10 WHERE call_sign = "w216bo"
What rank did the United States swimmer come in who posted 11.26 seconds in the 100-meter youth female division?
CREATE TABLE table_name_71 (rank VARCHAR, fastest_time__s_ VARCHAR, nation VARCHAR)
SELECT COUNT(rank) FROM table_name_71 WHERE fastest_time__s_ = "11.26" AND nation = "united states"