question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What is the record for Game 8? | CREATE TABLE "schedule" (
"game" text,
"date" text,
"opponent" text,
"result" text,
"record" text
); | SELECT "record" FROM "schedule" WHERE "game"='8'; | 2-18847687-2 |
What percentage of users were using mobile browsers during the period in which 2.62% were using Opera? | CREATE TABLE "usage_share_data_from_wikimedia_visitor_" (
"period" text,
"internet_explorer" text,
"firefox" text,
"chrome" text,
"safari" text,
"opera" text,
"other_mozilla" text,
"mobile" text
); | SELECT "mobile" FROM "usage_share_data_from_wikimedia_visitor_" WHERE "opera"='2.62%'; | 2-1876262-10 |
What percentage of users were using mobile browsers during the period in which 9.00% were using Chrome? | CREATE TABLE "usage_share_data_from_wikimedia_visitor_" (
"period" text,
"internet_explorer" text,
"firefox" text,
"chrome" text,
"safari" text,
"opera" text,
"other_mozilla" text,
"mobile" text
); | SELECT "mobile" FROM "usage_share_data_from_wikimedia_visitor_" WHERE "chrome"='9.00%'; | 2-1876262-10 |
What percentage of users were using Safari during the period in which 30.82% were using Firefox? | CREATE TABLE "usage_share_data_from_wikimedia_visitor_" (
"period" text,
"internet_explorer" text,
"firefox" text,
"chrome" text,
"safari" text,
"opera" text,
"other_mozilla" text,
"mobile" text
); | SELECT "safari" FROM "usage_share_data_from_wikimedia_visitor_" WHERE "firefox"='30.82%'; | 2-1876262-10 |
What percentage of users were using Internet Explorer during the period in which 2.1% were using mobile browsers? | CREATE TABLE "usage_share_data_from_wikimedia_visitor_" (
"period" text,
"internet_explorer" text,
"firefox" text,
"chrome" text,
"safari" text,
"opera" text,
"other_mozilla" text,
"mobile" text
); | SELECT "internet_explorer" FROM "usage_share_data_from_wikimedia_visitor_" WHERE "mobile"='2.1%'; | 2-1876262-10 |
What percentage of users were using other Mozilla browsers during the period in which 9.00% were using Chrome? | CREATE TABLE "usage_share_data_from_wikimedia_visitor_" (
"period" text,
"internet_explorer" text,
"firefox" text,
"chrome" text,
"safari" text,
"opera" text,
"other_mozilla" text,
"mobile" text
); | SELECT "other_mozilla" FROM "usage_share_data_from_wikimedia_visitor_" WHERE "chrome"='9.00%'; | 2-1876262-10 |
What date has w 14-10 as the result? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT "date" FROM "schedule" WHERE "result"='w 14-10'; | 2-18826244-2 |
What opponent has a week less than 12, with November 25, 1965 as the date? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT "opponent" FROM "schedule" WHERE "week"<12 AND "date"='november 25, 1965'; | 2-18826244-2 |
What is the lowest week that has September 19, 1965 as the date, with an attendance less than 46,941? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT MIN("week") FROM "schedule" WHERE "date"='september 19, 1965' AND "attendance"<'46,941'; | 2-18826244-2 |
What is the lowest week that has 51,499 as the attendance? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT MIN("week") FROM "schedule" WHERE "attendance"='51,499'; | 2-18826244-2 |
What is the result that has an attendance greater than 45,658, a week greater than 8, with baltimore colts as the opponent? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT "result" FROM "schedule" WHERE "attendance">'45,658' AND "week">8 AND "opponent"='baltimore colts'; | 2-18826244-2 |
What is the frequency for the active rock format? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "frequency" FROM "radio" WHERE "format"='active rock'; | 2-18410241-1 |
What is the branding for fm 88.9? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "branding" FROM "radio" WHERE "frequency"='fm 88.9'; | 2-18410241-1 |
What is the name of the owner of rock 97.7? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "owner" FROM "radio" WHERE "branding"='rock 97.7'; | 2-18410241-1 |
What is the branding for cbxp-fm? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "branding" FROM "radio" WHERE "call_sign"='cbxp-fm'; | 2-18410241-1 |
What is the call sign for country station fm 93.1? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "call_sign" FROM "radio" WHERE "format"='country' AND "frequency"='fm 93.1'; | 2-18410241-1 |
What is the frequency for the country station owned by Jim Pattison Group? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "frequency" FROM "radio" WHERE "format"='country' AND "owner"='jim pattison group'; | 2-18410241-1 |
What game was located at the Los Angeles Memorial Sports Arena? | CREATE TABLE "game_log" (
"game" text,
"date" text,
"opponent" text,
"score" text,
"location_attendance" text,
"record" text
); | SELECT "game" FROM "game_log" WHERE "location_attendance"='los angeles memorial sports arena'; | 2-18493036-4 |
What is the location for the game with a score of w 106-81? | CREATE TABLE "game_log" (
"game" text,
"date" text,
"opponent" text,
"score" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "game_log" WHERE "score"='w 106-81'; | 2-18493036-4 |
Where is the location of Game 4? | CREATE TABLE "game_log" (
"game" text,
"date" text,
"opponent" text,
"score" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "game_log" WHERE "game"='4'; | 2-18493036-4 |
What is the lane total when rank is 2? | CREATE TABLE "semifinal_1" (
"rank" real,
"lane" real,
"name" text,
"nationality" text,
"time" text
); | SELECT SUM("lane") FROM "semifinal_1" WHERE "rank"=2; | 2-18625437-4 |
Gemma Spofforth has what time? | CREATE TABLE "semifinal_1" (
"rank" real,
"lane" real,
"name" text,
"nationality" text,
"time" text
); | SELECT "time" FROM "semifinal_1" WHERE "name"='gemma spofforth'; | 2-18625437-4 |
Which Floors have a Pinnacle height ft (m) of 1,136 (346), and a Pinn Rank larger than 4? | CREATE TABLE "tallest_buildings_by_pinnacle_height" (
"pinn_rank" real,
"std_rank" real,
"name" text,
"pinnacle_height_ft_m" text,
"standard_height_ft_m" text,
"floors" real,
"year" real
); | SELECT AVG("floors") FROM "tallest_buildings_by_pinnacle_height" WHERE "pinnacle_height_ft_m"='1,136 (346)' AND "pinn_rank">4; | 2-1888019-2 |
How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990? | CREATE TABLE "tallest_buildings_by_pinnacle_height" (
"pinn_rank" real,
"std_rank" real,
"name" text,
"pinnacle_height_ft_m" text,
"standard_height_ft_m" text,
"floors" real,
"year" real
); | SELECT SUM("std_rank") FROM "tallest_buildings_by_pinnacle_height" WHERE "name"='311 south wacker drive' AND "year">1990; | 2-1888019-2 |
Which Floors have a Pinnacle height ft (m) of 995 (303), and an Std Rank larger than 6? | CREATE TABLE "tallest_buildings_by_pinnacle_height" (
"pinn_rank" real,
"std_rank" real,
"name" text,
"pinnacle_height_ft_m" text,
"standard_height_ft_m" text,
"floors" real,
"year" real
); | SELECT MAX("floors") FROM "tallest_buildings_by_pinnacle_height" WHERE "pinnacle_height_ft_m"='995 (303)' AND "std_rank">6; | 2-1888019-2 |
What is the average time with a rank lower than 2 for Andy Turner? | CREATE TABLE "semi_finals" (
"rank" real,
"heat" real,
"name" text,
"nationality" text,
"time" real
); | SELECT AVG("time") FROM "semi_finals" WHERE "rank">2 AND "name"='andy turner'; | 2-18941708-5 |
What was the date for morocco when the year was lerger than 1981? | CREATE TABLE "expansions_by_region" (
"continent" text,
"location" text,
"city" text,
"date" text,
"year" real
); | SELECT "date" FROM "expansions_by_region" WHERE "year">1981 AND "location"='morocco'; | 2-1875327-2 |
What is the lowest year when the city is casablanca? | CREATE TABLE "expansions_by_region" (
"continent" text,
"location" text,
"city" text,
"date" text,
"year" real
); | SELECT MIN("year") FROM "expansions_by_region" WHERE "city"='casablanca'; | 2-1875327-2 |
What year was the expansion in the city of San Juan? | CREATE TABLE "expansions_by_region" (
"continent" text,
"location" text,
"city" text,
"date" text,
"year" real
); | SELECT COUNT("year") FROM "expansions_by_region" WHERE "city"='san juan'; | 2-1875327-2 |
What city was located in the Netherlands? | CREATE TABLE "expansions_by_region" (
"continent" text,
"location" text,
"city" text,
"date" text,
"year" real
); | SELECT "city" FROM "expansions_by_region" WHERE "location"='netherlands'; | 2-1875327-2 |
What location had a year of 1971 and a city of Tokyo? | CREATE TABLE "expansions_by_region" (
"continent" text,
"location" text,
"city" text,
"date" text,
"year" real
); | SELECT "location" FROM "expansions_by_region" WHERE "year"=1971 AND "city"='tokyo'; | 2-1875327-2 |
What award did they win before 2005? | CREATE TABLE "awards_and_nominations" (
"year" real,
"organization" text,
"award" text,
"work" text,
"result" text
); | SELECT "award" FROM "awards_and_nominations" WHERE "year"<2005; | 2-1864002-4 |
When was Southend United the home team? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "date" FROM "second_round_proper" WHERE "home_team"='southend united'; | 2-18726561-2 |
For the game on 13 December 1975 with Halifax Town as the away team what was the score? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "score" FROM "second_round_proper" WHERE "date"='13 december 1975' AND "away_team"='halifax town'; | 2-18726561-2 |
Who was the away team when 6 was the tie no? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "away_team" FROM "second_round_proper" WHERE "tie_no"='6'; | 2-18726561-2 |
The game with 13 as the tie no had what as the score? | CREATE TABLE "second_round_proper" (
"tie_no" text,
"home_team" text,
"score" text,
"away_team" text,
"date" text
); | SELECT "score" FROM "second_round_proper" WHERE "tie_no"='13'; | 2-18726561-2 |
Which conference joined in 1954 with a beavers mascot? | CREATE TABLE "old_northern_state_conference_membership" (
"school_ihsaa_i_dnum" text,
"location" text,
"mascot" text,
"num_county" text,
"year_joined" real,
"year_left" real,
"conference_joined" text
); | SELECT "conference_joined" FROM "old_northern_state_conference_membership" WHERE "year_joined"=1954 AND "mascot"='beavers'; | 2-18936749-3 |
What is the Romanji title for around40〜注文の多いオンナたち〜 on TBS? | CREATE TABLE "2008_spring_season" (
"japanese_title" text,
"romaji_title" text,
"tv_station" text,
"episodes" real,
"average_ratings" text
); | SELECT "romaji_title" FROM "2008_spring_season" WHERE "tv_station"='tbs' AND "japanese_title"='around40〜注文の多いオンナたち〜'; | 2-18539834-2 |
What station has average ratings of 14.7%? | CREATE TABLE "2008_spring_season" (
"japanese_title" text,
"romaji_title" text,
"tv_station" text,
"episodes" real,
"average_ratings" text
); | SELECT "tv_station" FROM "2008_spring_season" WHERE "average_ratings"='14.7%'; | 2-18539834-2 |
What is the Japanese title for the episode bigger than 10 on TBS with average ratings of 14.8%? | CREATE TABLE "2008_spring_season" (
"japanese_title" text,
"romaji_title" text,
"tv_station" text,
"episodes" real,
"average_ratings" text
); | SELECT "japanese_title" FROM "2008_spring_season" WHERE "episodes">10 AND "tv_station"='tbs' AND "average_ratings"='14.8%'; | 2-18539834-2 |
What episode has average ratings of 7.4%? | CREATE TABLE "2008_spring_season" (
"japanese_title" text,
"romaji_title" text,
"tv_station" text,
"episodes" real,
"average_ratings" text
); | SELECT AVG("episodes") FROM "2008_spring_season" WHERE "average_ratings"='7.4%'; | 2-18539834-2 |
What is the episode on Fuji TV titled Absolute Boyfriend? | CREATE TABLE "2008_spring_season" (
"japanese_title" text,
"romaji_title" text,
"tv_station" text,
"episodes" real,
"average_ratings" text
); | SELECT MIN("episodes") FROM "2008_spring_season" WHERE "tv_station"='fuji tv' AND "romaji_title"='absolute boyfriend'; | 2-18539834-2 |
What is the episode on NHK with average ratings of 9.2%? | CREATE TABLE "2008_spring_season" (
"japanese_title" text,
"romaji_title" text,
"tv_station" text,
"episodes" real,
"average_ratings" text
); | SELECT COUNT("episodes") FROM "2008_spring_season" WHERE "tv_station"='nhk' AND "average_ratings"='9.2%'; | 2-18539834-2 |
Which School has a Year Joined larger than 1926, and a Mascot of vikings? | CREATE TABLE "membership" (
"school" text,
"location" text,
"mascot" text,
"num_county" text,
"enrollment" real,
"ihsaa_class_football_soccer" text,
"year_joined" real,
"previous_conference" text
); | SELECT "school" FROM "membership" WHERE "year_joined">1926 AND "mascot"='vikings'; | 2-18871102-1 |
Which Mascot has a School of logansport community? | CREATE TABLE "membership" (
"school" text,
"location" text,
"mascot" text,
"num_county" text,
"enrollment" real,
"ihsaa_class_football_soccer" text,
"year_joined" real,
"previous_conference" text
); | SELECT "mascot" FROM "membership" WHERE "school"='logansport community'; | 2-18871102-1 |
Which #/ County has an Enrollment larger than 1,108, and a School of anderson? | CREATE TABLE "membership" (
"school" text,
"location" text,
"mascot" text,
"num_county" text,
"enrollment" real,
"ihsaa_class_football_soccer" text,
"year_joined" real,
"previous_conference" text
); | SELECT "num_county" FROM "membership" WHERE "enrollment">'1,108' AND "school"='anderson'; | 2-18871102-1 |
Which Previous Conference has an IHSAA Class/ Football/ Soccer of 4a/5a/2a, and a Year Joined larger than 1926? | CREATE TABLE "membership" (
"school" text,
"location" text,
"mascot" text,
"num_county" text,
"enrollment" real,
"ihsaa_class_football_soccer" text,
"year_joined" real,
"previous_conference" text
); | SELECT "previous_conference" FROM "membership" WHERE "ihsaa_class_football_soccer"='4a/5a/2a' AND "year_joined">1926; | 2-18871102-1 |
Which #/ County has a Year Joined larger than 1926, and a Previous Conference of olympic? | CREATE TABLE "membership" (
"school" text,
"location" text,
"mascot" text,
"num_county" text,
"enrollment" real,
"ihsaa_class_football_soccer" text,
"year_joined" real,
"previous_conference" text
); | SELECT "num_county" FROM "membership" WHERE "year_joined">1926 AND "previous_conference"='olympic'; | 2-18871102-1 |
What is the Score of the 1996 Asian Cup Qualification on June 29, 1996? | CREATE TABLE "international_goals" (
"date" text,
"venue" text,
"score" text,
"result" text,
"competition" text
); | SELECT "score" FROM "international_goals" WHERE "competition"='1996 asian cup qualification' AND "date"='june 29, 1996'; | 2-18455762-1 |
What was the Venue of the King's Cup 1998? | CREATE TABLE "international_goals" (
"date" text,
"venue" text,
"score" text,
"result" text,
"competition" text
); | SELECT "venue" FROM "international_goals" WHERE "competition"='king''s cup 1998'; | 2-18455762-1 |
What is the Venue of the Competition with a Score of 4-1? | CREATE TABLE "international_goals" (
"date" text,
"venue" text,
"score" text,
"result" text,
"competition" text
); | SELECT "venue" FROM "international_goals" WHERE "score"='4-1'; | 2-18455762-1 |
Which Enrollment has a Primary Conference of mid-hoosier, and a County of 16 decatur, and an IHSAA Class of aa? | CREATE TABLE "resources" (
"school" text,
"location" text,
"mascot" text,
"enrollment" real,
"ihsaa_class" text,
"county" text,
"primary_conference" text
); | SELECT "enrollment" FROM "resources" WHERE "primary_conference"='mid-hoosier' AND "county"='16 decatur' AND "ihsaa_class"='aa'; | 2-18935018-1 |
Where is Indian Creek school located? | CREATE TABLE "resources" (
"school" text,
"location" text,
"mascot" text,
"enrollment" real,
"ihsaa_class" text,
"county" text,
"primary_conference" text
); | SELECT "location" FROM "resources" WHERE "school"='indian creek'; | 2-18935018-1 |
Which school is located in trafalgar? | CREATE TABLE "resources" (
"school" text,
"location" text,
"mascot" text,
"enrollment" real,
"ihsaa_class" text,
"county" text,
"primary_conference" text
); | SELECT "school" FROM "resources" WHERE "location"='trafalgar'; | 2-18935018-1 |
Which IHSAA Class is located in charlottesville? | CREATE TABLE "resources" (
"school" text,
"location" text,
"mascot" text,
"enrollment" real,
"ihsaa_class" text,
"county" text,
"primary_conference" text
); | SELECT "ihsaa_class" FROM "resources" WHERE "location"='charlottesville'; | 2-18935018-1 |
Which country had notes of sa/b and a rank of 2? | CREATE TABLE "heat_1" (
"rank" real,
"rowers" text,
"country" text,
"time" text,
"notes" text
); | SELECT "country" FROM "heat_1" WHERE "notes"='sa/b' AND "rank"=2; | 2-18662681-3 |
What was the rank for Great Britain? | CREATE TABLE "heat_1" (
"rank" real,
"rowers" text,
"country" text,
"time" text,
"notes" text
); | SELECT COUNT("rank") FROM "heat_1" WHERE "country"='great britain'; | 2-18662681-3 |
What was the tv time for the game on week 12? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"record" text,
"tv_time" text,
"attendance" text
); | SELECT "tv_time" FROM "schedule" WHERE "week"=12; | 2-18731638-1 |
What was the attendance for the game against miami dolphins? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"record" text,
"tv_time" text,
"attendance" text
); | SELECT "attendance" FROM "schedule" WHERE "opponent"='miami dolphins'; | 2-18731638-1 |
What is the result of the game with 67,715 fans attending? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"record" text,
"tv_time" text,
"attendance" text
); | SELECT "result" FROM "schedule" WHERE "attendance"='67,715'; | 2-18731638-1 |
Who was the opponent for the game that had 90,287 in attendance? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"record" text,
"tv_time" text,
"attendance" text
); | SELECT "opponent" FROM "schedule" WHERE "attendance"='90,287'; | 2-18731638-1 |
Who had rahat as their 2008 club? | CREATE TABLE "volleyball_at_the_2008_summer_olympics_w" (
"name" text,
"height" text,
"weight" text,
"spike" text,
"2008_club" text
); | SELECT "name" FROM "volleyball_at_the_2008_summer_olympics_w" WHERE "2008_club"='rahat'; | 2-18719696-10 |
Who had rahat as their 2008 club? | CREATE TABLE "volleyball_at_the_2008_summer_olympics_w" (
"name" text,
"height" text,
"weight" text,
"spike" text,
"2008_club" text
); | SELECT "name" FROM "volleyball_at_the_2008_summer_olympics_w" WHERE "2008_club"='rahat'; | 2-18719696-10 |
What was the height of the player that had a 2008 club of iller bankasi? | CREATE TABLE "volleyball_at_the_2008_summer_olympics_w" (
"name" text,
"height" text,
"weight" text,
"spike" text,
"2008_club" text
); | SELECT "height" FROM "volleyball_at_the_2008_summer_olympics_w" WHERE "2008_club"='iller bankasi'; | 2-18719696-10 |
What is the team with 1st period at 12:37? | CREATE TABLE "scoring_summary" (
"period" text,
"team" text,
"goal" text,
"assist_s" text,
"time" text,
"score" text
); | SELECT "team" FROM "scoring_summary" WHERE "period"='1st' AND "time"='12:37'; | 2-18463659-1 |
who is the athlete with the time 6:02.46? | CREATE TABLE "semifinal_a_b_2" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT "athlete" FROM "semifinal_a_b_2" WHERE "time"='6:02.46'; | 2-18662681-8 |
what is the country for rank 6? | CREATE TABLE "semifinal_a_b_2" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT "country" FROM "semifinal_a_b_2" WHERE "rank"=6; | 2-18662681-8 |
what is the notes when the rank is less than 2? | CREATE TABLE "semifinal_a_b_2" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT "notes" FROM "semifinal_a_b_2" WHERE "rank"<2; | 2-18662681-8 |
what is the rank for athlete hauffe, seifert, kaeufer, adamski? | CREATE TABLE "semifinal_a_b_2" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT SUM("rank") FROM "semifinal_a_b_2" WHERE "athlete"='hauffe, seifert, kaeufer, adamski'; | 2-18662681-8 |
what is the notes for the time 6:05.21? | CREATE TABLE "semifinal_a_b_2" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT "notes" FROM "semifinal_a_b_2" WHERE "time"='6:05.21'; | 2-18662681-8 |
Who was the discoverer of the object with an Aphelion above 97 in 2004? | CREATE TABLE "possible_detached_objects" (
"name" text,
"diameter_km" text,
"perihelion_au" real,
"aphelion_au" real,
"year_discovered" real,
"discoverer_s" text,
"type" text
); | SELECT "discoverer_s" FROM "possible_detached_objects" WHERE "aphelion_au">97 AND "year_discovered"=2004; | 2-18432824-1 |
What model number has part number cl8064701510101? | CREATE TABLE "haswell_h_quad_core_22_nm" (
"model_number" text,
"s_spec_number" text,
"cores" text,
"frequency" text,
"turbo" text,
"l2_cache" text,
"l3_cache" text,
"gpu_model" text,
"gpu_frequency" text,
"socket" text,
"i_o_bus" text,
"release_date" text,
"part_number_s" text,
"release_price_usd" text
); | SELECT "model_number" FROM "haswell_h_quad_core_22_nm" WHERE "part_number_s"='cl8064701510101'; | 2-18823880-19 |
What is the I/O bus entry for the processor with a release price of $657? | CREATE TABLE "haswell_h_quad_core_22_nm" (
"model_number" text,
"s_spec_number" text,
"cores" text,
"frequency" text,
"turbo" text,
"l2_cache" text,
"l3_cache" text,
"gpu_model" text,
"gpu_frequency" text,
"socket" text,
"i_o_bus" text,
"release_date" text,
"part_number_s" text,
"release_price_usd" text
); | SELECT "i_o_bus" FROM "haswell_h_quad_core_22_nm" WHERE "release_price_usd"='$657'; | 2-18823880-19 |
What is the L2 cache for the processor with iris pro graphics 5200 and frequency of 2.6 ghz? | CREATE TABLE "haswell_h_quad_core_22_nm" (
"model_number" text,
"s_spec_number" text,
"cores" text,
"frequency" text,
"turbo" text,
"l2_cache" text,
"l3_cache" text,
"gpu_model" text,
"gpu_frequency" text,
"socket" text,
"i_o_bus" text,
"release_date" text,
"part_number_s" text,
"release_price_usd" text
); | SELECT "l2_cache" FROM "haswell_h_quad_core_22_nm" WHERE "gpu_model"='iris pro graphics 5200' AND "frequency"='2.6 ghz'; | 2-18823880-19 |
What is the frequency of the processor released at $383, with a sSpec of sr15f(c0)? | CREATE TABLE "haswell_h_quad_core_22_nm" (
"model_number" text,
"s_spec_number" text,
"cores" text,
"frequency" text,
"turbo" text,
"l2_cache" text,
"l3_cache" text,
"gpu_model" text,
"gpu_frequency" text,
"socket" text,
"i_o_bus" text,
"release_date" text,
"part_number_s" text,
"release_price_usd" text
); | SELECT "frequency" FROM "haswell_h_quad_core_22_nm" WHERE "release_price_usd"='$383' AND "s_spec_number"='sr15f(c0)'; | 2-18823880-19 |
What is the GPU frequency for the processor released in June 2013, with a sSpec number of sr17l(c0)? | CREATE TABLE "haswell_h_quad_core_22_nm" (
"model_number" text,
"s_spec_number" text,
"cores" text,
"frequency" text,
"turbo" text,
"l2_cache" text,
"l3_cache" text,
"gpu_model" text,
"gpu_frequency" text,
"socket" text,
"i_o_bus" text,
"release_date" text,
"part_number_s" text,
"release_price_usd" text
); | SELECT "gpu_frequency" FROM "haswell_h_quad_core_22_nm" WHERE "release_date"='june 2013' AND "s_spec_number"='sr17l(c0)'; | 2-18823880-19 |
What is the L3 cache of the processor with a release price of $440? | CREATE TABLE "haswell_h_quad_core_22_nm" (
"model_number" text,
"s_spec_number" text,
"cores" text,
"frequency" text,
"turbo" text,
"l2_cache" text,
"l3_cache" text,
"gpu_model" text,
"gpu_frequency" text,
"socket" text,
"i_o_bus" text,
"release_date" text,
"part_number_s" text,
"release_price_usd" text
); | SELECT "l3_cache" FROM "haswell_h_quad_core_22_nm" WHERE "release_price_usd"='$440'; | 2-18823880-19 |
What is the OS X for the Home Media Center? | CREATE TABLE "see_also" (
"name" text,
"license" text,
"os_x" text,
"unix_like" text,
"windows" text,
"web_interface" text
); | SELECT "os_x" FROM "see_also" WHERE "name"='home media center'; | 2-18899538-1 |
What is the name when Windows is partial? | CREATE TABLE "see_also" (
"name" text,
"license" text,
"os_x" text,
"unix_like" text,
"windows" text,
"web_interface" text
); | SELECT "name" FROM "see_also" WHERE "windows"='partial'; | 2-18899538-1 |
What is the license for Rygel? | CREATE TABLE "see_also" (
"name" text,
"license" text,
"os_x" text,
"unix_like" text,
"windows" text,
"web_interface" text
); | SELECT "license" FROM "see_also" WHERE "name"='rygel'; | 2-18899538-1 |
What is the license for Jriver Media Center? | CREATE TABLE "see_also" (
"name" text,
"license" text,
"os_x" text,
"unix_like" text,
"windows" text,
"web_interface" text
); | SELECT "license" FROM "see_also" WHERE "name"='jriver media center'; | 2-18899538-1 |
Of the series that last aired August 20, 2010, what is the lowest number of seasons? | CREATE TABLE "seasons" (
"season" real,
"first_aired" text,
"last_aired" text,
"episodes" real,
"network" text
); | SELECT MIN("season") FROM "seasons" WHERE "last_aired"='august 20, 2010'; | 2-18462110-1 |
Of the series that first aired April 8, 2011, what is the total number of episodes? | CREATE TABLE "seasons" (
"season" real,
"first_aired" text,
"last_aired" text,
"episodes" real,
"network" text
); | SELECT SUM("episodes") FROM "seasons" WHERE "first_aired"='april 8, 2011'; | 2-18462110-1 |
What's the total when the position was more than 6 and had an A Score of less than 7.6? | CREATE TABLE "qualified_competitors" (
"position" real,
"gymnast" text,
"a_score" real,
"b_score" real,
"total" real
); | SELECT MAX("total") FROM "qualified_competitors" WHERE "position">6 AND "a_score"<7.6; | 2-18662048-4 |
What's the total when A Score was less than 6.9? | CREATE TABLE "qualified_competitors" (
"position" real,
"gymnast" text,
"a_score" real,
"b_score" real,
"total" real
); | SELECT AVG("total") FROM "qualified_competitors" WHERE "a_score"<6.9; | 2-18662048-4 |
What's the total of Water (sqmi) with a Land (sqmi) of 35.918 and has a Longitude that is smaller than -97.115459? | CREATE TABLE "d" (
"township" text,
"county" text,
"pop_2010" real,
"land_sqmi" real,
"water_sqmi" real,
"latitude" real,
"longitude" real,
"geo_id" real,
"ansi_code" real
); | SELECT SUM("water_sqmi") FROM "d" WHERE "land_sqmi"=35.918 AND "longitude"<-97.115459; | 2-18600760-4 |
What;s the total of Longitude with an ANSI code of 1036573 and has Water (sqmi) that is smaller than 0.404? | CREATE TABLE "d" (
"township" text,
"county" text,
"pop_2010" real,
"land_sqmi" real,
"water_sqmi" real,
"latitude" real,
"longitude" real,
"geo_id" real,
"ansi_code" real
); | SELECT COUNT("longitude") FROM "d" WHERE "ansi_code"=1036573 AND "water_sqmi"<0.404; | 2-18600760-4 |
What's the lowest listed longitude that has a Latitude of 46.843963 and Water (sqmi) that is smaller than 0.052000000000000005? | CREATE TABLE "d" (
"township" text,
"county" text,
"pop_2010" real,
"land_sqmi" real,
"water_sqmi" real,
"latitude" real,
"longitude" real,
"geo_id" real,
"ansi_code" real
); | SELECT MIN("longitude") FROM "d" WHERE "latitude"=46.843963 AND "water_sqmi"<0.052000000000000005; | 2-18600760-4 |
What is the total heat ranked higher than 7? | CREATE TABLE "semifinals" (
"rank" real,
"heat" real,
"cyclist" text,
"nation" text,
"result" text
); | SELECT SUM("heat") FROM "semifinals" WHERE "rank">7; | 2-18666566-3 |
Which cyclist is from Australia? | CREATE TABLE "semifinals" (
"rank" real,
"heat" real,
"cyclist" text,
"nation" text,
"result" text
); | SELECT "cyclist" FROM "semifinals" WHERE "nation"='australia'; | 2-18666566-3 |
Which nation has a heat of 4, and is ranked 8? | CREATE TABLE "semifinals" (
"rank" real,
"heat" real,
"cyclist" text,
"nation" text,
"result" text
); | SELECT "nation" FROM "semifinals" WHERE "heat"=4 AND "rank"=8; | 2-18666566-3 |
What is John Curtice's position? | CREATE TABLE "first_round_selections" (
"pick" real,
"player" text,
"team" text,
"position" text,
"school" text
); | SELECT "position" FROM "first_round_selections" WHERE "player"='john curtice'; | 2-18470615-1 |
What player is from Seton Hall University? | CREATE TABLE "first_round_selections" (
"pick" real,
"player" text,
"team" text,
"position" text,
"school" text
); | SELECT "player" FROM "first_round_selections" WHERE "school"='seton hall university'; | 2-18470615-1 |
What is the lowest pick of a player for the SS, P Position for the Minnesota Twins? | CREATE TABLE "first_round_selections" (
"pick" real,
"player" text,
"team" text,
"position" text,
"school" text
); | SELECT MIN("pick") FROM "first_round_selections" WHERE "position"='ss, p' AND "team"='minnesota twins'; | 2-18470615-1 |
what is the premier when the assumed office is 14 april 1894? | CREATE TABLE "rank_by_time_in_office" (
"rank" real,
"premier" text,
"party" text,
"assumed_office" text,
"left_office" text,
"total_time_in_office" text
); | SELECT "premier" FROM "rank_by_time_in_office" WHERE "assumed_office"='14 april 1894'; | 2-18656411-1 |
what is the rank when the assumed office is 9 april 1903? | CREATE TABLE "rank_by_time_in_office" (
"rank" real,
"premier" text,
"party" text,
"assumed_office" text,
"left_office" text,
"total_time_in_office" text
); | SELECT SUM("rank") FROM "rank_by_time_in_office" WHERE "assumed_office"='9 april 1903'; | 2-18656411-1 |
what is the premier when the rank is 30? | CREATE TABLE "rank_by_time_in_office" (
"rank" real,
"premier" text,
"party" text,
"assumed_office" text,
"left_office" text,
"total_time_in_office" text
); | SELECT "premier" FROM "rank_by_time_in_office" WHERE "rank"=30; | 2-18656411-1 |
what is the total time in office when the assumed office is 1 november 1856? | CREATE TABLE "rank_by_time_in_office" (
"rank" real,
"premier" text,
"party" text,
"assumed_office" text,
"left_office" text,
"total_time_in_office" text
); | SELECT "total_time_in_office" FROM "rank_by_time_in_office" WHERE "assumed_office"='1 november 1856'; | 2-18656411-1 |
what is the rank when assumed office on 12 may 1857? | CREATE TABLE "rank_by_time_in_office" (
"rank" real,
"premier" text,
"party" text,
"assumed_office" text,
"left_office" text,
"total_time_in_office" text
); | SELECT SUM("rank") FROM "rank_by_time_in_office" WHERE "assumed_office"='12 may 1857'; | 2-18656411-1 |
What is the average v-band for Ka-band values under 33 and Q-bands of 1? | CREATE TABLE "properties_of_wmap_at_different_frequenc" (
"property" text,
"k_band" real,
"ka_band" real,
"q_band" real,
"v_band" real,
"w_band" real
); | SELECT AVG("v_band") FROM "properties_of_wmap_at_different_frequenc" WHERE "ka_band"<33 AND "q_band"=1; | 2-186468-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.