question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
Name the college/junior club team for john campbell | CREATE TABLE "round_three" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "college_junior_club_team" FROM "round_three" WHERE "player"='John Campbell'; | 1-1965650-3 |
Name the least pick # for doug gibson | CREATE TABLE "round_three" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT MIN("pick_num") FROM "round_three" WHERE "player"='Doug Gibson'; | 1-1965650-3 |
How many nationalities does Tom Colley have? | CREATE TABLE "round_four" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT COUNT("nationality") FROM "round_four" WHERE "player"='Tom Colley'; | 1-1965650-4 |
What's the NHL team that drafted the player from Sudbury Wolves (OHA)? | CREATE TABLE "round_four" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "nhl_team" FROM "round_four" WHERE "college_junior_club_team"='Sudbury Wolves (OHA)'; | 1-1965650-4 |
What's the number of positions of the player playing in Minnesota North Stars? | CREATE TABLE "round_four" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT COUNT("position") FROM "round_four" WHERE "nhl_team"='Minnesota North Stars'; | 1-1965650-4 |
What's the smallest pick number of a player playing in Minnesota North Stars? | CREATE TABLE "round_four" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT MIN("pick_num") FROM "round_four" WHERE "nhl_team"='Minnesota North Stars'; | 1-1965650-4 |
What's the nationality of the player coming from Edmonton Oil Kings (WCHL)? | CREATE TABLE "round_four" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "nationality" FROM "round_four" WHERE "college_junior_club_team"='Edmonton Oil Kings (WCHL)'; | 1-1965650-4 |
What's Steve Langdon's naitionality? | CREATE TABLE "round_four" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "nationality" FROM "round_four" WHERE "player"='Steve Langdon'; | 1-1965650-4 |
When michigan technological university (ncaa) is the college, junior, or club team what is the nationality? | CREATE TABLE "round_nine" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "nationality" FROM "round_nine" WHERE "college_junior_club_team"='Michigan Technological University (NCAA)'; | 1-1965650-9 |
When kitchener rangers (oha) is the college, junior, or club team team who is the player? | CREATE TABLE "round_nine" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "player" FROM "round_nine" WHERE "college_junior_club_team"='Kitchener Rangers (OHA)'; | 1-1965650-9 |
When sault ste. marie greyhounds (oha) is the college, junior, or club team how many nationalities are there? | CREATE TABLE "round_nine" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT COUNT("nationality") FROM "round_nine" WHERE "college_junior_club_team"='Sault Ste. Marie Greyhounds (OHA)'; | 1-1965650-9 |
When kitchener rangers (oha) is the college, junior, or club team what is the position? | CREATE TABLE "round_nine" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "position" FROM "round_nine" WHERE "college_junior_club_team"='Kitchener Rangers (OHA)'; | 1-1965650-9 |
How many positions for denis patry? | CREATE TABLE "round_six" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT COUNT("position") FROM "round_six" WHERE "player"='Denis Patry'; | 1-1965650-6 |
What nationality for neil korzack? | CREATE TABLE "round_six" (
"pick_num" real,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "nationality" FROM "round_six" WHERE "player"='Neil Korzack'; | 1-1965650-6 |
Name the college that has 10000 enrolled | CREATE TABLE "current_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "institution" FROM "current_members" WHERE "enrollment"=10000; | 1-1969577-1 |
Name the most joined for molloy college | CREATE TABLE "current_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT MAX("joined") FROM "current_members" WHERE "institution"='Molloy College'; | 1-1969577-1 |
how many times was total considered when hancock # was 1394 | CREATE TABLE "by_county" (
"county" text,
"starky_num" real,
"starky_pct" text,
"hancock_num" real,
"hancock_pct" text,
"mc_cain_num" real,
"mc_cain_pct" text,
"total" real
); | SELECT COUNT("total") FROM "by_county" WHERE "hancock_num"=1394; | 1-19681738-1 |
how many times was hancock % considered when starky % was 20.96% | CREATE TABLE "by_county" (
"county" text,
"starky_num" real,
"starky_pct" text,
"hancock_num" real,
"hancock_pct" text,
"mc_cain_num" real,
"mc_cain_pct" text,
"total" real
); | SELECT COUNT("hancock_pct") FROM "by_county" WHERE "starky_pct"='20.96%'; | 1-19681738-1 |
How many times was country considered when starky % was 20.96% | CREATE TABLE "by_county" (
"county" text,
"starky_num" real,
"starky_pct" text,
"hancock_num" real,
"hancock_pct" text,
"mc_cain_num" real,
"mc_cain_pct" text,
"total" real
); | SELECT COUNT("county") FROM "by_county" WHERE "starky_pct"='20.96%'; | 1-19681738-1 |
which country did stary get 17.41% | CREATE TABLE "by_county" (
"county" text,
"starky_num" real,
"starky_pct" text,
"hancock_num" real,
"hancock_pct" text,
"mc_cain_num" real,
"mc_cain_pct" text,
"total" real
); | SELECT "county" FROM "by_county" WHERE "starky_pct"='17.41%'; | 1-19681738-1 |
what is the least total in gila | CREATE TABLE "by_county" (
"county" text,
"starky_num" real,
"starky_pct" text,
"hancock_num" real,
"hancock_pct" text,
"mc_cain_num" real,
"mc_cain_pct" text,
"total" real
); | SELECT MIN("total") FROM "by_county" WHERE "county"='Gila'; | 1-19681738-1 |
where did hancock get 3.09% | CREATE TABLE "by_county" (
"county" text,
"starky_num" real,
"starky_pct" text,
"hancock_num" real,
"hancock_pct" text,
"mc_cain_num" real,
"mc_cain_pct" text,
"total" real
); | SELECT "county" FROM "by_county" WHERE "hancock_pct"='3.09%'; | 1-19681738-1 |
What is the BBM when the strike rate is 42.2? | CREATE TABLE "bowling_average" (
"player" text,
"team" text,
"matches" real,
"overs" text,
"wickets" real,
"economy_rate" text,
"average" text,
"strike_rate" text,
"bbi" text,
"bbm" text
); | SELECT "bbm" FROM "bowling_average" WHERE "strike_rate"='42.2'; | 1-19662262-6 |
What is the economy when the strike rate is 54.0? | CREATE TABLE "bowling_average" (
"player" text,
"team" text,
"matches" real,
"overs" text,
"wickets" real,
"economy_rate" text,
"average" text,
"strike_rate" text,
"bbi" text,
"bbm" text
); | SELECT "economy_rate" FROM "bowling_average" WHERE "strike_rate"='54.0'; | 1-19662262-6 |
How many averages are there when the economy rate is 2.26? | CREATE TABLE "bowling_average" (
"player" text,
"team" text,
"matches" real,
"overs" text,
"wickets" real,
"economy_rate" text,
"average" text,
"strike_rate" text,
"bbi" text,
"bbm" text
); | SELECT COUNT("average") FROM "bowling_average" WHERE "economy_rate"='2.26'; | 1-19662262-6 |
What is the BBM when the strike rate is 42.2? | CREATE TABLE "bowling_average" (
"player" text,
"team" text,
"matches" real,
"overs" text,
"wickets" real,
"economy_rate" text,
"average" text,
"strike_rate" text,
"bbi" text,
"bbm" text
); | SELECT "bbm" FROM "bowling_average" WHERE "strike_rate"='42.2'; | 1-19662262-6 |
How many figures for wickets when the strike rate is 54.0? | CREATE TABLE "bowling_average" (
"player" text,
"team" text,
"matches" real,
"overs" text,
"wickets" real,
"economy_rate" text,
"average" text,
"strike_rate" text,
"bbi" text,
"bbm" text
); | SELECT COUNT("wickets") FROM "bowling_average" WHERE "strike_rate"='54.0'; | 1-19662262-6 |
What is the strike rate when there are 17 wickets? | CREATE TABLE "bowling_average" (
"player" text,
"team" text,
"matches" real,
"overs" text,
"wickets" real,
"economy_rate" text,
"average" text,
"strike_rate" text,
"bbi" text,
"bbm" text
); | SELECT "strike_rate" FROM "bowling_average" WHERE "wickets"=17; | 1-19662262-6 |
How many areas (km 2) have 151511 as the census 2006 population? | CREATE TABLE "administrative_divisions" (
"lga_name" text,
"area_km_2" real,
"census_2006_population" real,
"administrative_capital" text,
"postal_code" real
); | SELECT COUNT("area_km_2") FROM "administrative_divisions" WHERE "census_2006_population"=151511; | 1-1966992-1 |
What is the LGA name where the 2006 census population is bigger than 425208.9417698913 and administrative capital is port harcourt? | CREATE TABLE "administrative_divisions" (
"lga_name" text,
"area_km_2" real,
"census_2006_population" real,
"administrative_capital" text,
"postal_code" real
); | SELECT "lga_name" FROM "administrative_divisions" WHERE "census_2006_population">425208.9417698913 AND "administrative_capital"='Port Harcourt'; | 1-1966992-1 |
What is the administrative capital of LGA name Akuku-Toru? | CREATE TABLE "administrative_divisions" (
"lga_name" text,
"area_km_2" real,
"census_2006_population" real,
"administrative_capital" text,
"postal_code" real
); | SELECT "administrative_capital" FROM "administrative_divisions" WHERE "lga_name"='Akuku-Toru'; | 1-1966992-1 |
What is the administrative capital that has a 2006 census population of 249425? | CREATE TABLE "administrative_divisions" (
"lga_name" text,
"area_km_2" real,
"census_2006_population" real,
"administrative_capital" text,
"postal_code" real
); | SELECT "administrative_capital" FROM "administrative_divisions" WHERE "census_2006_population"=249425; | 1-1966992-1 |
What is the maximum 2006 census population of LGA name Opobo/Nkoro? | CREATE TABLE "administrative_divisions" (
"lga_name" text,
"area_km_2" real,
"census_2006_population" real,
"administrative_capital" text,
"postal_code" real
); | SELECT MAX("census_2006_population") FROM "administrative_divisions" WHERE "lga_name"='Opobo/Nkoro'; | 1-1966992-1 |
What's the minimal enrollment of any of the schools? | CREATE TABLE "former_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real,
"current_conference" text
); | SELECT MIN("enrollment") FROM "former_members"; | 1-1969577-3 |
When was the school whose students are nicknamed Rams founded? | CREATE TABLE "former_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real,
"current_conference" text
); | SELECT MAX("founded") FROM "former_members" WHERE "nickname"='Rams'; | 1-1969577-3 |
What's the type of the school whose students are nicknamed Chargers? | CREATE TABLE "former_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "type" FROM "former_members" WHERE "nickname"='Chargers'; | 1-1969577-3 |
When was the school in Philadelphia, Pennsylvania founded? | CREATE TABLE "former_members" (
"institution" text,
"nickname" text,
"location" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "founded" FROM "former_members" WHERE "location"='Philadelphia, Pennsylvania'; | 1-1969577-3 |
What was the total number of votes in the 2005 elections? | CREATE TABLE "summary_of_general_election_performance" (
"year" text,
"number_of_candidates" real,
"total_votes" real,
"average_voters_per_candidate" real,
"percentage_of_vote" text,
"saved_deposits" real,
"change_percentage_points" text,
"number_of_m_ps" real
); | SELECT MIN("total_votes") FROM "summary_of_general_election_performance" WHERE "year"='2005'; | 1-19698421-1 |
How many elections had 1423 average voters per candidate? | CREATE TABLE "summary_of_general_election_performance" (
"year" text,
"number_of_candidates" real,
"total_votes" real,
"average_voters_per_candidate" real,
"percentage_of_vote" text,
"saved_deposits" real,
"change_percentage_points" text,
"number_of_m_ps" real
); | SELECT COUNT("change_percentage_points") FROM "summary_of_general_election_performance" WHERE "average_voters_per_candidate"=1423; | 1-19698421-1 |
How many candidates were there in the year of 1987? | CREATE TABLE "summary_of_general_election_performance" (
"year" text,
"number_of_candidates" real,
"total_votes" real,
"average_voters_per_candidate" real,
"percentage_of_vote" text,
"saved_deposits" real,
"change_percentage_points" text,
"number_of_m_ps" real
); | SELECT "number_of_candidates" FROM "summary_of_general_election_performance" WHERE "year"='1987'; | 1-19698421-1 |
What is the modified torque (lb/ft) when the standard hp n/a? | CREATE TABLE "performance_and_riding_the_mt125_r" (
"rpm" real,
"standard_hp" text,
"standard_torque_lb_ft" text,
"standard_speed_6th_gear" text,
"modified_speed_6th_gear" real,
"modified_hp" text,
"modified_torque_lb_ft" text
); | SELECT COUNT("modified_torque_lb_ft") FROM "performance_and_riding_the_mt125_r" WHERE "standard_hp"='n/a'; | 1-19704392-1 |
When the standard speed (6th gear) is 114, what is the minimum rpm? | CREATE TABLE "performance_and_riding_the_mt125_r" (
"rpm" real,
"standard_hp" text,
"standard_torque_lb_ft" text,
"standard_speed_6th_gear" text,
"modified_speed_6th_gear" real,
"modified_hp" text,
"modified_torque_lb_ft" text
); | SELECT MIN("rpm") FROM "performance_and_riding_the_mt125_r" WHERE "standard_speed_6th_gear"='114'; | 1-19704392-1 |
when standard speed (6th gear) is 88, what is the rpm? | CREATE TABLE "performance_and_riding_the_mt125_r" (
"rpm" real,
"standard_hp" text,
"standard_torque_lb_ft" text,
"standard_speed_6th_gear" text,
"modified_speed_6th_gear" real,
"modified_hp" text,
"modified_torque_lb_ft" text
); | SELECT "rpm" FROM "performance_and_riding_the_mt125_r" WHERE "standard_speed_6th_gear"='88'; | 1-19704392-1 |
What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75? | CREATE TABLE "performance_and_riding_the_mt125_r" (
"rpm" real,
"standard_hp" text,
"standard_torque_lb_ft" text,
"standard_speed_6th_gear" text,
"modified_speed_6th_gear" real,
"modified_hp" text,
"modified_torque_lb_ft" text
); | SELECT "modified_speed_6th_gear" FROM "performance_and_riding_the_mt125_r" WHERE "standard_torque_lb_ft"='10.3' AND "modified_torque_lb_ft"='8.75'; | 1-19704392-1 |
when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98 | CREATE TABLE "performance_and_riding_the_mt125_r" (
"rpm" real,
"standard_hp" text,
"standard_torque_lb_ft" text,
"standard_speed_6th_gear" text,
"modified_speed_6th_gear" real,
"modified_hp" text,
"modified_torque_lb_ft" text
); | SELECT MAX("modified_speed_6th_gear") FROM "performance_and_riding_the_mt125_r" WHERE "standard_speed_6th_gear"='98'; | 1-19704392-1 |
When the standard torque (lb/ft) is 11.53 how much does more is the modified hp? | CREATE TABLE "performance_and_riding_the_mt125_r" (
"rpm" real,
"standard_hp" text,
"standard_torque_lb_ft" text,
"standard_speed_6th_gear" text,
"modified_speed_6th_gear" real,
"modified_hp" text,
"modified_torque_lb_ft" text
); | SELECT "modified_hp" FROM "performance_and_riding_the_mt125_r" WHERE "standard_torque_lb_ft"='11.53'; | 1-19704392-1 |
Which time slot did the season finale on May 18, 2004 hold? | CREATE TABLE "u_s_television_ratings" (
"season" real,
"episodes" real,
"timeslot_est" text,
"season_premiere" text,
"season_finale" text,
"tv_season" text,
"ranking" text,
"viewers_in_millions" text
); | SELECT "timeslot_est" FROM "u_s_television_ratings" WHERE "season_finale"='May 18, 2004'; | 1-197060-1 |
how many assists did the player who played 195 minutes make | CREATE TABLE "player_stats" (
"player" text,
"minutes" real,
"field_goals" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT "assists" FROM "player_stats" WHERE "minutes"=195; | 1-19722233-5 |
what is the lowest number of blocks | CREATE TABLE "player_stats" (
"player" text,
"minutes" real,
"field_goals" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT MIN("blocks") FROM "player_stats"; | 1-19722233-5 |
what is the lowest points scored by a player who blocked 21 times | CREATE TABLE "player_stats" (
"player" text,
"minutes" real,
"field_goals" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT MIN("points") FROM "player_stats" WHERE "blocks"=21; | 1-19722233-5 |
how many times did debbie black block | CREATE TABLE "player_stats" (
"player" text,
"minutes" real,
"field_goals" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT "blocks" FROM "player_stats" WHERE "player"='Debbie Black'; | 1-19722233-5 |
what is the highest number of goals did the player with 27 asists score | CREATE TABLE "player_stats" (
"player" text,
"minutes" real,
"field_goals" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT MAX("field_goals") FROM "player_stats" WHERE "assists"=27; | 1-19722233-5 |
how many assists did the player who scored 251 points make | CREATE TABLE "player_stats" (
"player" text,
"minutes" real,
"field_goals" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT "assists" FROM "player_stats" WHERE "points"=251; | 1-19722233-5 |
What was the production number of the episode filmed in aug/sept 1968? | CREATE TABLE "table1_1971734_1" (
"episode_num" real,
"prod_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"originalairdate" text,
"filmed" text
); | SELECT "prod_num" FROM "table1_1971734_1" WHERE "filmed"='Aug/Sept 1968'; | 1-1971734-1 |
Who directed "report 2493:kidnap whose pretty girl are you"? | CREATE TABLE "table1_1971734_1" (
"episode_num" real,
"prod_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"originalairdate" text,
"filmed" text
); | SELECT "directed_by" FROM "table1_1971734_1" WHERE "title"='\"REPORT 2493:KIDNAP Whose Pretty Girl Are You\"'; | 1-1971734-1 |
When was "report 4407: heart no choice for the donor" filmed? | CREATE TABLE "table1_1971734_1" (
"episode_num" real,
"prod_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"originalairdate" text,
"filmed" text
); | SELECT "filmed" FROM "table1_1971734_1" WHERE "title"='\"REPORT 4407: HEART No Choice for the Donor\"'; | 1-1971734-1 |
What's the highest enrollment among the schools? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT MAX("enrollment") FROM "current_members"; | 1-1971074-1 |
When did the school from Logan Township, Pennsylvania join the Conference? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "joined" FROM "current_members" WHERE "location"='Logan Township, Pennsylvania'; | 1-1971074-1 |
When was the private/non-sectarian school founded? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "founded" FROM "current_members" WHERE "type"='Private/Non-sectarian'; | 1-1971074-1 |
Where is the school whose students are nicknamed Panthers located? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "location" FROM "current_members" WHERE "nickname"='Panthers'; | 1-1971074-1 |
How many different enrollment numbers are there for the school whose students are nicknamed Barons? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT COUNT("enrollment") FROM "current_members" WHERE "nickname"='Barons'; | 1-1971074-1 |
In how many different years did schools located in Logan Township, Pennsylvania join the Conference? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT COUNT("joined") FROM "current_members" WHERE "location"='Logan Township, Pennsylvania'; | 1-1971074-1 |
How many different isolation numbers does the Jack Mountain peak have? | CREATE TABLE "the_18_washington_mountain_peaks_with_27" (
"rank" real,
"mountain_peak" text,
"mountain_range" text,
"elevation" text,
"prominence" text,
"isolation" text
); | SELECT COUNT("isolation") FROM "the_18_washington_mountain_peaks_with_27" WHERE "mountain_peak"='Jack Mountain'; | 1-19716903-1 |
What's the isolation of the mountain peak with a prominence of 1340.549 = 4,397feet 1,340m? | CREATE TABLE "the_18_washington_mountain_peaks_with_27" (
"rank" real,
"mountain_peak" text,
"mountain_range" text,
"elevation" text,
"prominence" text,
"isolation" text
); | SELECT "isolation" FROM "the_18_washington_mountain_peaks_with_27" WHERE "prominence"='1340.549 = 4,397feet 1,340m'; | 1-19716903-1 |
How many different isolation numbers does the peak with an elevation of 2782.622 = 9,127feet 2782m have? | CREATE TABLE "the_18_washington_mountain_peaks_with_27" (
"rank" real,
"mountain_peak" text,
"mountain_range" text,
"elevation" text,
"prominence" text,
"isolation" text
); | SELECT COUNT("isolation") FROM "the_18_washington_mountain_peaks_with_27" WHERE "elevation"='2782.622 = 9,127feet 2782m'; | 1-19716903-1 |
What's the isolation of the mountain peak with an elevation of 2705.793 = 8,875feet 2705m? | CREATE TABLE "the_18_washington_mountain_peaks_with_27" (
"rank" real,
"mountain_peak" text,
"mountain_range" text,
"elevation" text,
"prominence" text,
"isolation" text
); | SELECT "isolation" FROM "the_18_washington_mountain_peaks_with_27" WHERE "elevation"='2705.793 = 8,875feet 2705m'; | 1-19716903-1 |
What's the isolation of the mountain peak with prominence of 1340.549 = 4,397feet 1,340m? | CREATE TABLE "the_18_washington_mountain_peaks_with_27" (
"rank" real,
"mountain_peak" text,
"mountain_range" text,
"elevation" text,
"prominence" text,
"isolation" text
); | SELECT "isolation" FROM "the_18_washington_mountain_peaks_with_27" WHERE "prominence"='1340.549 = 4,397feet 1,340m'; | 1-19716903-1 |
How many steals did Nicole Levandusky make? | CREATE TABLE "player_stats" (
"player" text,
"games_played" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT "steals" FROM "player_stats" WHERE "player"='Nicole Levandusky'; | 1-19722664-5 |
How many rebounds did Rhonda Mapp make? | CREATE TABLE "player_stats" (
"player" text,
"games_played" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT MAX("rebounds") FROM "player_stats" WHERE "player"='Rhonda Mapp'; | 1-19722664-5 |
What is the largest amount of assists that Nicole Levandusky made? | CREATE TABLE "player_stats" (
"player" text,
"games_played" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT MAX("assists") FROM "player_stats" WHERE "player"='Nicole Levandusky'; | 1-19722664-5 |
What is the maximum number of blocks where rebounds equal 35? | CREATE TABLE "player_stats" (
"player" text,
"games_played" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT MAX("blocks") FROM "player_stats" WHERE "rebounds"=35; | 1-19722664-5 |
How many assists did Delisha Milton-Jones make? | CREATE TABLE "player_stats" (
"player" text,
"games_played" real,
"rebounds" real,
"assists" real,
"steals" real,
"blocks" real,
"points" real
); | SELECT "assists" FROM "player_stats" WHERE "player"='DeLisha Milton-Jones'; | 1-19722664-5 |
Name the total apps for eddie carr | CREATE TABLE "fa_cup_appearances_and_goals" (
"name" text,
"nation" text,
"position" text,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
); | SELECT MAX("total_apps") FROM "fa_cup_appearances_and_goals" WHERE "name"='Eddie Carr'; | 1-19730892-1 |
Name the fa cup apps for arthur morton | CREATE TABLE "fa_cup_appearances_and_goals" (
"name" text,
"nation" text,
"position" text,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
); | SELECT "fa_cup_apps" FROM "fa_cup_appearances_and_goals" WHERE "name"='Arthur Morton'; | 1-19730892-1 |
Name the position for billy price | CREATE TABLE "fa_cup_appearances_and_goals" (
"name" text,
"nation" text,
"position" text,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
); | SELECT "position" FROM "fa_cup_appearances_and_goals" WHERE "name"='Billy Price'; | 1-19730892-1 |
Name the total number of position for don clegg | CREATE TABLE "fa_cup_appearances_and_goals" (
"name" text,
"nation" text,
"position" text,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
); | SELECT COUNT("position") FROM "fa_cup_appearances_and_goals" WHERE "name"='Don Clegg'; | 1-19730892-1 |
Name the nation where jeff barker is from | CREATE TABLE "fa_cup_appearances_and_goals" (
"name" text,
"nation" text,
"position" text,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
); | SELECT "nation" FROM "fa_cup_appearances_and_goals" WHERE "name"='Jeff Barker'; | 1-19730892-1 |
Name the fa cup apps for george green | CREATE TABLE "fa_cup_appearances_and_goals" (
"name" text,
"nation" text,
"position" text,
"fa_cup_apps" real,
"fa_cup_goals" real,
"total_apps" real,
"total_goals" real
); | SELECT "fa_cup_apps" FROM "fa_cup_appearances_and_goals" WHERE "name"='George Green'; | 1-19730892-1 |
Name the school that was founded in 1950 | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" text
); | SELECT "institution" FROM "current_members" WHERE "founded"=1950; | 1-1973648-1 |
Name the most founded for sea gulls | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" text
); | SELECT MAX("founded") FROM "current_members" WHERE "nickname"='Sea Gulls'; | 1-1973648-1 |
Name the location for eagles | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" text
); | SELECT "location" FROM "current_members" WHERE "nickname"='Eagles'; | 1-1973648-1 |
Name the enrollment for 2007-08 | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" text
); | SELECT "enrollment" FROM "current_members" WHERE "joined"='2007-08'; | 1-1973648-1 |
Name the least new points for steffi graf | CREATE TABLE "1999_australian_open" (
"sd" real,
"rk" real,
"player" text,
"points" real,
"points_defending" real,
"points_won" real,
"new_points" real,
"status" text
); | SELECT MIN("new_points") FROM "1999_australian_open" WHERE "player"='Steffi Graf'; | 1-1973321-5 |
Name the most points for champion, won in the final against amélie mauresmo | CREATE TABLE "1999_australian_open" (
"sd" real,
"rk" real,
"player" text,
"points" real,
"points_defending" real,
"points_won" real,
"new_points" real,
"status" text
); | SELECT MAX("points") FROM "1999_australian_open" WHERE "status"='Champion, won in the final against Amélie Mauresmo'; | 1-1973321-5 |
Name the further cities for slovakia and west direction | CREATE TABLE "hills_of_g_d_ll" (
"further_cities" text,
"county_oblast_or_state" text,
"country" text,
"distance" text,
"direction" text
); | SELECT "further_cities" FROM "hills_of_g_d_ll" WHERE "country"='Slovakia' AND "direction"='West'; | 1-197286-4 |
Name the distance from north | CREATE TABLE "hills_of_g_d_ll" (
"further_cities" text,
"county_oblast_or_state" text,
"country" text,
"distance" text,
"direction" text
); | SELECT "distance" FROM "hills_of_g_d_ll" WHERE "direction"='North'; | 1-197286-4 |
Name the number of direction for győr-moson-sopron | CREATE TABLE "hills_of_g_d_ll" (
"further_cities" text,
"county_oblast_or_state" text,
"country" text,
"distance" text,
"direction" text
); | SELECT COUNT("direction") FROM "hills_of_g_d_ll" WHERE "county_oblast_or_state"='Győr-Moson-Sopron'; | 1-197286-4 |
Name the further cities for east romania | CREATE TABLE "hills_of_g_d_ll" (
"further_cities" text,
"county_oblast_or_state" text,
"country" text,
"distance" text,
"direction" text
); | SELECT "further_cities" FROM "hills_of_g_d_ll" WHERE "direction"='East' AND "country"='Romania'; | 1-197286-4 |
Name the number of direction for debrecen | CREATE TABLE "hills_of_g_d_ll" (
"further_cities" text,
"county_oblast_or_state" text,
"country" text,
"distance" text,
"direction" text
); | SELECT COUNT("direction") FROM "hills_of_g_d_ll" WHERE "further_cities"='Debrecen'; | 1-197286-4 |
What's the nickname of the students of the school founded in 1933? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "nickname" FROM "current_members" WHERE "founded"=1933; | 1-1973816-1 |
On how many locations is the Saint Joseph's College of Maine located? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT COUNT("location") FROM "current_members" WHERE "institution"='Saint Joseph''s College of Maine'; | 1-1973816-1 |
On how many different dates did schools from Chestnut Hill, Massachusetts join the conference? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT COUNT("joined") FROM "current_members" WHERE "location"='Chestnut Hill, Massachusetts'; | 1-1973842-1 |
What is the type of the school whose students' nickname is tigers? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "type" FROM "current_members" WHERE "nickname"='Tigers'; | 1-1973842-1 |
What's the type of the school whose students' name is spirits? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "type" FROM "current_members" WHERE "nickname"='Spirits'; | 1-1973842-1 |
What school is located in Chestnut Hill, Massachusetts? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "institution" FROM "current_members" WHERE "location"='Chestnut Hill, Massachusetts'; | 1-1973842-1 |
What type is the school located in Macon, Georgia? | CREATE TABLE "current_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real
); | SELECT "type" FROM "current_members" WHERE "location"='Macon, Georgia'; | 1-1973842-1 |
What's the nickname of the school in Maryville, Tennessee? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" text,
"current_conference" text
); | SELECT "nickname" FROM "former_members" WHERE "location"='Maryville, Tennessee'; | 1-1973842-2 |
Where is the school with nickname Tigers located? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" text,
"current_conference" text
); | SELECT "location" FROM "former_members" WHERE "nickname"='Tigers'; | 1-1973842-2 |
What's the nickname of the students of the school that joined the Conference in 2010? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" text,
"current_conference" text
); | SELECT "nickname" FROM "former_members" WHERE "joined"=2010; | 1-1973842-2 |
When was Daniel Webster College founded? | CREATE TABLE "former_members" (
"institution" text,
"location" text,
"nickname" text,
"founded" real,
"type" text,
"enrollment" real,
"joined" real,
"left" real,
"current_conference" text
); | SELECT "founded" FROM "former_members" WHERE "institution"='Daniel Webster College'; | 1-1973816-2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.