answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT COUNT(name_of_film) FROM table_25926120_3 WHERE language = "Hindi"
|
CREATE TABLE table_25926120_3 (name_of_film VARCHAR, language VARCHAR)
|
How many films were in hindi?
|
SELECT COUNT(name_of_film) FROM table_25926120_3 WHERE language = "Assamese"
|
CREATE TABLE table_25926120_3 (name_of_film VARCHAR, language VARCHAR)
|
How many films were in assamese?
|
SELECT awardee_s_ FROM table_25926120_3 WHERE name_of_award = "Best Actor"
|
CREATE TABLE table_25926120_3 (awardee_s_ VARCHAR, name_of_award VARCHAR)
|
Who won best actor?
|
SELECT winner FROM table_25938117_1 WHERE date = "Jan 24"
|
CREATE TABLE table_25938117_1 (winner VARCHAR, date VARCHAR)
|
Name the winner for jan 24
|
SELECT COUNT(date) FROM table_25938117_1 WHERE tournament = "Toshiba Classic"
|
CREATE TABLE table_25938117_1 (date VARCHAR, tournament VARCHAR)
|
Name the total number of dates for toshiba classic
|
SELECT tournament FROM table_25938117_1 WHERE location = "Dominican Republic"
|
CREATE TABLE table_25938117_1 (tournament VARCHAR, location VARCHAR)
|
Name the tournament for dominican republic
|
SELECT COUNT(winner) FROM table_25938117_1 WHERE tournament = "Allianz Championship"
|
CREATE TABLE table_25938117_1 (winner VARCHAR, tournament VARCHAR)
|
Name the total number of winners for allianz championship
|
SELECT 1 AS st_prize___$__ FROM table_25938117_1 WHERE tournament = "Senior PGA Championship"
|
CREATE TABLE table_25938117_1 (tournament VARCHAR)
|
Name the 1st prize for senior pga championship
|
SELECT place FROM table_25931938_1 WHERE aggregate = 35
|
CREATE TABLE table_25931938_1 (place VARCHAR, aggregate VARCHAR)
|
What was the place for the celebrity whose aggregate was 35?
|
SELECT MIN(dances) FROM table_25931938_1 WHERE celebrity = "John Barnes"
|
CREATE TABLE table_25931938_1 (dances INTEGER, celebrity VARCHAR)
|
How many dances did John Barnes have?
|
SELECT MAX(age) FROM table_25931938_1 WHERE aggregate = 402
|
CREATE TABLE table_25931938_1 (age INTEGER, aggregate VARCHAR)
|
What is the age of the celebrity who had a 402 aggregate?
|
SELECT MAX(aggregate) FROM table_25931938_1 WHERE celebrity = "Ricky Groves"
|
CREATE TABLE table_25931938_1 (aggregate INTEGER, celebrity VARCHAR)
|
What was the aggregate for Ricky Groves?
|
SELECT aggregate FROM table_25931938_1 WHERE dances = 7 AND known_for = "Singer"
|
CREATE TABLE table_25931938_1 (aggregate VARCHAR, dances VARCHAR, known_for VARCHAR)
|
What was the aggregate for the celebrity who was known for being a singer and had 7 dances?
|
SELECT conditions_of_access FROM table_25965003_3 WHERE access_using_a_croatian_identity_card = "Yes" AND length_of_stay_permitted = "Freedom of movement"
|
CREATE TABLE table_25965003_3 (conditions_of_access VARCHAR, access_using_a_croatian_identity_card VARCHAR, length_of_stay_permitted VARCHAR)
|
What are the conditions of access where access using a Croatian identity card is yes and the length of stay permitted is freedom of movement?
|
SELECT access_using_a_croatian_identity_card FROM table_25965003_3 WHERE countries_and_territories = "Jersey"
|
CREATE TABLE table_25965003_3 (access_using_a_croatian_identity_card VARCHAR, countries_and_territories VARCHAR)
|
Can one access the Jersey territory using a Croatian identity card?
|
SELECT fee__if_applicable_ FROM table_25965003_3 WHERE countries_and_territories = "Norway"
|
CREATE TABLE table_25965003_3 (fee__if_applicable_ VARCHAR, countries_and_territories VARCHAR)
|
What is the fee (if applicable) for Norway?
|
SELECT length_of_stay_permitted FROM table_25965003_3 WHERE countries_and_territories = "Jersey"
|
CREATE TABLE table_25965003_3 (length_of_stay_permitted VARCHAR, countries_and_territories VARCHAR)
|
What is the permitted length of stay in the Jersey territory?
|
SELECT access_using_a_croatian_identity_card FROM table_25965003_3 WHERE countries_and_territories = "Faroe Islands"
|
CREATE TABLE table_25965003_3 (access_using_a_croatian_identity_card VARCHAR, countries_and_territories VARCHAR)
|
Can one access the Faroe Islands using a Croatian identity card?
|
SELECT length_of_stay_permitted FROM table_25965003_3 WHERE countries_and_territories = "European Union"
|
CREATE TABLE table_25965003_3 (length_of_stay_permitted VARCHAR, countries_and_territories VARCHAR)
|
What length of stay is permitted in the European Union?
|
SELECT complement FROM table_2596811_12 WHERE killed = "3 off 37 men"
|
CREATE TABLE table_2596811_12 (complement VARCHAR, killed VARCHAR)
|
What was the complement for the unit that had 3 off 37 men killed?
|
SELECT COUNT(wounded) FROM table_2596811_12 WHERE complement = "22 off 637 men"
|
CREATE TABLE table_2596811_12 (wounded VARCHAR, complement VARCHAR)
|
What is the number of wounded figures associated with a complement of 22 off 637 men?
|
SELECT COUNT(commander) FROM table_2596811_12 WHERE killed = "0 off 63 men"
|
CREATE TABLE table_2596811_12 (commander VARCHAR, killed VARCHAR)
|
What is the number of commanders that had 0 off 63 men killed?
|
SELECT complement FROM table_2596811_12 WHERE killed = "0 off 3 men" AND wounded = "0 off 2 men"
|
CREATE TABLE table_2596811_12 (complement VARCHAR, killed VARCHAR, wounded VARCHAR)
|
What was the complement associated with 0 off 3 men killed and 0 off 2 men wounded?
|
SELECT COUNT(rainfall_by_depth__mm_year_) FROM table_25983027_1 WHERE infiltration__km_3__year_ = "9.3"
|
CREATE TABLE table_25983027_1 (rainfall_by_depth__mm_year_ VARCHAR, infiltration__km_3__year_ VARCHAR)
|
How many regions had rainfall infiltration (km 3/year) of 9.3?
|
SELECT rainfall_by_volume__km_3__year_ FROM table_25983027_1 WHERE rainfall_by_depth__mm_year_ = 3527
|
CREATE TABLE table_25983027_1 (rainfall_by_volume__km_3__year_ VARCHAR, rainfall_by_depth__mm_year_ VARCHAR)
|
What was the rainfall by volume in Huetar Atlantico where the rainfall depth (mm/year) was 3527?
|
SELECT rainfall_by_volume__km_3__year_ FROM table_25983027_1 WHERE rainfall_by_depth__mm_year_ = 2801
|
CREATE TABLE table_25983027_1 (rainfall_by_volume__km_3__year_ VARCHAR, rainfall_by_depth__mm_year_ VARCHAR)
|
In Pacifico Central where the rainfall by depth (mm/year) was 2801 what was the rainfall by volume?
|
SELECT evapotranspiration__km_3__year_ FROM table_25983027_1 WHERE rainfall_by_volume__km_3__year_ = "13.2"
|
CREATE TABLE table_25983027_1 (evapotranspiration__km_3__year_ VARCHAR, rainfall_by_volume__km_3__year_ VARCHAR)
|
In the region where the rainfall by volume (km 3 /year) was 13.2, what was the evapotranspiration (km 3 /year)?
|
SELECT infiltration__km_3__year_ FROM table_25983027_1 WHERE region = "Central"
|
CREATE TABLE table_25983027_1 (infiltration__km_3__year_ VARCHAR, region VARCHAR)
|
In the Central region, what was the infiltration (km 3 /year)?
|
SELECT rainfall_by_depth__mm_year_ FROM table_25983027_1 WHERE land_area__km_2__ = "8,543.2"
|
CREATE TABLE table_25983027_1 (rainfall_by_depth__mm_year_ VARCHAR, land_area__km_2__ VARCHAR)
|
In the Central region, where the land area (km 2) is 8,543.2, what was the rainfall by depth (mm/year)?
|
SELECT MAX(wins) FROM table_2597876_1 WHERE winnings = "$90,700"
|
CREATE TABLE table_2597876_1 (wins INTEGER, winnings VARCHAR)
|
How many wins did Parsons have in the year where his winnings were $90,700?
|
SELECT position FROM table_2597876_1 WHERE year = 1992
|
CREATE TABLE table_2597876_1 (position VARCHAR, year VARCHAR)
|
What position was Parsons in for 1992?
|
SELECT young_rider_classification FROM table_25999087_2 WHERE winner = "Jelle Vanendert"
|
CREATE TABLE table_25999087_2 (young_rider_classification VARCHAR, winner VARCHAR)
|
Who is every young rider classification when Jelle Vanendert is the winner?
|
SELECT young_rider_classification FROM table_25999087_2 WHERE combativity_award = "Yannick Talabardon"
|
CREATE TABLE table_25999087_2 (young_rider_classification VARCHAR, combativity_award VARCHAR)
|
Who is every young rider classification if combativity award is Yannick Talabardon?
|
SELECT COUNT(mountains_classification) FROM table_25999087_2 WHERE winner = "Rui Costa"
|
CREATE TABLE table_25999087_2 (mountains_classification VARCHAR, winner VARCHAR)
|
How many mountains classifications when Rui Costa is the winner?
|
SELECT team_classification FROM table_25999087_2 WHERE points_classification = "Philippe Gilbert" AND mountains_classification = "Johnny Hoogerland" AND stage < 9.0
|
CREATE TABLE table_25999087_2 (team_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, mountains_classification VARCHAR)
|
What is every team classification when points classification is Philippe Gilbert if mountains classification is Johnny Hoogerland and stage is less than 9.0?
|
SELECT us_viewers__million_ FROM table_25997153_1 WHERE directed_by = "Dan Lerner"
|
CREATE TABLE table_25997153_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
|
how many million u.s. viewers watched the episode directed by dan lerner?
|
SELECT MAX(no_in_series) FROM table_25997153_1 WHERE us_viewers__million_ = "16.17"
|
CREATE TABLE table_25997153_1 (no_in_series INTEGER, us_viewers__million_ VARCHAR)
|
what is the latest episode in the series that had 16.17 million u.s. viewers?
|
SELECT title FROM table_25997153_1 WHERE production_code = "3X5362"
|
CREATE TABLE table_25997153_1 (title VARCHAR, production_code VARCHAR)
|
What is the title of the episode with the production code 3x5362?
|
SELECT MIN(nsg_nr) FROM table_26013618_1 WHERE date_established = "19961220 20.12.1996"
|
CREATE TABLE table_26013618_1 (nsg_nr INTEGER, date_established VARCHAR)
|
What Nature reserve number was established on 19961220 20.12.1996
|
SELECT COUNT(nsg_nr) FROM table_26013618_1 WHERE date_established = "19740329 29.03.1974"
|
CREATE TABLE table_26013618_1 (nsg_nr VARCHAR, date_established VARCHAR)
|
How many reserves were established on 19740329 29.03.1974?
|
SELECT date_established FROM table_26013618_1 WHERE name_of_the_nature_reserve = "Stellbrookmoor"
|
CREATE TABLE table_26013618_1 (date_established VARCHAR, name_of_the_nature_reserve VARCHAR)
|
When was Stellbrookmoor established?
|
SELECT district___town FROM table_26013618_1 WHERE area__ha_ = "163,62"
|
CREATE TABLE table_26013618_1 (district___town VARCHAR, area__ha_ VARCHAR)
|
What town has the reserve with an area of 163,62?
|
SELECT COUNT(nsg_nr) FROM table_26013618_1 WHERE district___town = "Herzogtum Lauenburg" AND area__ha_ = "123,14"
|
CREATE TABLE table_26013618_1 (nsg_nr VARCHAR, district___town VARCHAR, area__ha_ VARCHAR)
|
How many reserves are in Herzogtum Lauenburg with an area of 123,14?
|
SELECT COUNT(name_of_the_nature_reserve) FROM table_26013618_1 WHERE nsg_nr = 54
|
CREATE TABLE table_26013618_1 (name_of_the_nature_reserve VARCHAR, nsg_nr VARCHAR)
|
How many names does nature reserve 54 have?
|
SELECT title FROM table_25996938_1 WHERE us_viewers__million_ = "18.74"
|
CREATE TABLE table_25996938_1 (title VARCHAR, us_viewers__million_ VARCHAR)
|
Which episode did 18.74 million people tune in?
|
SELECT production_code FROM table_25996938_1 WHERE no_in_series = 11
|
CREATE TABLE table_25996938_1 (production_code VARCHAR, no_in_series VARCHAR)
|
Which prod code was series 11?
|
SELECT MAX(localities) FROM table_26007767_1
|
CREATE TABLE table_26007767_1 (localities INTEGER)
|
What is the highest localities?
|
SELECT MIN(arabs) FROM table_26007767_1 WHERE metropolitan_ring = "Inner Ring 3"
|
CREATE TABLE table_26007767_1 (arabs INTEGER, metropolitan_ring VARCHAR)
|
What is the least arabs when the metropolitan ring is inner ring 3?
|
SELECT COUNT(localities) FROM table_26007767_1 WHERE population_density__per_km²_ = "2.5"
|
CREATE TABLE table_26007767_1 (localities VARCHAR, population_density__per_km²_ VARCHAR)
|
How many time is the population density (per km²) is 2.5?
|
SELECT COUNT(stage) FROM table_26010857_13 WHERE teams_classification = "Cervélo TestTeam"
|
CREATE TABLE table_26010857_13 (stage VARCHAR, teams_classification VARCHAR)
|
What is the number of stages where the teams classification leader is Cervélo Testteam?
|
SELECT MAX(stage) FROM table_26010857_13 WHERE teams_classification = "Team Sky"
|
CREATE TABLE table_26010857_13 (stage INTEGER, teams_classification VARCHAR)
|
How many stages did Team Sky lead the teams classification?
|
SELECT general_classification FROM table_26010857_13 WHERE stage = 3
|
CREATE TABLE table_26010857_13 (general_classification VARCHAR, stage VARCHAR)
|
Who leads the general classification in stage 3?
|
SELECT COUNT(prod_code) FROM table_2602958_4 WHERE no = 45
|
CREATE TABLE table_2602958_4 (prod_code VARCHAR, no VARCHAR)
|
How many production codes are there for episode number 45?
|
SELECT writer_s_ FROM table_2602958_4 WHERE _number = 6
|
CREATE TABLE table_2602958_4 (writer_s_ VARCHAR, _number VARCHAR)
|
Who wrote episode 6 in season 3?
|
SELECT _number FROM table_2602958_4 WHERE prod_code = 175020
|
CREATE TABLE table_2602958_4 (_number VARCHAR, prod_code VARCHAR)
|
Which episodein season 3 had 175020 for a production code?
|
SELECT writer_s_ FROM table_2602958_4 WHERE no = 45
|
CREATE TABLE table_2602958_4 (writer_s_ VARCHAR, no VARCHAR)
|
Who wrote episode number 45?
|
SELECT us_viewers__million_ FROM table_2602958_3 WHERE no = 38
|
CREATE TABLE table_2602958_3 (us_viewers__million_ VARCHAR, no VARCHAR)
|
How many viewers in millions for episode number 38?
|
SELECT director FROM table_2602958_3 WHERE prod_code = 227451
|
CREATE TABLE table_2602958_3 (director VARCHAR, prod_code VARCHAR)
|
Who directed the episode with production code 227451?
|
SELECT original_air_date FROM table_2602958_3 WHERE director = "Kevin Dowling"
|
CREATE TABLE table_2602958_3 (original_air_date VARCHAR, director VARCHAR)
|
What is the original air date for the episode directed by kevin dowling?
|
SELECT ba___running_bear FROM table_2603017_2 WHERE b___bishop = "RN - Running Stag"
|
CREATE TABLE table_2603017_2 (ba___running_bear VARCHAR, b___bishop VARCHAR)
|
what is ba - running bear where b - bishop is rn - running stag?
|
SELECT b___bishop FROM table_2603017_2 WHERE ab___angry_boar = "VW - Vertical Wolf"
|
CREATE TABLE table_2603017_2 (b___bishop VARCHAR, ab___angry_boar VARCHAR)
|
what is b - bishop where ab - angry boar is vw - vertical wolf?
|
SELECT ba___running_bear FROM table_2603017_2 WHERE ab___angry_boar = "OS - Ox Soldier"
|
CREATE TABLE table_2603017_2 (ba___running_bear VARCHAR, ab___angry_boar VARCHAR)
|
what is ba - running bear where ab - angry boar is os - ox soldier?
|
SELECT b___bishop FROM table_2603017_2 WHERE bc___beast_cadet = "GR - Great Dove"
|
CREATE TABLE table_2603017_2 (b___bishop VARCHAR, bc___beast_cadet VARCHAR)
|
what is b - bishop where bc - beast cadet is gr - great dove?
|
SELECT bb___blind_bear FROM table_2603017_2 WHERE ba___running_bear = "MF - Mountain Falcon"
|
CREATE TABLE table_2603017_2 (bb___blind_bear VARCHAR, ba___running_bear VARCHAR)
|
what is bb - blind bear where ba - running bear is mf - mountain falcon?
|
SELECT bb___blind_bear FROM table_2603017_2 WHERE ba___running_bear = "TC - Tile Chariot"
|
CREATE TABLE table_2603017_2 (bb___blind_bear VARCHAR, ba___running_bear VARCHAR)
|
what is bb - blind bear where ba - running bear is tc - tile chariot?
|
SELECT MIN(die_size__mm_2__) FROM table_26040604_1 WHERE sm_count = 2
|
CREATE TABLE table_26040604_1 (die_size__mm_2__ INTEGER, sm_count VARCHAR)
|
What is the minimum die size for an SM count of exactly 2?
|
SELECT COUNT(die_size__mm_2__) FROM table_26040604_1 WHERE texture___gt__s_ = "34"
|
CREATE TABLE table_26040604_1 (die_size__mm_2__ VARCHAR, texture___gt__s_ VARCHAR)
|
How many die sizes have a texture of exactly 34?
|
SELECT model FROM table_26040604_1 WHERE launch = "September 3, 2010"
|
CREATE TABLE table_26040604_1 (model VARCHAR, launch VARCHAR)
|
What model has a launch of September 3, 2010?
|
SELECT dram_type FROM table_26040604_1 WHERE sm_count = 6
|
CREATE TABLE table_26040604_1 (dram_type VARCHAR, sm_count VARCHAR)
|
What was the DRAM type of an SM Count of 6?
|
SELECT writer_s_ FROM table_2602958_5 WHERE _number = 8
|
CREATE TABLE table_2602958_5 (writer_s_ VARCHAR, _number VARCHAR)
|
Who wrote the movie positioned at 8 on the list?
|
SELECT passes_through___district_s FROM table_26036389_1 WHERE mdr_no = 47
|
CREATE TABLE table_26036389_1 (passes_through___district_s VARCHAR, mdr_no VARCHAR)
|
What district does the road with a MDR number of 47 pass through?
|
SELECT MIN(mdr_no) FROM table_26036389_1 WHERE name_of_road = "Rait Charhi Dharamshala"
|
CREATE TABLE table_26036389_1 (mdr_no INTEGER, name_of_road VARCHAR)
|
What is the MDR number of Rait Charhi Dharamshala?
|
SELECT MAX(sr_no) FROM table_26036389_1 WHERE name_of_road = "Banikhet Dalhouse Khajiar"
|
CREATE TABLE table_26036389_1 (sr_no INTEGER, name_of_road VARCHAR)
|
What is the Sr. number of Banikhet Dalhouse Khajiar?
|
SELECT MIN(runs) FROM table_26041144_10
|
CREATE TABLE table_26041144_10 (runs INTEGER)
|
What is the smallest number of runs?
|
SELECT MIN(innings) FROM table_26041144_10 WHERE average = "32.3"
|
CREATE TABLE table_26041144_10 (innings INTEGER, average VARCHAR)
|
How many innings are there when the average is 32.3?
|
SELECT average FROM table_26041144_10 WHERE strike_rate = "75.78"
|
CREATE TABLE table_26041144_10 (average VARCHAR, strike_rate VARCHAR)
|
What was the average when the strike rate is 75.78?
|
SELECT MAX(catches) FROM table_26041144_16
|
CREATE TABLE table_26041144_16 (catches INTEGER)
|
What is the catches maximum number?
|
SELECT MIN(catches) FROM table_26041144_16 WHERE player = "Hashan Tillakaratne"
|
CREATE TABLE table_26041144_16 (catches INTEGER, player VARCHAR)
|
If the player is Hashan Tillakaratne, what is the catches minimum?
|
SELECT period FROM table_26041144_16 WHERE player = "Hashan Tillakaratne"
|
CREATE TABLE table_26041144_16 (period VARCHAR, player VARCHAR)
|
what is the period if the player is Hashan Tillakaratne?
|
SELECT COUNT(rank) FROM table_26041144_16 WHERE player = "Hashan Tillakaratne"
|
CREATE TABLE table_26041144_16 (rank VARCHAR, player VARCHAR)
|
What is the ranktotal number if the Hashan Tillakaratne?
|
SELECT COUNT(rank) FROM table_26041144_16 WHERE catches = 131
|
CREATE TABLE table_26041144_16 (rank VARCHAR, catches VARCHAR)
|
If the catches is 131, what is the rank total number?
|
SELECT MAX(burglary) FROM table_26060884_2 WHERE property_crimes = 168630
|
CREATE TABLE table_26060884_2 (burglary INTEGER, property_crimes VARCHAR)
|
What was the maximum burglary statistics if the property crimes is 168630?
|
SELECT burglary FROM table_26060884_2 WHERE forcible_rape = 1233
|
CREATE TABLE table_26060884_2 (burglary VARCHAR, forcible_rape VARCHAR)
|
How many burglary crimes were committed if the forcible rapes were 1233?
|
SELECT COUNT(vehicle_theft) FROM table_26060884_2 WHERE forcible_rape = 1232
|
CREATE TABLE table_26060884_2 (vehicle_theft VARCHAR, forcible_rape VARCHAR)
|
How many vehicle thefts data were recorded if forcible rape is 1232?
|
SELECT COUNT(vehicle_theft) FROM table_26060884_2 WHERE population = 4465430
|
CREATE TABLE table_26060884_2 (vehicle_theft VARCHAR, population VARCHAR)
|
How many vehicle theft data were recorded for a year with a population of 4465430?
|
SELECT MIN(property_crimes) FROM table_26060884_2 WHERE burglary = 45350
|
CREATE TABLE table_26060884_2 (property_crimes INTEGER, burglary VARCHAR)
|
What was the minimum property crimes stats if the burglary committed was 45350?
|
SELECT average FROM table_26041144_11 WHERE player = "Kumar Sangakkara"
|
CREATE TABLE table_26041144_11 (average VARCHAR, player VARCHAR)
|
What was kumar sangakkara's average?
|
SELECT player FROM table_26041144_11 WHERE average = "36.74"
|
CREATE TABLE table_26041144_11 (player VARCHAR, average VARCHAR)
|
Who was the player with a 36.74 average?
|
SELECT rank FROM table_26041144_11 WHERE average = "39.69"
|
CREATE TABLE table_26041144_11 (rank VARCHAR, average VARCHAR)
|
What is the rank of the player with the 39.69 average?
|
SELECT MIN(matches) FROM table_26041144_11
|
CREATE TABLE table_26041144_11 (matches INTEGER)
|
What is the lowest number of matches for a record holder?
|
SELECT h264 FROM table_26099252_1 WHERE theora = "2.3"
|
CREATE TABLE table_26099252_1 (h264 VARCHAR, theora VARCHAR)
|
When theora is 2.3, how much is the h.264?
|
SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = "6.0"
|
CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, vp8___webm__ VARCHAR)
|
When vp8 ( webm ) is 6.0, how much is the vp9 ( webm )?
|
SELECT vp9___webm__ FROM table_26099252_1 WHERE vp8___webm__ = "4.4"
|
CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, vp8___webm__ VARCHAR)
|
When vp8 ( webm ) is 4.4, how much is vp9 ( webm )
|
SELECT latest_stable_release FROM table_26099252_1 WHERE vp9___webm__ = "No" AND h264 = "3.0"
|
CREATE TABLE table_26099252_1 (latest_stable_release VARCHAR, vp9___webm__ VARCHAR, h264 VARCHAR)
|
What is the last stable version where the h.264 is 3.0 and vp9 (webm) is no.
|
SELECT vp9___webm__ FROM table_26099252_1 WHERE h264 = "9.0"
|
CREATE TABLE table_26099252_1 (vp9___webm__ VARCHAR, h264 VARCHAR)
|
When h.264 is 9.0, how much is vp9 ( webm )
|
SELECT peletier FROM table_260938_1 WHERE systematics = "Million 1"
|
CREATE TABLE table_260938_1 (peletier VARCHAR, systematics VARCHAR)
|
Name the peletier for systematics being million 1
|
SELECT si_prefix FROM table_260938_1 WHERE chuquet = "thousand"
|
CREATE TABLE table_260938_1 (si_prefix VARCHAR, chuquet VARCHAR)
|
Name the si prefix for thousand chuquet
|
SELECT base_10 FROM table_260938_1 WHERE peletier = "Bi llion"
|
CREATE TABLE table_260938_1 (base_10 VARCHAR, peletier VARCHAR)
|
Name the base 10 for peletier for bi llion
|
SELECT COUNT(peletier) FROM table_260938_1 WHERE shortscale_comparison = "Billion"
|
CREATE TABLE table_260938_1 (peletier VARCHAR, shortscale_comparison VARCHAR)
|
Name the total number of peletier for shortscale comparison billion
|
SELECT base_10 FROM table_260938_1 WHERE shortscale_comparison = "Billion"
|
CREATE TABLE table_260938_1 (base_10 VARCHAR, shortscale_comparison VARCHAR)
|
Name the base 10 for shortscale comparison for billion
|
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.