answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT MIN(indoor) FROM table_19534874_2 WHERE inspection = 5 | CREATE TABLE table_19534874_2 (indoor INTEGER, inspection VARCHAR) | What are the minimum indoor results that have a 5 for inspection? |
SELECT MAX(written) FROM table_19534874_2 WHERE standard = 2 | CREATE TABLE table_19534874_2 (written INTEGER, standard VARCHAR) | What was the maximum number in written when the standard was 2? |
SELECT COUNT(points) FROM table_19534874_2 WHERE mile_run = 3 | CREATE TABLE table_19534874_2 (points VARCHAR, mile_run VARCHAR) | How many point categories are there for the 3 mile run? |
SELECT indoor FROM table_19534874_2 WHERE wing = "NJ" | CREATE TABLE table_19534874_2 (indoor VARCHAR, wing VARCHAR) | What is the indoor number for the NJ wing/ |
SELECT COUNT(indoor) FROM table_19534874_2 WHERE region = "NER" | CREATE TABLE table_19534874_2 (indoor VARCHAR, region VARCHAR) | What is the indoor number for the NER region? |
SELECT winning_span FROM table_1953516_1 WHERE name = "Martin Kaymer" | CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR) | What is the winning span of the name martin kaymer? |
SELECT winning_span FROM table_1953516_1 WHERE country = "England" AND name = "Paul Casey" | CREATE TABLE table_1953516_1 (winning_span VARCHAR, country VARCHAR, name VARCHAR) | What is the winning span in the country of England with the name of paul casey? |
SELECT winning_span FROM table_1953516_1 WHERE name = "Bernard Gallacher" | CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR) | What is the winning span for the name of bernard gallacher? |
SELECT winning_span FROM table_1953516_1 WHERE rank = "5" | CREATE TABLE table_1953516_1 (winning_span VARCHAR, rank VARCHAR) | What is the winning span with the rank of 5? |
SELECT COUNT(scorecard) FROM table_19576091_1 WHERE date = "October 28" | CREATE TABLE table_19576091_1 (scorecard VARCHAR, date VARCHAR) | How many scorecards are there for the match on October 28? |
SELECT COUNT(venue) FROM table_19576091_1 WHERE date = "November 6" | CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR) | How many venues were there for the match on November 6? |
SELECT venue FROM table_19576091_1 WHERE date = "October 10" | CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR) | What was the venue for the match on October 10? |
SELECT man_of_the_match FROM table_19576091_1 WHERE result = "Rockets won by 9 wickets" | CREATE TABLE table_19576091_1 (man_of_the_match VARCHAR, result VARCHAR) | Who was the man of the match when the Rockets won by 9 wickets? |
SELECT vacator FROM table_1958768_3 WHERE district = "Wisconsin 1st" | CREATE TABLE table_1958768_3 (vacator VARCHAR, district VARCHAR) | Name the vacator for wisconsin 1st |
SELECT successor FROM table_1958768_3 WHERE district = "Pennsylvania 15th" | CREATE TABLE table_1958768_3 (successor VARCHAR, district VARCHAR) | Name the successor for pennsylvania 15th |
SELECT circuit FROM table_19598014_2 WHERE challenge_winning_team = "#47 Orbit Racing" | CREATE TABLE table_19598014_2 (circuit VARCHAR, challenge_winning_team VARCHAR) | Name the circuit for #47 orbit racing |
SELECT gt2_winning_team FROM table_19598014_2 WHERE lmp2_winning_team = "Butch Leitzinger Marino Franchitti Ben Devlin" | CREATE TABLE table_19598014_2 (gt2_winning_team VARCHAR, lmp2_winning_team VARCHAR) | Name the gt2 winning team where lmp2 winning team and butch leitzinger marino franchitti ben devlin |
SELECT lmp1_winning_team FROM table_19598014_2 WHERE rnd = 2 AND lmp2_winning_team = "Adrian Fernández Luis Díaz" | CREATE TABLE table_19598014_2 (lmp1_winning_team VARCHAR, rnd VARCHAR, lmp2_winning_team VARCHAR) | Name the lmp 1 winning team for rnd being 2 and adrian fernández luis díaz |
SELECT capital FROM table_19605700_1 WHERE area_km² = 377930 | CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR) | Which capitals have an area of exactly 377930 square km? |
SELECT COUNT(capital) FROM table_19605700_1 WHERE area_km² = 1104 | CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR) | What is the total number of capitals that have an area of exactly 1104 square km? |
SELECT capital FROM table_19605700_1 WHERE population = 1339724852 | CREATE TABLE table_19605700_1 (capital VARCHAR, population VARCHAR) | What capital has a population of exactly 1339724852? |
SELECT COUNT(population) FROM table_19605700_1 WHERE capital = "Hong Kong" | CREATE TABLE table_19605700_1 (population VARCHAR, capital VARCHAR) | How many populations have a capital of Hong Kong? |
SELECT male_population_2001 FROM table_19589113_5 WHERE growth_rate_1991_01 = "36.16" | CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, growth_rate_1991_01 VARCHAR) | What are all values for the male population in 2001 with a growth rate in 1991-01 of 36.16? |
SELECT MIN(total_population_2001) FROM table_19589113_5 WHERE growth_rate_1991_01 = "33.08" | CREATE TABLE table_19589113_5 (total_population_2001 INTEGER, growth_rate_1991_01 VARCHAR) | What is the least value for total population in 2001 with a growth rate in 1991-01 of 33.08? |
SELECT male_population_2001 FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 896 | CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, sex_ratio_‡_1991 VARCHAR) | What are all values for male population in 2001 when sex ratio in 1991 is 896? |
SELECT growth_rate_1991_01 FROM table_19589113_5 WHERE sex_ratio_‡_2001 = 937 | CREATE TABLE table_19589113_5 (growth_rate_1991_01 VARCHAR, sex_ratio_‡_2001 VARCHAR) | What is every growth rate in 1991-2001 when sex ratio in 2001 is 937? |
SELECT districts_of_bihar FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 864 | CREATE TABLE table_19589113_5 (districts_of_bihar VARCHAR, sex_ratio_‡_1991 VARCHAR) | What districts of Bihar have a sex ratio in 1991 of 864? |
SELECT marriages_between_women FROM table_19614212_1 WHERE _percentage_same_sex_marriages = "1.06" | CREATE TABLE table_19614212_1 (marriages_between_women VARCHAR, _percentage_same_sex_marriages VARCHAR) | How many marriages between women have % same-sex marriages of 1.06? |
SELECT _percentage_same_sex_marriages FROM table_19614212_1 WHERE year = "2011" | CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR) | What is the % of same-sex marriages for the year of 2011? |
SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE year = "2008" | CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR) | How many % same-sex marriages are there for the year 2008? |
SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE marriages_between_men = 923 | CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, marriages_between_men VARCHAR) | How many % same-sex marriages are marriages between men for 923? |
SELECT original_air_date FROM table_19632728_1 WHERE episode__number = 2 | CREATE TABLE table_19632728_1 (original_air_date VARCHAR, episode__number VARCHAR) | When was the episode number 2 originally aired? |
SELECT MAX(season__number) FROM table_19632728_1 | CREATE TABLE table_19632728_1 (season__number INTEGER) | What was the highest season number? |
SELECT margin_of_victory FROM table_19630743_2 WHERE runner_s__up = "Steve Stricker" | CREATE TABLE table_19630743_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | What was the margin of victory of Steve Stricker as a runner up? |
SELECT to_par FROM table_19630743_2 WHERE winning_score = 69 - 66 - 68 = 203 | CREATE TABLE table_19630743_2 (to_par VARCHAR, winning_score VARCHAR) | How many to par has the winning score of 69-66-68=203. |
SELECT MIN(no) FROM table_19630743_2 WHERE tournament = "BMW Championship" | CREATE TABLE table_19630743_2 (no INTEGER, tournament VARCHAR) | What is the minimum number of the bmw championship tournament. |
SELECT COUNT(no) FROM table_19630743_2 WHERE runner_s__up = "John Merrick" | CREATE TABLE table_19630743_2 (no VARCHAR, runner_s__up VARCHAR) | What is the total number of John Merrick as a runner up? |
SELECT horse FROM table_19624708_1 WHERE owner = "R. A. Scott" | CREATE TABLE table_19624708_1 (horse VARCHAR, owner VARCHAR) | What horses does r. a. Scott own? |
SELECT COUNT(number) FROM table_19624708_1 WHERE sp = "20/1" AND finishing_position = "Fence 19" | CREATE TABLE table_19624708_1 (number VARCHAR, sp VARCHAR, finishing_position VARCHAR) | How many numbers have sp of 20/1 and a finishing position of fence 19? |
SELECT handicap__st_lb_ FROM table_19624708_1 WHERE horse = "Knowhere" | CREATE TABLE table_19624708_1 (handicap__st_lb_ VARCHAR, horse VARCHAR) | Which handicap has the horse knowhere? |
SELECT colours FROM table_19624708_1 WHERE owner = "David Langdon" | CREATE TABLE table_19624708_1 (colours VARCHAR, owner VARCHAR) | What colors does David Langdon use? |
SELECT result FROM table_19625976_1 WHERE film_title_used_in_nomination = "Baran" | CREATE TABLE table_19625976_1 (result VARCHAR, film_title_used_in_nomination VARCHAR) | If the film title nominated is Baran, what was the result? |
SELECT result FROM table_19625976_1 WHERE persian_title = "میم مثل مادر" | CREATE TABLE table_19625976_1 (result VARCHAR, persian_title VARCHAR) | For the Persian Title میم مثل مادر, what were the results? |
SELECT film_title_used_in_nomination FROM table_19625976_1 WHERE persian_title = "گبه" | CREATE TABLE table_19625976_1 (film_title_used_in_nomination VARCHAR, persian_title VARCHAR) | For the Persian title گبه, What was the film title used for the nomination? |
SELECT year FROM table_19643196_1 WHERE transmission = "Allison B400R" AND model = "BRT" | CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, model VARCHAR) | What year had an Allison B400R transmission and a model of BRT? |
SELECT fleet__number FROM table_19643196_1 WHERE length__ft_ = 30 | CREATE TABLE table_19643196_1 (fleet__number VARCHAR, length__ft_ VARCHAR) | What is the fleet number when the length (ft) is 30? |
SELECT fleet__number FROM table_19643196_1 WHERE transmission = "Voith D863.4" AND engine = "Cummins ISL" | CREATE TABLE table_19643196_1 (fleet__number VARCHAR, transmission VARCHAR, engine VARCHAR) | What is the fleet number when the transmission is Voith D863.4 and the engine is Cummins ISL? |
SELECT year FROM table_19643196_1 WHERE transmission = "Voith D863.4" AND engine = "Cummins ISM" | CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, engine VARCHAR) | Which year had a transmission of Voith D863.4 and a Cummins ISM engine? |
SELECT college_junior_club_team FROM table_1965650_1 WHERE player = "Ian Turnbull" | CREATE TABLE table_1965650_1 (college_junior_club_team VARCHAR, player VARCHAR) | Name the college/junior club team for ian turnbull |
SELECT position FROM table_1965650_3 WHERE nhl_team = "Los Angeles Kings" | CREATE TABLE table_1965650_3 (position VARCHAR, nhl_team VARCHAR) | Name the position for nhl team being los angeles kings |
SELECT nhl_team FROM table_1965650_3 WHERE player = "Jeff Jacques" | CREATE TABLE table_1965650_3 (nhl_team VARCHAR, player VARCHAR) | Name the nhl times for jeff jacques |
SELECT college_junior_club_team FROM table_1965650_3 WHERE player = "John Campbell" | CREATE TABLE table_1965650_3 (college_junior_club_team VARCHAR, player VARCHAR) | Name the college/junior club team for john campbell |
SELECT MIN(pick__number) FROM table_1965650_3 WHERE player = "Doug Gibson" | CREATE TABLE table_1965650_3 (pick__number INTEGER, player VARCHAR) | Name the least pick # for doug gibson |
SELECT COUNT(nationality) FROM table_1965650_4 WHERE player = "Tom Colley" | CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR) | How many nationalities does Tom Colley have? |
SELECT nhl_team FROM table_1965650_4 WHERE college_junior_club_team = "Sudbury Wolves (OHA)" | CREATE TABLE table_1965650_4 (nhl_team VARCHAR, college_junior_club_team VARCHAR) | What's the NHL team that drafted the player from Sudbury Wolves (OHA)? |
SELECT COUNT(position) FROM table_1965650_4 WHERE nhl_team = "Minnesota North Stars" | CREATE TABLE table_1965650_4 (position VARCHAR, nhl_team VARCHAR) | What's the number of positions of the player playing in Minnesota North Stars? |
SELECT MIN(pick__number) FROM table_1965650_4 WHERE nhl_team = "Minnesota North Stars" | CREATE TABLE table_1965650_4 (pick__number INTEGER, nhl_team VARCHAR) | What's the smallest pick number of a player playing in Minnesota North Stars? |
SELECT nationality FROM table_1965650_4 WHERE college_junior_club_team = "Edmonton Oil Kings (WCHL)" | CREATE TABLE table_1965650_4 (nationality VARCHAR, college_junior_club_team VARCHAR) | What's the nationality of the player coming from Edmonton Oil Kings (WCHL)? |
SELECT nationality FROM table_1965650_4 WHERE player = "Steve Langdon" | CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR) | What's Steve Langdon's naitionality? |
SELECT nationality FROM table_1965650_9 WHERE college_junior_club_team = "Michigan Technological University (NCAA)" | CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR) | When michigan technological university (ncaa) is the college, junior, or club team what is the nationality? |
SELECT player FROM table_1965650_9 WHERE college_junior_club_team = "Kitchener Rangers (OHA)" | CREATE TABLE table_1965650_9 (player VARCHAR, college_junior_club_team VARCHAR) | When kitchener rangers (oha) is the college, junior, or club team team who is the player? |
SELECT COUNT(nationality) FROM table_1965650_9 WHERE college_junior_club_team = "Sault Ste. Marie Greyhounds (OHA)" | CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR) | When sault ste. marie greyhounds (oha) is the college, junior, or club team how many nationalities are there? |
SELECT position FROM table_1965650_9 WHERE college_junior_club_team = "Kitchener Rangers (OHA)" | CREATE TABLE table_1965650_9 (position VARCHAR, college_junior_club_team VARCHAR) | When kitchener rangers (oha) is the college, junior, or club team what is the position? |
SELECT COUNT(position) FROM table_1965650_6 WHERE player = "Denis Patry" | CREATE TABLE table_1965650_6 (position VARCHAR, player VARCHAR) | How many positions for denis patry? |
SELECT nationality FROM table_1965650_6 WHERE player = "Neil Korzack" | CREATE TABLE table_1965650_6 (nationality VARCHAR, player VARCHAR) | What nationality for neil korzack? |
SELECT institution FROM table_1969577_1 WHERE enrollment = 10000 | CREATE TABLE table_1969577_1 (institution VARCHAR, enrollment VARCHAR) | Name the college that has 10000 enrolled |
SELECT MAX(joined) FROM table_1969577_1 WHERE institution = "Molloy College" | CREATE TABLE table_1969577_1 (joined INTEGER, institution VARCHAR) | Name the most joined for molloy college |
SELECT COUNT(total) FROM table_19681738_1 WHERE hancock__number = 1394 | CREATE TABLE table_19681738_1 (total VARCHAR, hancock__number VARCHAR) | how many times was total considered when hancock # was 1394 |
SELECT COUNT(hancock__percentage) FROM table_19681738_1 WHERE starky__percentage = "20.96%" | CREATE TABLE table_19681738_1 (hancock__percentage VARCHAR, starky__percentage VARCHAR) | how many times was hancock % considered when starky % was 20.96% |
SELECT COUNT(county) FROM table_19681738_1 WHERE starky__percentage = "20.96%" | CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR) | How many times was country considered when starky % was 20.96% |
SELECT county FROM table_19681738_1 WHERE starky__percentage = "17.41%" | CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR) | which country did stary get 17.41% |
SELECT MIN(total) FROM table_19681738_1 WHERE county = "Gila" | CREATE TABLE table_19681738_1 (total INTEGER, county VARCHAR) | what is the least total in gila |
SELECT county FROM table_19681738_1 WHERE hancock__percentage = "3.09%" | CREATE TABLE table_19681738_1 (county VARCHAR, hancock__percentage VARCHAR) | where did hancock get 3.09% |
SELECT bbm FROM table_19662262_6 WHERE strike_rate = "42.2" | CREATE TABLE table_19662262_6 (bbm VARCHAR, strike_rate VARCHAR) | What is the BBM when the strike rate is 42.2? |
SELECT economy_rate FROM table_19662262_6 WHERE strike_rate = "54.0" | CREATE TABLE table_19662262_6 (economy_rate VARCHAR, strike_rate VARCHAR) | What is the economy when the strike rate is 54.0? |
SELECT COUNT(average) FROM table_19662262_6 WHERE economy_rate = "2.26" | CREATE TABLE table_19662262_6 (average VARCHAR, economy_rate VARCHAR) | How many averages are there when the economy rate is 2.26? |
SELECT COUNT(wickets) FROM table_19662262_6 WHERE strike_rate = "54.0" | CREATE TABLE table_19662262_6 (wickets VARCHAR, strike_rate VARCHAR) | How many figures for wickets when the strike rate is 54.0? |
SELECT strike_rate FROM table_19662262_6 WHERE wickets = 17 | CREATE TABLE table_19662262_6 (strike_rate VARCHAR, wickets VARCHAR) | What is the strike rate when there are 17 wickets? |
SELECT COUNT(area__km_2__) FROM table_1966992_1 WHERE census_2006_population = 151511 | CREATE TABLE table_1966992_1 (area__km_2__ VARCHAR, census_2006_population VARCHAR) | How many areas (km 2) have 151511 as the census 2006 population? |
SELECT lga_name FROM table_1966992_1 WHERE census_2006_population > 425208.9417698913 AND administrative_capital = "Port Harcourt" | CREATE TABLE table_1966992_1 (lga_name VARCHAR, census_2006_population VARCHAR, administrative_capital VARCHAR) | What is the LGA name where the 2006 census population is bigger than 425208.9417698913 and administrative capital is port harcourt? |
SELECT administrative_capital FROM table_1966992_1 WHERE lga_name = "Akuku-Toru" | CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, lga_name VARCHAR) | What is the administrative capital of LGA name Akuku-Toru? |
SELECT administrative_capital FROM table_1966992_1 WHERE census_2006_population = 249425 | CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, census_2006_population VARCHAR) | What is the administrative capital that has a 2006 census population of 249425? |
SELECT MAX(census_2006_population) FROM table_1966992_1 WHERE lga_name = "Opobo/Nkoro" | CREATE TABLE table_1966992_1 (census_2006_population INTEGER, lga_name VARCHAR) | What is the maximum 2006 census population of LGA name Opobo/Nkoro? |
SELECT MIN(enrollment) FROM table_1969577_3 | CREATE TABLE table_1969577_3 (enrollment INTEGER) | What's the minimal enrollment of any of the schools? |
SELECT MAX(founded) FROM table_1969577_3 WHERE nickname = "Rams" | CREATE TABLE table_1969577_3 (founded INTEGER, nickname VARCHAR) | When was the school whose students are nicknamed Rams founded? |
SELECT type FROM table_1969577_3 WHERE nickname = "Chargers" | CREATE TABLE table_1969577_3 (type VARCHAR, nickname VARCHAR) | What's the type of the school whose students are nicknamed Chargers? |
SELECT founded FROM table_1969577_3 WHERE location = "Philadelphia, Pennsylvania" | CREATE TABLE table_1969577_3 (founded VARCHAR, location VARCHAR) | When was the school in Philadelphia, Pennsylvania founded? |
SELECT MIN(total_votes) FROM table_19698421_1 WHERE year = "2005" | CREATE TABLE table_19698421_1 (total_votes INTEGER, year VARCHAR) | What was the total number of votes in the 2005 elections? |
SELECT COUNT(change__percentage_points_) FROM table_19698421_1 WHERE average_voters_per_candidate = 1423 | CREATE TABLE table_19698421_1 (change__percentage_points_ VARCHAR, average_voters_per_candidate VARCHAR) | How many elections had 1423 average voters per candidate? |
SELECT number_of_candidates FROM table_19698421_1 WHERE year = "1987" | CREATE TABLE table_19698421_1 (number_of_candidates VARCHAR, year VARCHAR) | How many candidates were there in the year of 1987? |
SELECT COUNT(modified_torque__lb_ft_) FROM table_19704392_1 WHERE standard_hp = "n/a" | CREATE TABLE table_19704392_1 (modified_torque__lb_ft_ VARCHAR, standard_hp VARCHAR) | What is the modified torque (lb/ft) when the standard hp n/a? |
SELECT MIN(rpm) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = "114" | CREATE TABLE table_19704392_1 (rpm INTEGER, standard_speed__6th_gear_ VARCHAR) | When the standard speed (6th gear) is 114, what is the minimum rpm? |
SELECT rpm FROM table_19704392_1 WHERE standard_speed__6th_gear_ = "88" | CREATE TABLE table_19704392_1 (rpm VARCHAR, standard_speed__6th_gear_ VARCHAR) | when standard speed (6th gear) is 88, what is the rpm? |
SELECT modified_speed__6th_gear_ FROM table_19704392_1 WHERE standard_torque__lb_ft_ = "10.3" AND modified_torque__lb_ft_ = "8.75" | CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ VARCHAR, standard_torque__lb_ft_ VARCHAR, modified_torque__lb_ft_ VARCHAR) | What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75? |
SELECT MAX(modified_speed__6th_gear_) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = "98" | CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ INTEGER, standard_speed__6th_gear_ VARCHAR) | when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98 |
SELECT modified_hp FROM table_19704392_1 WHERE standard_torque__lb_ft_ = "11.53" | CREATE TABLE table_19704392_1 (modified_hp VARCHAR, standard_torque__lb_ft_ VARCHAR) | When the standard torque (lb/ft) is 11.53 how much does more is the modified hp? |
SELECT assists FROM table_19722233_5 WHERE minutes = 195 | CREATE TABLE table_19722233_5 (assists VARCHAR, minutes VARCHAR) | how many assists did the player who played 195 minutes make |
SELECT MIN(blocks) FROM table_19722233_5 | CREATE TABLE table_19722233_5 (blocks INTEGER) | what is the lowest number of blocks |
SELECT MIN(points) FROM table_19722233_5 WHERE blocks = 21 | CREATE TABLE table_19722233_5 (points INTEGER, blocks VARCHAR) | what is the lowest points scored by a player who blocked 21 times |
SELECT blocks FROM table_19722233_5 WHERE player = "Debbie Black" | CREATE TABLE table_19722233_5 (blocks VARCHAR, player VARCHAR) | how many times did debbie black block |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.