question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What is number of silver for the country with more than 0 gold, rank of 14, and more than 4 bronze? | CREATE TABLE "medal_table" (
"rank" text,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT COUNT("silver") FROM "medal_table" WHERE "gold">0 AND "rank"='14' AND "bronze">4; | 2-18940490-1 |
What is the number of gold for the country ranked 19? | CREATE TABLE "medal_table" (
"rank" text,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT SUM("gold") FROM "medal_table" WHERE "rank"='19'; | 2-18940490-1 |
What is the least amount of silver when there is less than 0 bronze? | CREATE TABLE "medal_table" (
"rank" text,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT MIN("silver") FROM "medal_table" WHERE "bronze"<0; | 2-18940490-1 |
What is the most bronze when the total is 14, and there are more than 6 gold? | CREATE TABLE "medal_table" (
"rank" text,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT MAX("bronze") FROM "medal_table" WHERE "total"=14 AND "gold">6; | 2-18940490-1 |
Which world record has a 187kg of 392kg? | CREATE TABLE "records" (
"world_record" text,
"snatch" text,
"andrei_rybakou_blr" text,
"187kg" text,
"chiang_mai_thailand" text
); | SELECT "world_record" FROM "records" WHERE "187kg"='392kg'; | 2-18532579-2 |
Who has 187kg and a Snatch of Clean & Jerk? | CREATE TABLE "records" (
"world_record" text,
"snatch" text,
"andrei_rybakou_blr" text,
"187kg" text,
"chiang_mai_thailand" text
); | SELECT "187kg" FROM "records" WHERE "snatch"='clean & jerk'; | 2-18532579-2 |
What is the world record for a 187kg of 392kg? | CREATE TABLE "records" (
"world_record" text,
"snatch" text,
"andrei_rybakou_blr" text,
"187kg" text,
"chiang_mai_thailand" text
); | SELECT "world_record" FROM "records" WHERE "187kg"='392kg'; | 2-18532579-2 |
What is the Reserved for (SC / ST /None) when the constituency number is 203? | CREATE TABLE "assembly_segments" (
"constituency_number" text,
"name" text,
"reserved_for_sc_st_none" text,
"district" text,
"number_of_electorates_2009" real
); | SELECT "reserved_for_sc_st_none" FROM "assembly_segments" WHERE "constituency_number"='203'; | 2-18517886-1 |
What is the number of electorates (2009) for the Indore district, when reserved for (SC / ST /None) is none, and constituency number is 208? | CREATE TABLE "assembly_segments" (
"constituency_number" text,
"name" text,
"reserved_for_sc_st_none" text,
"district" text,
"number_of_electorates_2009" real
); | SELECT SUM("number_of_electorates_2009") FROM "assembly_segments" WHERE "district"='indore' AND "reserved_for_sc_st_none"='none' AND "constituency_number"='208'; | 2-18517886-1 |
What is the district when the reserved for (SC / ST /None) is none, number of electorates (2009) is larger than 190,441, and name is Indore-2? | CREATE TABLE "assembly_segments" (
"constituency_number" text,
"name" text,
"reserved_for_sc_st_none" text,
"district" text,
"number_of_electorates_2009" real
); | SELECT "district" FROM "assembly_segments" WHERE "reserved_for_sc_st_none"='none' AND "number_of_electorates_2009">'190,441' AND "name"='indore-2'; | 2-18517886-1 |
What percentage of users were using other browsers according to the source that reported 21.22% were using Firefox? | CREATE TABLE "usage_share_of_desktop_browsers_for_june" (
"source" text,
"chrome" text,
"internet_explorer" text,
"firefox" text,
"safari" text,
"opera" text,
"other" text
); | SELECT "other" FROM "usage_share_of_desktop_browsers_for_june" WHERE "firefox"='21.22%'; | 2-1876262-1 |
According to W3Counter, what percentage of browsers used Firefox? | CREATE TABLE "usage_share_of_desktop_browsers_for_june" (
"source" text,
"chrome" text,
"internet_explorer" text,
"firefox" text,
"safari" text,
"opera" text,
"other" text
); | SELECT "firefox" FROM "usage_share_of_desktop_browsers_for_june" WHERE "source"='w3counter'; | 2-1876262-1 |
What percentage of users were using Firefox according to the source that reported 21.70% used Internet Explorer? | CREATE TABLE "usage_share_of_desktop_browsers_for_june" (
"source" text,
"chrome" text,
"internet_explorer" text,
"firefox" text,
"safari" text,
"opera" text,
"other" text
); | SELECT "firefox" FROM "usage_share_of_desktop_browsers_for_june" WHERE "internet_explorer"='21.70%'; | 2-1876262-1 |
Which source reported 32.60% of browsers used Chrome? | CREATE TABLE "usage_share_of_desktop_browsers_for_june" (
"source" text,
"chrome" text,
"internet_explorer" text,
"firefox" text,
"safari" text,
"opera" text,
"other" text
); | SELECT "source" FROM "usage_share_of_desktop_browsers_for_june" WHERE "chrome"='32.60%'; | 2-1876262-1 |
What percentage of users were using Firefox according to the source that reported 15.40% used Safari? | CREATE TABLE "usage_share_of_desktop_browsers_for_june" (
"source" text,
"chrome" text,
"internet_explorer" text,
"firefox" text,
"safari" text,
"opera" text,
"other" text
); | SELECT "firefox" FROM "usage_share_of_desktop_browsers_for_june" WHERE "safari"='15.40%'; | 2-1876262-1 |
What percentage of users were using Internet Explorer according to the source that reported 20.01% used Firefox? | CREATE TABLE "usage_share_of_desktop_browsers_for_june" (
"source" text,
"chrome" text,
"internet_explorer" text,
"firefox" text,
"safari" text,
"opera" text,
"other" text
); | SELECT "internet_explorer" FROM "usage_share_of_desktop_browsers_for_june" WHERE "firefox"='20.01%'; | 2-1876262-1 |
How many points did team Rothmans Honda have in 1992? | CREATE TABLE "grand_prix_career_statistics" (
"year" real,
"class" text,
"team" text,
"machine" text,
"points" real,
"wins" real
); | SELECT MIN("points") FROM "grand_prix_career_statistics" WHERE "team"='rothmans honda' AND "year"=1992; | 2-1861430-3 |
What class before 1990 has points of 33? | CREATE TABLE "grand_prix_career_statistics" (
"year" real,
"class" text,
"team" text,
"machine" text,
"points" real,
"wins" real
); | SELECT "class" FROM "grand_prix_career_statistics" WHERE "year"<1990 AND "points"=33; | 2-1861430-3 |
How many total points were in 1992? | CREATE TABLE "grand_prix_career_statistics" (
"year" real,
"class" text,
"team" text,
"machine" text,
"points" real,
"wins" real
); | SELECT COUNT("points") FROM "grand_prix_career_statistics" WHERE "year"=1992; | 2-1861430-3 |
In 1992, what class has higher wins than 0? | CREATE TABLE "grand_prix_career_statistics" (
"year" real,
"class" text,
"team" text,
"machine" text,
"points" real,
"wins" real
); | SELECT "class" FROM "grand_prix_career_statistics" WHERE "wins">0 AND "year"=1992; | 2-1861430-3 |
What was the class that team Honda Britain was in with points higher than 0? | CREATE TABLE "grand_prix_career_statistics" (
"year" real,
"class" text,
"team" text,
"machine" text,
"points" real,
"wins" real
); | SELECT "class" FROM "grand_prix_career_statistics" WHERE "team"='honda britain' AND "points">0; | 2-1861430-3 |
Which FA Cup Goals have League Cup Apps larger than 0, and a Name of trevor cherry? | CREATE TABLE "appearances_and_goals" (
"name" text,
"position" text,
"league_apps" text,
"league_goals" real,
"fa_cup_apps" text,
"fa_cup_goals" real,
"league_cup_apps" real,
"league_cup_goals" real,
"total_apps" text,
"total_goals" real
); | SELECT MAX("fa_cup_goals") FROM "appearances_and_goals" WHERE "league_cup_apps">0 AND "name"='trevor cherry'; | 2-18916457-1 |
How many League Goals have League Cup Goals smaller than 0? | CREATE TABLE "appearances_and_goals" (
"name" text,
"position" text,
"league_apps" text,
"league_goals" real,
"fa_cup_apps" text,
"fa_cup_goals" real,
"league_cup_apps" real,
"league_cup_goals" real,
"total_apps" text,
"total_goals" real
); | SELECT SUM("league_goals") FROM "appearances_and_goals" WHERE "league_cup_goals"<0; | 2-18916457-1 |
What's the 2009 of the Australian Open having a 1R in 2011? | CREATE TABLE "grand_slam_women_s_singles_performance_t" (
"tournament" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
); | SELECT "2009" FROM "grand_slam_women_s_singles_performance_t" WHERE "2011"='1r' AND "tournament"='australian open'; | 2-18504248-7 |
What's the 2008 of the Australian Open when the 2011 was 1R? | CREATE TABLE "grand_slam_women_s_singles_performance_t" (
"tournament" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
); | SELECT "2008" FROM "grand_slam_women_s_singles_performance_t" WHERE "2011"='1r' AND "tournament"='australian open'; | 2-18504248-7 |
What's the 2008 of the US Open when 2010 was 2R and 2011 was 1R? | CREATE TABLE "grand_slam_women_s_singles_performance_t" (
"tournament" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
); | SELECT "2008" FROM "grand_slam_women_s_singles_performance_t" WHERE "2011"='1r' AND "2010"='2r' AND "tournament"='us open'; | 2-18504248-7 |
What is the lowest number of episodes in a series with an airing date of 12 jan- 6 feb? | CREATE TABLE "first_line_series" (
"airing_date" text,
"english_title_chinese_title" text,
"number_of_episodes" real,
"genre" text,
"official_website" text
); | SELECT MIN("number_of_episodes") FROM "first_line_series" WHERE "airing_date"='12 jan- 6 feb'; | 2-18493407-1 |
What tournament has petra mandula patricia wartusch as the opponent in the final? | CREATE TABLE "doubles" (
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "tournament" FROM "doubles" WHERE "opponent_in_the_final"='petra mandula patricia wartusch'; | 2-1849669-4 |
What date has kimberly po nathalie tauziat as the opponent in the final? | CREATE TABLE "doubles" (
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "date" FROM "doubles" WHERE "opponent_in_the_final"='kimberly po nathalie tauziat'; | 2-1849669-4 |
What score has February 12, 2006 as the date? | CREATE TABLE "doubles" (
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "score" FROM "doubles" WHERE "date"='february 12, 2006'; | 2-1849669-4 |
What opponent in the final has October 9, 2005 as the date? | CREATE TABLE "doubles" (
"date" text,
"tournament" text,
"surface" text,
"partner" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "opponent_in_the_final" FROM "doubles" WHERE "date"='october 9, 2005'; | 2-1849669-4 |
What is the to par for Bo Bae Song? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "second_round" WHERE "player"='bo bae song'; | 2-18594233-5 |
What is the to par for Jiyai Shin when the place is t1? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "second_round" WHERE "place"='t1' AND "player"='jiyai shin'; | 2-18594233-5 |
What is the to par for Jiyai Shin in place t1? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "second_round" WHERE "place"='t1' AND "player"='jiyai shin'; | 2-18594233-5 |
What was Laura Diaz's score for place t9? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "score" FROM "second_round" WHERE "place"='t9' AND "player"='laura diaz'; | 2-18594233-5 |
What country does Bo Bae Song play for? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "second_round" WHERE "player"='bo bae song'; | 2-18594233-5 |
How many gold medals did Brazil win with a total of more than 55 medals? | CREATE TABLE "medal_table_by_country" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT AVG("gold") FROM "medal_table_by_country" WHERE "nation"='brazil' AND "total">55; | 2-18694694-3 |
How many teams won more than 2 silver medals and fewer than 2 Bronze medals? | CREATE TABLE "medal_table_by_country" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT COUNT("rank") FROM "medal_table_by_country" WHERE "silver">2 AND "bronze"<2; | 2-18694694-3 |
What is the fewest gold medals won by Greece? | CREATE TABLE "medal_table_by_country" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT MIN("gold") FROM "medal_table_by_country" WHERE "nation"='greece'; | 2-18694694-3 |
What is the lowest rank of the United States, with fewer than 4 bronze medals? | CREATE TABLE "medal_table_by_country" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT MIN("rank") FROM "medal_table_by_country" WHERE "nation"='united states' AND "bronze"<4; | 2-18694694-3 |
What is the highest number of gold medals won by a team that won fewer than 2 silver and fewer than 4 bronze medals? | CREATE TABLE "medal_table_by_country" (
"rank" real,
"nation" text,
"gold" real,
"silver" real,
"bronze" real,
"total" real
); | SELECT MAX("gold") FROM "medal_table_by_country" WHERE "silver"<2 AND "bronze"<4; | 2-18694694-3 |
Which React has a Lane smaller than 4, and a Rank larger than 4, and a Time larger than 23.22? | CREATE TABLE "semifinal_2" (
"rank" real,
"lane" real,
"athlete" text,
"country" text,
"time" real,
"react" real
); | SELECT AVG("react") FROM "semifinal_2" WHERE "lane"<4 AND "rank">4 AND "time">23.22; | 2-18569021-5 |
What shows for against when draws are 0, and losses are 16? | CREATE TABLE "2010_ladder" (
"hampden_fl" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT AVG("against") FROM "2010_ladder" WHERE "draws"=0 AND "losses"=16; | 2-18628904-21 |
What is the highest number of wins when draws are larger than 1, and byes are larger than 0? | CREATE TABLE "2010_ladder" (
"hampden_fl" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT MAX("wins") FROM "2010_ladder" WHERE "draws">1 AND "byes">0; | 2-18628904-21 |
Which team were runners-up in 2007 and had 1 under winners? | CREATE TABLE "performance_in_uefa_super_cup_by_club" (
"team" text,
"winners" real,
"runners_up" real,
"years_won" text,
"years_runners_up" text
); | SELECT "team" FROM "performance_in_uefa_super_cup_by_club" WHERE "winners"=1 AND "years_runners_up"='2007'; | 2-18749551-3 |
What is the sum of winners when 1983 is the years won? | CREATE TABLE "performance_in_uefa_super_cup_by_club" (
"team" text,
"winners" real,
"runners_up" real,
"years_won" text,
"years_runners_up" text
); | SELECT COUNT("winners") FROM "performance_in_uefa_super_cup_by_club" WHERE "years_won"='1983'; | 2-18749551-3 |
Which Rank has a Total of 12? | CREATE TABLE "single_game" (
"rank" real,
"player" text,
"county" text,
"tally" text,
"total" real,
"opposition" text
); | SELECT AVG("rank") FROM "single_game" WHERE "total"=12; | 2-18950804-2 |
Which Rank has an Opposition of limerick? | CREATE TABLE "single_game" (
"rank" real,
"player" text,
"county" text,
"tally" text,
"total" real,
"opposition" text
); | SELECT "rank" FROM "single_game" WHERE "opposition"='limerick'; | 2-18950804-2 |
How much Rank has a Tally of 0-10, and an Opposition of cork? | CREATE TABLE "single_game" (
"rank" real,
"player" text,
"county" text,
"tally" text,
"total" real,
"opposition" text
); | SELECT COUNT("rank") FROM "single_game" WHERE "tally"='0-10' AND "opposition"='cork'; | 2-18950804-2 |
Which Total has a Rank smaller than 3, and a County of cork? | CREATE TABLE "single_game" (
"rank" real,
"player" text,
"county" text,
"tally" text,
"total" real,
"opposition" text
); | SELECT MIN("total") FROM "single_game" WHERE "rank"<3 AND "county"='cork'; | 2-18950804-2 |
Which Rank has a Tally of 4-0? | CREATE TABLE "single_game" (
"rank" real,
"player" text,
"county" text,
"tally" text,
"total" real,
"opposition" text
); | SELECT AVG("rank") FROM "single_game" WHERE "tally"='4-0'; | 2-18950804-2 |
Which Lane has a Rank larger than 3, and a Time larger than 45.63, and a Reaction smaller than 0.28800000000000003, and an Athlete of geiner mosquera? | CREATE TABLE "heat_5" (
"rank" real,
"lane" real,
"athlete" text,
"nationality" text,
"time" real,
"react" real
); | SELECT MAX("lane") FROM "heat_5" WHERE "rank">3 AND "time">45.63 AND "react"<0.28800000000000003 AND "athlete"='geiner mosquera'; | 2-18569105-6 |
How many reactions have an Athlete of alleyne francique, and a Lane larger than 9? | CREATE TABLE "heat_5" (
"rank" real,
"lane" real,
"athlete" text,
"nationality" text,
"time" real,
"react" real
); | SELECT COUNT("react") FROM "heat_5" WHERE "athlete"='alleyne francique' AND "lane">9; | 2-18569105-6 |
What yeae has 6-08 (24) as a waterford score? | CREATE TABLE "previous_championship_encounters" (
"year" real,
"venue" text,
"competition" text,
"kilkenny_score" text,
"waterford_score" text
); | SELECT "year" FROM "previous_championship_encounters" WHERE "waterford_score"='6-08 (24)'; | 2-18905444-1 |
What is the lowest year that has all-ireland hurling final as the competition, and 6-08 (24) as the waterford score? | CREATE TABLE "previous_championship_encounters" (
"year" real,
"venue" text,
"competition" text,
"kilkenny_score" text,
"waterford_score" text
); | SELECT MIN("year") FROM "previous_championship_encounters" WHERE "competition"='all-ireland hurling final' AND "waterford_score"='6-08 (24)'; | 2-18905444-1 |
What is the waterford score that has a year prior to 1963, with all-ireland hurling final replay as the competition? | CREATE TABLE "previous_championship_encounters" (
"year" real,
"venue" text,
"competition" text,
"kilkenny_score" text,
"waterford_score" text
); | SELECT "waterford_score" FROM "previous_championship_encounters" WHERE "year"<1963 AND "competition"='all-ireland hurling final replay'; | 2-18905444-1 |
What rounds did RML Racing Silverline and James Nash compete? | CREATE TABLE "entry_list" (
"team" text,
"car_spec" text,
"drivers" text,
"class" text,
"rounds" text
); | SELECT "rounds" FROM "entry_list" WHERE "team"='rml racing silverline' AND "drivers"='james nash'; | 2-18409900-1 |
What class is Rob Collard in? | CREATE TABLE "entry_list" (
"team" text,
"car_spec" text,
"drivers" text,
"class" text,
"rounds" text
); | SELECT "class" FROM "entry_list" WHERE "drivers"='rob collard'; | 2-18409900-1 |
What is the car specs for team Airwaves BMW's driver Rob Collard? | CREATE TABLE "entry_list" (
"team" text,
"car_spec" text,
"drivers" text,
"class" text,
"rounds" text
); | SELECT "car_spec" FROM "entry_list" WHERE "team"='airwaves bmw' AND "drivers"='rob collard'; | 2-18409900-1 |
What is the language of TV3? | CREATE TABLE "channel_listing" (
"name" text,
"language" text,
"owner" text,
"group" text,
"type" text
); | SELECT "language" FROM "channel_listing" WHERE "name"='tv3'; | 2-1898905-1 |
What is the group of ESPN International Sports? | CREATE TABLE "channel_listing" (
"name" text,
"language" text,
"owner" text,
"group" text,
"type" text
); | SELECT "group" FROM "channel_listing" WHERE "name"='espn international sports'; | 2-1898905-1 |
What is the type of station for ESPN International Sports? | CREATE TABLE "channel_listing" (
"name" text,
"language" text,
"owner" text,
"group" text,
"type" text
); | SELECT "type" FROM "channel_listing" WHERE "name"='espn international sports'; | 2-1898905-1 |
What is the type of station that is in the movies group? | CREATE TABLE "channel_listing" (
"name" text,
"language" text,
"owner" text,
"group" text,
"type" text
); | SELECT "type" FROM "channel_listing" WHERE "group"='movies'; | 2-1898905-1 |
What is the total sum ranked less than 5 with a 37.076 (2) 3rd run? | CREATE TABLE "heat_2" (
"rank" real,
"name" text,
"1st_run" text,
"2nd_run" text,
"3rd_run" text,
"total" real
); | SELECT SUM("total") FROM "heat_2" WHERE "rank"<5 AND "3rd_run"='37.076 (2)'; | 2-18662739-4 |
What is the name of the person with a total of 22? | CREATE TABLE "heat_2" (
"rank" real,
"name" text,
"1st_run" text,
"2nd_run" text,
"3rd_run" text,
"total" real
); | SELECT "name" FROM "heat_2" WHERE "total"=22; | 2-18662739-4 |
What is the total with a rank less than 8 and a 40.143 (4) 2nd run? | CREATE TABLE "heat_2" (
"rank" real,
"name" text,
"1st_run" text,
"2nd_run" text,
"3rd_run" text,
"total" real
); | SELECT "total" FROM "heat_2" WHERE "rank"<8 AND "2nd_run"='40.143 (4)'; | 2-18662739-4 |
What's the nationality of Henry Carr having a time of 20.3y? | CREATE TABLE "records_1951_1976" (
"time" text,
"athlete" text,
"nationality" text,
"location_of_race" text,
"date" text
); | SELECT "nationality" FROM "records_1951_1976" WHERE "athlete"='henry carr' AND "time"='20.3y'; | 2-18982988-1 |
What's the nationality of Livio Berruti? | CREATE TABLE "records_1951_1976" (
"time" text,
"athlete" text,
"nationality" text,
"location_of_race" text,
"date" text
); | SELECT "nationality" FROM "records_1951_1976" WHERE "athlete"='livio berruti'; | 2-18982988-1 |
What's the nationality of Ray norton with a time of 20.6? | CREATE TABLE "records_1951_1976" (
"time" text,
"athlete" text,
"nationality" text,
"location_of_race" text,
"date" text
); | SELECT "nationality" FROM "records_1951_1976" WHERE "time"='20.6' AND "athlete"='ray norton'; | 2-18982988-1 |
What is the sum of the prominence in m of slovakia? | CREATE TABLE "list_of_european_ultra_prominent_peaks" (
"peak" text,
"country" text,
"elevation_m" real,
"prominence_m" real,
"col_m" real
); | SELECT SUM("prominence_m") FROM "list_of_european_ultra_prominent_peaks" WHERE "country"='slovakia'; | 2-18918776-7 |
What is the prominence in m of a col in m greater than 738? | CREATE TABLE "list_of_european_ultra_prominent_peaks" (
"peak" text,
"country" text,
"elevation_m" real,
"prominence_m" real,
"col_m" real
); | SELECT "prominence_m" FROM "list_of_european_ultra_prominent_peaks" WHERE "col_m">738; | 2-18918776-7 |
Whta is the lowest col in m of gerlachovský štít peak, which has an elevation greater than 2,655 m? | CREATE TABLE "list_of_european_ultra_prominent_peaks" (
"peak" text,
"country" text,
"elevation_m" real,
"prominence_m" real,
"col_m" real
); | SELECT MIN("col_m") FROM "list_of_european_ultra_prominent_peaks" WHERE "peak"='gerlachovský štít' AND "elevation_m">'2,655'; | 2-18918776-7 |
What is the lowest elevation in m of moldoveanu peak, which has a prominence in m less than 2,103 and a col in m less than 498? | CREATE TABLE "list_of_european_ultra_prominent_peaks" (
"peak" text,
"country" text,
"elevation_m" real,
"prominence_m" real,
"col_m" real
); | SELECT MIN("elevation_m") FROM "list_of_european_ultra_prominent_peaks" WHERE "prominence_m"<'2,103' AND "peak"='moldoveanu peak' AND "col_m"<498; | 2-18918776-7 |
What is the average prominence in m of pietrosul rodnei peak, which has an elevation less than 2,303? | CREATE TABLE "list_of_european_ultra_prominent_peaks" (
"peak" text,
"country" text,
"elevation_m" real,
"prominence_m" real,
"col_m" real
); | SELECT AVG("prominence_m") FROM "list_of_european_ultra_prominent_peaks" WHERE "peak"='pietrosul rodnei' AND "elevation_m"<'2,303'; | 2-18918776-7 |
What is the Score of the Shooter with a Comp of OG? | CREATE TABLE "world_record_progression" (
"score" text,
"shooter" text,
"date" text,
"comp" text,
"place" text
); | SELECT "score" FROM "world_record_progression" WHERE "comp"='og'; | 2-18986934-1 |
What is the B Score when the total is more than 16.125, and position is 3rd? | CREATE TABLE "qualified_competitors" (
"position" text,
"gymnast" text,
"a_score" real,
"b_score" real,
"total" real
); | SELECT SUM("b_score") FROM "qualified_competitors" WHERE "total">16.125 AND "position"='3rd'; | 2-18662020-2 |
What is the lowest A Score when the B Score is 9.15, and total is 16.05? | CREATE TABLE "qualified_competitors" (
"position" text,
"gymnast" text,
"a_score" real,
"b_score" real,
"total" real
); | SELECT MIN("a_score") FROM "qualified_competitors" WHERE "b_score"=9.15 AND "total"=16.05; | 2-18662020-2 |
Who had a time of 7:14.64? | CREATE TABLE "heat_3" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT "athlete" FROM "heat_3" WHERE "time"='7:14.64'; | 2-18662643-4 |
What rank was Lassi Karonen? | CREATE TABLE "heat_3" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT COUNT("rank") FROM "heat_3" WHERE "athlete"='lassi karonen'; | 2-18662643-4 |
What was the rank when then time was 7:52.53? | CREATE TABLE "heat_3" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT MIN("rank") FROM "heat_3" WHERE "time"='7:52.53'; | 2-18662643-4 |
Who was the athlete from Germany with notes of Q? | CREATE TABLE "heat_3" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT "athlete" FROM "heat_3" WHERE "notes"='q' AND "country"='germany'; | 2-18662643-4 |
What rank is Germany? | CREATE TABLE "heat_3" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT "rank" FROM "heat_3" WHERE "country"='germany'; | 2-18662643-4 |
Who was the athlete from Hong Kong? | CREATE TABLE "heat_3" (
"rank" real,
"athlete" text,
"country" text,
"time" text,
"notes" text
); | SELECT "athlete" FROM "heat_3" WHERE "country"='hong kong'; | 2-18662643-4 |
Which school has a mascot of the Blazers and in the Northeast Corner conference? | CREATE TABLE "former_members" (
"school" text,
"location" text,
"mascot" text,
"enrollment_08_09" real,
"ihsaa_class_football_class" text,
"county" text,
"year_joined" real,
"previous_conference" text,
"year_left" real,
"conference_joined" text
); | SELECT "school" FROM "former_members" WHERE "conference_joined"='northeast corner' AND "mascot"='blazers'; | 2-18765101-2 |
Which mascot has an IHSAA Class and Football class of 2A/2A? | CREATE TABLE "former_members" (
"school" text,
"location" text,
"mascot" text,
"enrollment_08_09" real,
"ihsaa_class_football_class" text,
"county" text,
"year_joined" real,
"previous_conference" text,
"year_left" real,
"conference_joined" text
); | SELECT "mascot" FROM "former_members" WHERE "ihsaa_class_football_class"='2a/2a'; | 2-18765101-2 |
Which player was selected in rounds under 3? | CREATE TABLE "amateur_draft" (
"round" real,
"pick" real,
"player" text,
"nationality" text,
"college_junior_club_team" text
); | SELECT "player" FROM "amateur_draft" WHERE "round"<3; | 2-18719421-5 |
Which Water (sqmi) has a Pop (2010) of 359, and a Longitude smaller than -97.176811? | CREATE TABLE "f" (
"township" text,
"county" text,
"pop_2010" real,
"land_sqmi" real,
"water_sqmi" real,
"latitude" real,
"longitude" real,
"geo_id" real,
"ansi_code" real
); | SELECT MAX("water_sqmi") FROM "f" WHERE "pop_2010"=359 AND "longitude"<-97.176811; | 2-18600760-6 |
Which Land (sqmi) has a Water (sqmi) smaller than 0.04, and a Longitude of -96.794706? | CREATE TABLE "f" (
"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("land_sqmi") FROM "f" WHERE "water_sqmi"<0.04 AND "longitude"=-96.794706; | 2-18600760-6 |
How much Latitude has a Water (sqmi) of 0.267, and an ANSI code larger than 1759605? | CREATE TABLE "f" (
"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("latitude") FROM "f" WHERE "water_sqmi"=0.267 AND "ansi_code">1759605; | 2-18600760-6 |
Which ANSI code has a GEO ID larger than 3809927140, and a Water (sqmi) smaller than 0.492, and a Pop (2010) of 37, and a Latitude larger than 48.245979? | CREATE TABLE "f" (
"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("ansi_code") FROM "f" WHERE "geo_id">3809927140 AND "water_sqmi"<0.492 AND "pop_2010"=37 AND "latitude">48.245979; | 2-18600760-6 |
What is the Owner of Frequency 00 99.3? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "owner" FROM "radio" WHERE "frequency"='00 99.3'; | 2-18410022-1 |
What is the Branding of Frequency 00 94.5? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "branding" FROM "radio" WHERE "frequency"='00 94.5'; | 2-18410022-1 |
What is the Call Sign of the Frequency by Owner CKUA Radio Foundation? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "call_sign" FROM "radio" WHERE "owner"='ckua radio foundation'; | 2-18410022-1 |
What is the Owner of the Frequency with a Format of First Nations Community Radio? | CREATE TABLE "radio" (
"frequency" text,
"call_sign" text,
"branding" text,
"format" text,
"owner" text
); | SELECT "owner" FROM "radio" WHERE "format"='first nations community radio'; | 2-18410022-1 |
Which School has a Previous Conference of none (new school), and a Year Joined larger than 1960, and a Location of versailles? | CREATE TABLE "membership" (
"school" text,
"location" text,
"mascot" text,
"size" real,
"ihsaa_class" text,
"county" text,
"year_joined" real,
"previous_conference" text
); | SELECT "school" FROM "membership" WHERE "previous_conference"='none (new school)' AND "year_joined">1960 AND "location"='versailles'; | 2-18717975-1 |
Which Location has a Previous Conference of independents, and a Mascot of hilltoppers? | CREATE TABLE "membership" (
"school" text,
"location" text,
"mascot" text,
"size" real,
"ihsaa_class" text,
"county" text,
"year_joined" real,
"previous_conference" text
); | SELECT "location" FROM "membership" WHERE "previous_conference"='independents' AND "mascot"='hilltoppers'; | 2-18717975-1 |
Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels? | CREATE TABLE "membership" (
"school" text,
"location" text,
"mascot" text,
"size" real,
"ihsaa_class" text,
"county" text,
"year_joined" real,
"previous_conference" text
); | SELECT AVG("year_joined") FROM "membership" WHERE "size">93 AND "previous_conference"='none (new school)' AND "mascot"='rebels'; | 2-18717975-1 |
How many years Joined have a Size smaller than 417, and an IHSAA Class of A, and a School of jac-cen-del? | CREATE TABLE "membership" (
"school" text,
"location" text,
"mascot" text,
"size" real,
"ihsaa_class" text,
"county" text,
"year_joined" real,
"previous_conference" text
); | SELECT COUNT("year_joined") FROM "membership" WHERE "size"<417 AND "ihsaa_class"='a' AND "school"='jac-cen-del'; | 2-18717975-1 |
What is the 1957 number when the 1955 is smaller than 0.63, and 1952 is larger than 0.22? | CREATE TABLE "1950s" (
"country" text,
"1951" real,
"1952" real,
"1953" real,
"1954" real,
"1955" real,
"1956" real,
"1957" real,
"1958" real,
"1959" real
); | SELECT COUNT("1957") FROM "1950s" WHERE "1955"<0.63 AND "1952">0.22; | 2-18940307-6 |
What is the 1952 rate when the 1954 is more than 4.2? | CREATE TABLE "1950s" (
"country" text,
"1951" real,
"1952" real,
"1953" real,
"1954" real,
"1955" real,
"1956" real,
"1957" real,
"1958" real,
"1959" real
); | SELECT SUM("1952") FROM "1950s" WHERE "1954">4.2; | 2-18940307-6 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.