answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT name FROM table_name_84 WHERE heat = 4 AND rank < 23 AND result = "55.91" | CREATE TABLE table_name_84 (name VARCHAR, result VARCHAR, heat VARCHAR, rank VARCHAR) | What is the Name of the Player with a Rank of 23 or less, Heat of 4 and Result of 55.91? |
SELECT heat FROM table_name_54 WHERE rank < 18 AND result = "55.15" | CREATE TABLE table_name_54 (heat VARCHAR, rank VARCHAR, result VARCHAR) | What is the Heat of the Player with a Rank of 18 or less and Result of 55.15? |
SELECT quantity_preserved FROM table_name_11 WHERE fleet_number_s_ = "3000–3015" | CREATE TABLE table_name_11 (quantity_preserved VARCHAR, fleet_number_s_ VARCHAR) | What is the quantity preserved for fleet number(s) 3000–3015? |
SELECT manufacturer FROM table_name_34 WHERE wheel_arrangement = "4-6-6-4" AND class = "z-7" | CREATE TABLE table_name_34 (manufacturer VARCHAR, wheel_arrangement VARCHAR, class VARCHAR) | What manufacturer has a wheel arrangement of 4-6-6-4, and a Class of z-7? |
SELECT year_made FROM table_name_98 WHERE fleet_number_s_ = "5000" | CREATE TABLE table_name_98 (year_made VARCHAR, fleet_number_s_ VARCHAR) | What is the Year for fleet number 5000? |
SELECT year_made FROM table_name_63 WHERE quantity_made = "4" | CREATE TABLE table_name_63 (year_made VARCHAR, quantity_made VARCHAR) | What year made has a Quantity made of 4? |
SELECT quantity_preserved FROM table_name_19 WHERE serial_numbers = "mallet and simple articulated locomotives" | CREATE TABLE table_name_19 (quantity_preserved VARCHAR, serial_numbers VARCHAR) | What is the quantity preserved for the serial number of mallet and simple articulated locomotives? |
SELECT silver FROM table_name_20 WHERE gold > 1 AND total < 97 AND nation = "estonia" | CREATE TABLE table_name_20 (silver VARCHAR, nation VARCHAR, gold VARCHAR, total VARCHAR) | How many silver medals did Estonia, which won more than 1 gold and less than 97 medals total, win? |
SELECT MIN(gold) FROM table_name_65 WHERE nation = "denmark" | CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR) | How many gold medals did Denmark win? |
SELECT COUNT(gold) FROM table_name_59 WHERE bronze > 27 AND total < 305 | CREATE TABLE table_name_59 (gold VARCHAR, bronze VARCHAR, total VARCHAR) | What is the total number of gold medals won among nations that won more than 27 bronze and less than 305 medals total? |
SELECT COUNT(gold) FROM table_name_88 WHERE silver > 4 AND bronze > 14 AND total = 97 | CREATE TABLE table_name_88 (gold VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR) | How many gold medals were won by the nation that won over 4 silver medals, over 14 bronze, and 97 medals total? |
SELECT MAX(championship) FROM table_name_85 WHERE league_cup = 1 AND total = "17" | CREATE TABLE table_name_85 (championship INTEGER, league_cup VARCHAR, total VARCHAR) | What is the highest championship that has 1 as the league cup, and 17 as the total? |
SELECT COUNT(league_cup) FROM table_name_70 WHERE fa_cup < 0 | CREATE TABLE table_name_70 (league_cup VARCHAR, fa_cup INTEGER) | How many league cups have an FA Cup less than 0? |
SELECT AVG(rank) FROM table_name_48 WHERE silver > 1 AND gold < 11 AND bronze = 2 AND nation = "west germany (frg)" | CREATE TABLE table_name_48 (rank INTEGER, nation VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR) | What is the average rank of west germany (frg), which has more than 1 silver, less than 11 gold, and 2 bronze medals? |
SELECT date FROM table_name_82 WHERE nation = "russia" AND place = "beijing, china" AND athlete = "yelena isinbayeva" | CREATE TABLE table_name_82 (date VARCHAR, athlete VARCHAR, nation VARCHAR, place VARCHAR) | What's the date when Yelena Isinbayeva for Russia was in Beijing, China? |
SELECT performance FROM table_name_89 WHERE athlete = "dire tune" | CREATE TABLE table_name_89 (performance VARCHAR, athlete VARCHAR) | What's the performance of Dire Tune? |
SELECT place FROM table_name_33 WHERE performance = "14:11.15" | CREATE TABLE table_name_33 (place VARCHAR, performance VARCHAR) | What place had 14:11.15 as the performance? |
SELECT event FROM table_name_51 WHERE nation = "ethiopia" AND performance = "14:11.15" | CREATE TABLE table_name_51 (event VARCHAR, nation VARCHAR, performance VARCHAR) | What's the event that had a performance of 14:11.15 by Ethiopia? |
SELECT position FROM table_name_96 WHERE pick > 94 AND team = "boston patriots" | CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR, team VARCHAR) | What was the position of the player picked after 94, by the Boston Patriots? |
SELECT college FROM table_name_50 WHERE pick = 93 | CREATE TABLE table_name_50 (college VARCHAR, pick VARCHAR) | What college had the 93 pick? |
SELECT venue FROM table_name_60 WHERE competition = "euro 2004 q." | CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR) | What venue has euro 2004 q. as the competition? |
SELECT county FROM table_name_72 WHERE school = "whiteland community" | CREATE TABLE table_name_72 (county VARCHAR, school VARCHAR) | What county is Whiteland Community School in? |
SELECT county FROM table_name_25 WHERE ihsaa_football_class = "aaaaa" AND mascot = "grizzly cubs" | CREATE TABLE table_name_25 (county VARCHAR, ihsaa_football_class VARCHAR, mascot VARCHAR) | What county has a football team in IHSAA class AAAAA and a school macot of the Grizzly Cubs? |
SELECT county FROM table_name_71 WHERE mascot = "pioneers" | CREATE TABLE table_name_71 (county VARCHAR, mascot VARCHAR) | What county has a school mascot of the Pioneers? |
SELECT ihsaa_class FROM table_name_34 WHERE location = "indianapolis" | CREATE TABLE table_name_34 (ihsaa_class VARCHAR, location VARCHAR) | What are the IHSAA classes of the Indianapolis schools? |
SELECT song FROM table_name_52 WHERE points < 53 AND place > 8 AND draw > 1 | CREATE TABLE table_name_52 (song VARCHAR, draw VARCHAR, points VARCHAR, place VARCHAR) | Which Song has Points smaller than 53, and a Place larger than 8, and a Draw larger than 1? |
SELECT green_communist FROM table_name_64 WHERE left_bloc = "3.6%" | CREATE TABLE table_name_64 (green_communist VARCHAR, left_bloc VARCHAR) | What is the result for the Green-Communist party when the Left Bloc has 3.6%? |
SELECT green_communist FROM table_name_87 WHERE left_bloc = "3.0%" | CREATE TABLE table_name_87 (green_communist VARCHAR, left_bloc VARCHAR) | What is the result for the Green-Communist party when the Left Bloc has 3.0%? |
SELECT date_released FROM table_name_35 WHERE left_bloc = "3.2%" | CREATE TABLE table_name_35 (date_released VARCHAR, left_bloc VARCHAR) | What is the date released when the Left Bloc had 3.2%? |
SELECT cardinalatial_order_and_title FROM table_name_26 WHERE elevated = "circa 1116" | CREATE TABLE table_name_26 (cardinalatial_order_and_title VARCHAR, elevated VARCHAR) | What is the cardinalatial order of the elector elevated circa 1116? |
SELECT elevated FROM table_name_13 WHERE nationality = "pisa" | CREATE TABLE table_name_13 (elevated VARCHAR, nationality VARCHAR) | When was the elector from pisa elevated? |
SELECT cardinalatial_order_and_title FROM table_name_92 WHERE elector = "bosone" | CREATE TABLE table_name_92 (cardinalatial_order_and_title VARCHAR, elector VARCHAR) | What is the cardinalatial order and title of bosone? |
SELECT elevator FROM table_name_83 WHERE nationality = "crema" | CREATE TABLE table_name_83 (elevator VARCHAR, nationality VARCHAR) | Who is the elevator from crema? |
SELECT name FROM table_name_16 WHERE heat > 4 AND lane = 4 AND nationality = "australia" | CREATE TABLE table_name_16 (name VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR) | What is the name of the swimmer from Australia in lane 4 with a heat larger than 4? |
SELECT MIN(heat) FROM table_name_5 WHERE time = "2:34.94" | CREATE TABLE table_name_5 (heat INTEGER, time VARCHAR) | What is the lowest heat number for a swimmer with a time of 2:34.94? |
SELECT COUNT(rank) FROM table_name_29 WHERE nationality = "ukraine" AND react < 0.26 | CREATE TABLE table_name_29 (rank VARCHAR, nationality VARCHAR, react VARCHAR) | What is the rank of the player from Ukraine with react less than 0.26? |
SELECT MAX(week) FROM table_name_81 WHERE result = "w 21-17" AND attendance > 45 OFFSET 254 | CREATE TABLE table_name_81 (week INTEGER, result VARCHAR, attendance VARCHAR) | What was the highest week with a w 21-17 result, and more than 45,254 in attendance? |
SELECT proto_germanic FROM table_name_3 WHERE old_english = "/d/" | CREATE TABLE table_name_3 (proto_germanic VARCHAR, old_english VARCHAR) | What's the Proto-Germanic when the Old English is /d/? |
SELECT proto_germanic FROM table_name_41 WHERE german = "/s/ or /ts/" | CREATE TABLE table_name_41 (proto_germanic VARCHAR, german VARCHAR) | What's the Proto Germanic when then German is /s/ or /ts/? |
SELECT dutch FROM table_name_66 WHERE old_english = "/d/" | CREATE TABLE table_name_66 (dutch VARCHAR, old_english VARCHAR) | What's the Dutch when then Old English is /d/? |
SELECT west_germanic FROM table_name_90 WHERE german = "/s/ or /ts/" | CREATE TABLE table_name_90 (west_germanic VARCHAR, german VARCHAR) | What's the West Germanic when the German is /s/ or /ts/? |
SELECT proto_germanic FROM table_name_48 WHERE german = "/t/" | CREATE TABLE table_name_48 (proto_germanic VARCHAR, german VARCHAR) | What's the Proto-Germanic when the German is /t/? |
SELECT to_par FROM table_name_49 WHERE country = "japan" | CREATE TABLE table_name_49 (to_par VARCHAR, country VARCHAR) | What is the to par for japan |
SELECT player FROM table_name_4 WHERE money___$__ = "187,500" AND score = 66 - 75 - 71 - 69 = 281 | CREATE TABLE table_name_4 (player VARCHAR, money___$__ VARCHAR, score VARCHAR) | what player has $187,500 and score 66-75-71-69=281 |
SELECT place FROM table_name_74 WHERE score = 66 - 74 - 68 - 73 = 281 | CREATE TABLE table_name_74 (place VARCHAR, score VARCHAR) | what place has score 66-74-68-73=281 |
SELECT player FROM table_name_37 WHERE place = "t10" | CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR) | what player has place t10 |
SELECT to_par FROM table_name_83 WHERE money___$__ = "242,813" AND score = 68 - 72 - 74 - 66 = 280 | CREATE TABLE table_name_83 (to_par VARCHAR, money___$__ VARCHAR, score VARCHAR) | what is the to par for $242,813 with score 68-72-74-66=280 |
SELECT school FROM table_name_59 WHERE size > 408 AND mascot = "pacers" | CREATE TABLE table_name_59 (school VARCHAR, size VARCHAR, mascot VARCHAR) | Which School has a Size larger than 408, and a Mascot of pacers? |
SELECT SUM(size) FROM table_name_76 WHERE ihsaa_class = "aa" AND location = "milan" | CREATE TABLE table_name_76 (size INTEGER, ihsaa_class VARCHAR, location VARCHAR) | Which Size has an IHSAA Class of aa, and a Location of milan? |
SELECT county FROM table_name_36 WHERE mascot = "pacers" | CREATE TABLE table_name_36 (county VARCHAR, mascot VARCHAR) | Which County has a Mascot of pacers? |
SELECT mascot FROM table_name_30 WHERE county = "69 ripley" AND ihsaa_class = "aa" AND school = "south ripley" | CREATE TABLE table_name_30 (mascot VARCHAR, school VARCHAR, county VARCHAR, ihsaa_class VARCHAR) | Which Mascot has a County of 69 ripley, and an IHSAA Class of aa, and a School of south ripley? |
SELECT name FROM table_name_32 WHERE heat = 7 AND lane = 5 | CREATE TABLE table_name_32 (name VARCHAR, heat VARCHAR, lane VARCHAR) | Who was in Lane 5 and had a heat of 7? |
SELECT COUNT(lane) FROM table_name_22 WHERE heat = 4 AND nationality = "hungary" | CREATE TABLE table_name_22 (lane VARCHAR, heat VARCHAR, nationality VARCHAR) | What lane number was Hungary and had a heat of 4? |
SELECT date FROM table_name_77 WHERE score = "690.3" | CREATE TABLE table_name_77 (date VARCHAR, score VARCHAR) | What's the date when the score was 690.3? |
SELECT place FROM table_name_94 WHERE comp = "ech" AND date = "1989" | CREATE TABLE table_name_94 (place VARCHAR, comp VARCHAR, date VARCHAR) | What's the place of 1989 with a comp of ECH? |
SELECT shooter FROM table_name_59 WHERE score = "686.4" | CREATE TABLE table_name_59 (shooter VARCHAR, score VARCHAR) | Who was the shooter with a score of 686.4? |
SELECT year FROM table_name_81 WHERE game = "borderlands 2" | CREATE TABLE table_name_81 (year VARCHAR, game VARCHAR) | what is the year for borderlands 2? |
SELECT year FROM table_name_53 WHERE game = "dead space 2" | CREATE TABLE table_name_53 (year VARCHAR, game VARCHAR) | what is the year for the game dead space 2? |
SELECT developer_s_ FROM table_name_8 WHERE game = "demon's souls" | CREATE TABLE table_name_8 (developer_s_ VARCHAR, game VARCHAR) | who is the developers for demon's souls? |
SELECT year FROM table_name_88 WHERE standalone = "zaxxon" | CREATE TABLE table_name_88 (year VARCHAR, standalone VARCHAR) | In what year is Zaxxon the Standalone? |
SELECT standalone FROM table_name_43 WHERE console = "space invaders" | CREATE TABLE table_name_43 (standalone VARCHAR, console VARCHAR) | What is the Standalone in the year when Space Invaders is the Console? |
SELECT standalone FROM table_name_99 WHERE arcade = "tron" | CREATE TABLE table_name_99 (standalone VARCHAR, arcade VARCHAR) | What is the Standalone when Tron is the Arcade? |
SELECT console FROM table_name_59 WHERE arcade = "space invaders" | CREATE TABLE table_name_59 (console VARCHAR, arcade VARCHAR) | What is the Console when Space Invaders is the Arcade? |
SELECT position FROM table_name_6 WHERE team = "arizona diamondbacks" | CREATE TABLE table_name_6 (position VARCHAR, team VARCHAR) | What position does the player from the Arizona Diamondbacks play? |
SELECT school FROM table_name_30 WHERE position = "p" AND team = "kansas city royals" AND player = "jay gehrke" | CREATE TABLE table_name_30 (school VARCHAR, player VARCHAR, position VARCHAR, team VARCHAR) | What school did P Jay Gehrke of the Kansas City Royals attend? |
SELECT country FROM table_name_31 WHERE athletes = "adam van koeverden" | CREATE TABLE table_name_31 (country VARCHAR, athletes VARCHAR) | What country does Adam van Koeverden play for? |
SELECT pick FROM table_name_63 WHERE school = "jasper hs (jasper, texas)" | CREATE TABLE table_name_63 (pick VARCHAR, school VARCHAR) | what is the pick when the school is jasper hs (jasper, texas)? |
SELECT player FROM table_name_99 WHERE position = "p" AND team = "oakland athletics" | CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, team VARCHAR) | who is the player when the position is p and the team is oakland athletics? |
SELECT school FROM table_name_1 WHERE team = "new york yankees" | CREATE TABLE table_name_1 (school VARCHAR, team VARCHAR) | what is the school when the team is new york yankees? |
SELECT player FROM table_name_24 WHERE school = "spring hs (spring, texas)" | CREATE TABLE table_name_24 (player VARCHAR, school VARCHAR) | who is the player when the school is spring hs (spring, texas)? |
SELECT melamine_content_mg_kg_ FROM table_name_31 WHERE samples_failed > 1 AND product = "英雄牌嬰幼兒配方乳粉" | CREATE TABLE table_name_31 (melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR, product VARCHAR) | What's the melamine content of 英雄牌嬰幼兒配方乳粉 having more than 1 samples failed? |
SELECT MAX(melamine_content_mg_kg_) FROM table_name_48 WHERE producer = "guangzhou jinding dairy products factory" AND samples_failed > 1 | CREATE TABLE table_name_48 (melamine_content_mg_kg_ INTEGER, producer VARCHAR, samples_failed VARCHAR) | What's the most melamine content that has more than 1 samples failed and produced by Guangzhou Jinding Dairy Products Factory? |
SELECT product FROM table_name_88 WHERE melamine_content_mg_kg_ < 98.6 AND samples_failed > 1 AND samples_taken < 3 | CREATE TABLE table_name_88 (product VARCHAR, samples_taken VARCHAR, melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR) | What's the product that has less than 98.6 melamine content, more than 1 sample failed and took less than 3 samples? |
SELECT MAX(samples_failed) FROM table_name_77 WHERE product = "可淇牌嬰幼兒配方乳粉" AND samples_taken < 1 | CREATE TABLE table_name_77 (samples_failed INTEGER, product VARCHAR, samples_taken VARCHAR) | What the most samples failed for 可淇牌嬰幼兒配方乳粉 and had less than 1 samples taken? |
SELECT SUM(samples_taken) FROM table_name_12 WHERE melamine_content_mg_kg_ < 53.4 AND producer = "qingdao suncare nutritional technology" | CREATE TABLE table_name_12 (samples_taken INTEGER, melamine_content_mg_kg_ VARCHAR, producer VARCHAR) | How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4? |
SELECT score FROM table_name_13 WHERE country = "australia" | CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR) | What did the golfer from Australia score? |
SELECT date FROM table_name_64 WHERE opera = "5.1%" AND internet_explorer = "59.5%" | CREATE TABLE table_name_64 (date VARCHAR, opera VARCHAR, internet_explorer VARCHAR) | Which date has an Opera usage percentage of 5.1% and Internet Explorer usage of 59.5%? |
SELECT source FROM table_name_28 WHERE date = "june 2008" | CREATE TABLE table_name_28 (source VARCHAR, date VARCHAR) | Which source has a date of June 2008? |
SELECT source FROM table_name_52 WHERE internet_explorer = "60.2%" | CREATE TABLE table_name_52 (source VARCHAR, internet_explorer VARCHAR) | Which source date has an Internet Explorer usage of 60.2%? |
SELECT city FROM table_name_88 WHERE home_team_s = "brisbane broncos" | CREATE TABLE table_name_88 (city VARCHAR, home_team_s VARCHAR) | What city has the home team of the brisbane broncos? |
SELECT MIN(closed__as_a_rl_stadium_) FROM table_name_94 WHERE country = "france" | CREATE TABLE table_name_94 (closed__as_a_rl_stadium_ INTEGER, country VARCHAR) | What is the earliest closed year in the country of france? |
SELECT res FROM table_name_7 WHERE time = "2:20" | CREATE TABLE table_name_7 (res VARCHAR, time VARCHAR) | What is the result for the event that lasted 2:20? |
SELECT opponent FROM table_name_54 WHERE res = "loss" AND event = "gladiator challenge 87: collision course" | CREATE TABLE table_name_54 (opponent VARCHAR, res VARCHAR, event VARCHAR) | Who was the fight against when loss was the result at the Gladiator Challenge 87: Collision Course event? |
SELECT record FROM table_name_13 WHERE event = "cage combat fighting championships: mayhem" | CREATE TABLE table_name_13 (record VARCHAR, event VARCHAR) | For the Cage Combat Fighting Championships: Mayhem, what was the record? |
SELECT designer FROM table_name_89 WHERE restaurant_name = "the grapefruit moon" | CREATE TABLE table_name_89 (designer VARCHAR, restaurant_name VARCHAR) | Who was the designer for The Grapefruit Moon? |
SELECT chef FROM table_name_21 WHERE restaurant_name = "lakes bar and grill" | CREATE TABLE table_name_21 (chef VARCHAR, restaurant_name VARCHAR) | Who is the chef at Lakes Bar and Grill? |
SELECT restaurant_name FROM table_name_85 WHERE designer = "robin de groot" AND location = "cobourg, on" | CREATE TABLE table_name_85 (restaurant_name VARCHAR, designer VARCHAR, location VARCHAR) | What is the name of the Cobourg, ON restaurant that had Robin de Groot as designer? |
SELECT european_competitions FROM table_name_48 WHERE tier = 2 AND pos = 3 | CREATE TABLE table_name_48 (european_competitions VARCHAR, tier VARCHAR, pos VARCHAR) | What European competitions have a tier of 2 and a position of 3? |
SELECT nation FROM table_name_2 WHERE silver = 5 AND gold > 4 | CREATE TABLE table_name_2 (nation VARCHAR, silver VARCHAR, gold VARCHAR) | Which Nation won 5 Silver, and more than 4 Gold? |
SELECT COUNT(heat) FROM table_name_74 WHERE lane < 4 AND name = "christophe lebon" | CREATE TABLE table_name_74 (heat VARCHAR, lane VARCHAR, name VARCHAR) | What is the sum of heat for christophe lebon when lane is less than 4? |
SELECT name FROM table_name_79 WHERE rank < 9 AND heat > 5 AND nationality = "united states" | CREATE TABLE table_name_79 (name VARCHAR, nationality VARCHAR, rank VARCHAR, heat VARCHAR) | Who is from the united states, has a rank less than 9, and heat more than 5? |
SELECT COUNT(rank) FROM table_name_38 WHERE nationality = "serbia" AND heat < 2 | CREATE TABLE table_name_38 (rank VARCHAR, nationality VARCHAR, heat VARCHAR) | Serbia has a heat less than 2 and what sum of rank? |
SELECT MIN(lane) FROM table_name_38 WHERE rank = 33 | CREATE TABLE table_name_38 (lane INTEGER, rank VARCHAR) | When rank is 33, what is the smallest lane? |
SELECT model FROM table_name_6 WHERE number_of_cpus = "1–10" AND performance__mips_ = "49–447" | CREATE TABLE table_name_6 (model VARCHAR, number_of_cpus VARCHAR, performance__mips_ VARCHAR) | Which Model has a Number of CPUs of 1–10, and a Performance (MIPS) of 49–447? |
SELECT MAX(year_introduced) FROM table_name_26 WHERE memory__gb_ = "0.125–2" | CREATE TABLE table_name_26 (year_introduced INTEGER, memory__gb_ VARCHAR) | Which Year Introduced has a Memory (GB) of 0.125–2? |
SELECT number_of_cpus FROM table_name_59 WHERE memory__gb_ = "0.5–16" | CREATE TABLE table_name_59 (number_of_cpus VARCHAR, memory__gb_ VARCHAR) | Which Number of CPUs has a Memory (GB) of 0.5–16? |
SELECT memory__gb_ FROM table_name_57 WHERE number_of_cpus = "1–6" | CREATE TABLE table_name_57 (memory__gb_ VARCHAR, number_of_cpus VARCHAR) | Which Memory (GB) has a Number of CPUs of 1–6? |
SELECT fuel_type FROM table_name_62 WHERE mpg_us_extra_urban > 53.5 AND mpg_us_combined > 50 AND manufacturer = "renault" | CREATE TABLE table_name_62 (fuel_type VARCHAR, manufacturer VARCHAR, mpg_us_extra_urban VARCHAR, mpg_us_combined VARCHAR) | Which Fuel Type that has a mpg-US Extra-Urban larger than 53.5, and a mpg-US Combined larger than 50 from renault? |
SELECT country FROM table_name_26 WHERE rank > 4 AND time = "5:59.56" | CREATE TABLE table_name_26 (country VARCHAR, rank VARCHAR, time VARCHAR) | What is the Country of the Rowers with a Rank larger than 4 and Time of 5:59.56? |
SELECT time FROM table_name_98 WHERE rank > 2 AND notes = "fb" AND country = "belarus" | CREATE TABLE table_name_98 (time VARCHAR, country VARCHAR, rank VARCHAR, notes VARCHAR) | What is the Time of the Belarus Player with a Rank larger than 2 and Notes of FB? |
Subsets and Splits