question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the latest episode number with the title of Jerusalem? | CREATE TABLE table_19517621_4 (episode__number INTEGER, title VARCHAR) | {
"SQL_Query": "SELECT MAX(episode__number) FROM table_19517621_4 WHERE title = \"Jerusalem\""
} |
What was the original air date of the episode written by Michelle Offen? | CREATE TABLE table_19517621_4 (original_airdate VARCHAR, written_by VARCHAR) | {
"SQL_Query": "SELECT original_airdate FROM table_19517621_4 WHERE written_by = \"Michelle Offen\""
} |
What is the title of the episode written by Vanessa Bates? | CREATE TABLE table_19517621_4 (title VARCHAR, written_by VARCHAR) | {
"SQL_Query": "SELECT title FROM table_19517621_4 WHERE written_by = \"Vanessa Bates\""
} |
What was the original air date for the episode Calle, The Transit of Venus? | CREATE TABLE table_19517621_4 (original_airdate VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT original_airdate FROM table_19517621_4 WHERE title = \"The Transit of Venus\""
} |
What is the completion percentage when yards per attempt was done by Steve McNair : 2003? | CREATE TABLE table_19517448_3 (completion_percentage VARCHAR, yards_per_attempt VARCHAR) | {
"SQL_Query": "SELECT completion_percentage FROM table_19517448_3 WHERE yards_per_attempt = \"Steve McNair : 2003\""
} |
What rank has a rating of 146.8? | CREATE TABLE table_19517448_3 (rank VARCHAR, rating VARCHAR) | {
"SQL_Query": "SELECT rank FROM table_19517448_3 WHERE rating = \"146.8\""
} |
How many yards per attempt were there when total yards were 513? | CREATE TABLE table_19517448_3 (yards_per_attempt VARCHAR, total_yards VARCHAR) | {
"SQL_Query": "SELECT yards_per_attempt FROM table_19517448_3 WHERE total_yards = \"513\""
} |
What is the series number for the episode written by Kristen Dunphy and David Ogilvy? | CREATE TABLE table_19517621_3 (series__number INTEGER, written_by VARCHAR) | {
"SQL_Query": "SELECT MAX(series__number) FROM table_19517621_3 WHERE written_by = \"Kristen Dunphy and David Ogilvy\""
} |
If the title if the Lost Boy, how many directors were there? | CREATE TABLE table_19517621_3 (directed_by VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT COUNT(directed_by) FROM table_19517621_3 WHERE title = \"The Lost Boy\""
} |
What is the title for the episode that written by Michael Miller? | CREATE TABLE table_19517621_3 (title VARCHAR, written_by VARCHAR) | {
"SQL_Query": "SELECT title FROM table_19517621_3 WHERE written_by = \"Michael Miller\""
} |
If the playoff berth is 17, what is the AFC championship number? | CREATE TABLE table_1952057_5 (afc_championships VARCHAR, playoff_berths VARCHAR) | {
"SQL_Query": "SELECT afc_championships FROM table_1952057_5 WHERE playoff_berths = 17"
} |
If the team in the New England Patriots, what is the super bowl championship minimum number? | CREATE TABLE table_1952057_5 (super_bowl_championships INTEGER, team VARCHAR) | {
"SQL_Query": "SELECT MIN(super_bowl_championships) FROM table_1952057_5 WHERE team = \"New England Patriots\""
} |
What is the maximum number of AFC championships? | CREATE TABLE table_1952057_5 (afc_championships INTEGER) | {
"SQL_Query": "SELECT MAX(afc_championships) FROM table_1952057_5"
} |
How many authors are present when the original was Carry On? | CREATE TABLE table_19523708_1 (authors VARCHAR, original VARCHAR) | {
"SQL_Query": "SELECT COUNT(authors) FROM table_19523708_1 WHERE original = \"Carry On\""
} |
What was the draw for the english meaning Eyes that Never Lie? | CREATE TABLE table_19523708_1 (draw VARCHAR, language VARCHAR, english_meaning VARCHAR) | {
"SQL_Query": "SELECT draw FROM table_19523708_1 WHERE language = \"English\" AND english_meaning = \"Eyes That Never Lie\""
} |
What is the highest draw represented? | CREATE TABLE table_19523708_1 (draw INTEGER) | {
"SQL_Query": "SELECT MAX(draw) FROM table_19523708_1"
} |
Who was the artist for the origin Shake it, Europe? | CREATE TABLE table_19523708_1 (artist VARCHAR, original VARCHAR) | {
"SQL_Query": "SELECT artist FROM table_19523708_1 WHERE original = \"Shake It, Europe\""
} |
What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich? | CREATE TABLE table_19526911_1 (arena__capacity_ VARCHAR, head_coach VARCHAR) | {
"SQL_Query": "SELECT COUNT(arena__capacity_) FROM table_19526911_1 WHERE head_coach = \"Yuriy Korotkevich\""
} |
What is the arena capacity of the arena in the town whose head coach is Roberto Serniotti? | CREATE TABLE table_19526911_1 (arena__capacity_ VARCHAR, head_coach VARCHAR) | {
"SQL_Query": "SELECT arena__capacity_ FROM table_19526911_1 WHERE head_coach = \"Roberto Serniotti\""
} |
Who are the foreign players on team/s that play in Moscow? | CREATE TABLE table_19526911_1 (foreign_players__max_2_ VARCHAR, town VARCHAR) | {
"SQL_Query": "SELECT foreign_players__max_2_ FROM table_19526911_1 WHERE town = \"Moscow\""
} |
What are the previous season ranks of teams whose website is www.novavolley.narod.ru? | CREATE TABLE table_19526911_1 (previous_season_2007_2008 VARCHAR, website VARCHAR) | {
"SQL_Query": "SELECT previous_season_2007_2008 FROM table_19526911_1 WHERE website = \"www.novavolley.narod.ru\""
} |
What are the minimum indoor results that have a 5 for inspection? | CREATE TABLE table_19534874_2 (indoor INTEGER, inspection VARCHAR) | {
"SQL_Query": "SELECT MIN(indoor) FROM table_19534874_2 WHERE inspection = 5"
} |
What was the maximum number in written when the standard was 2? | CREATE TABLE table_19534874_2 (written INTEGER, standard VARCHAR) | {
"SQL_Query": "SELECT MAX(written) FROM table_19534874_2 WHERE standard = 2"
} |
How many point categories are there for the 3 mile run? | CREATE TABLE table_19534874_2 (points VARCHAR, mile_run VARCHAR) | {
"SQL_Query": "SELECT COUNT(points) FROM table_19534874_2 WHERE mile_run = 3"
} |
What is the indoor number for the NJ wing/ | CREATE TABLE table_19534874_2 (indoor VARCHAR, wing VARCHAR) | {
"SQL_Query": "SELECT indoor FROM table_19534874_2 WHERE wing = \"NJ\""
} |
What is the indoor number for the NER region? | CREATE TABLE table_19534874_2 (indoor VARCHAR, region VARCHAR) | {
"SQL_Query": "SELECT COUNT(indoor) FROM table_19534874_2 WHERE region = \"NER\""
} |
What is the winning span of the name martin kaymer? | CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT winning_span FROM table_1953516_1 WHERE name = \"Martin Kaymer\""
} |
What is the winning span in the country of England with the name of paul casey? | CREATE TABLE table_1953516_1 (winning_span VARCHAR, country VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT winning_span FROM table_1953516_1 WHERE country = \"England\" AND name = \"Paul Casey\""
} |
What is the winning span for the name of bernard gallacher? | CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT winning_span FROM table_1953516_1 WHERE name = \"Bernard Gallacher\""
} |
What is the winning span with the rank of 5? | CREATE TABLE table_1953516_1 (winning_span VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT winning_span FROM table_1953516_1 WHERE rank = \"5\""
} |
How many scorecards are there for the match on October 28? | CREATE TABLE table_19576091_1 (scorecard VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT COUNT(scorecard) FROM table_19576091_1 WHERE date = \"October 28\""
} |
How many venues were there for the match on November 6? | CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT COUNT(venue) FROM table_19576091_1 WHERE date = \"November 6\""
} |
What was the venue for the match on October 10? | CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_19576091_1 WHERE date = \"October 10\""
} |
Who was the man of the match when the Rockets won by 9 wickets? | CREATE TABLE table_19576091_1 (man_of_the_match VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT man_of_the_match FROM table_19576091_1 WHERE result = \"Rockets won by 9 wickets\""
} |
Name the vacator for wisconsin 1st | CREATE TABLE table_1958768_3 (vacator VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT vacator FROM table_1958768_3 WHERE district = \"Wisconsin 1st\""
} |
Name the successor for pennsylvania 15th | CREATE TABLE table_1958768_3 (successor VARCHAR, district VARCHAR) | {
"SQL_Query": "SELECT successor FROM table_1958768_3 WHERE district = \"Pennsylvania 15th\""
} |
Name the circuit for #47 orbit racing | CREATE TABLE table_19598014_2 (circuit VARCHAR, challenge_winning_team VARCHAR) | {
"SQL_Query": "SELECT circuit FROM table_19598014_2 WHERE challenge_winning_team = \"#47 Orbit Racing\""
} |
Name the gt2 winning team where lmp2 winning team and butch leitzinger marino franchitti ben devlin | CREATE TABLE table_19598014_2 (gt2_winning_team VARCHAR, lmp2_winning_team VARCHAR) | {
"SQL_Query": "SELECT gt2_winning_team FROM table_19598014_2 WHERE lmp2_winning_team = \"Butch Leitzinger Marino Franchitti Ben Devlin\""
} |
Name the lmp 1 winning team for rnd being 2 and adrian fernández luis díaz | CREATE TABLE table_19598014_2 (lmp1_winning_team VARCHAR, rnd VARCHAR, lmp2_winning_team VARCHAR) | {
"SQL_Query": "SELECT lmp1_winning_team FROM table_19598014_2 WHERE rnd = 2 AND lmp2_winning_team = \"Adrian Fernández Luis Díaz\""
} |
Which capitals have an area of exactly 377930 square km? | CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR) | {
"SQL_Query": "SELECT capital FROM table_19605700_1 WHERE area_km² = 377930"
} |
What is the total number of capitals that have an area of exactly 1104 square km? | CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR) | {
"SQL_Query": "SELECT COUNT(capital) FROM table_19605700_1 WHERE area_km² = 1104"
} |
What capital has a population of exactly 1339724852? | CREATE TABLE table_19605700_1 (capital VARCHAR, population VARCHAR) | {
"SQL_Query": "SELECT capital FROM table_19605700_1 WHERE population = 1339724852"
} |
How many populations have a capital of Hong Kong? | CREATE TABLE table_19605700_1 (population VARCHAR, capital VARCHAR) | {
"SQL_Query": "SELECT COUNT(population) FROM table_19605700_1 WHERE capital = \"Hong Kong\""
} |
What are all values for the male population in 2001 with a growth rate in 1991-01 of 36.16? | CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, growth_rate_1991_01 VARCHAR) | {
"SQL_Query": "SELECT male_population_2001 FROM table_19589113_5 WHERE growth_rate_1991_01 = \"36.16\""
} |
What is the least value for total population in 2001 with a growth rate in 1991-01 of 33.08? | CREATE TABLE table_19589113_5 (total_population_2001 INTEGER, growth_rate_1991_01 VARCHAR) | {
"SQL_Query": "SELECT MIN(total_population_2001) FROM table_19589113_5 WHERE growth_rate_1991_01 = \"33.08\""
} |
What are all values for male population in 2001 when sex ratio in 1991 is 896? | CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, sex_ratio_‡_1991 VARCHAR) | {
"SQL_Query": "SELECT male_population_2001 FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 896"
} |
What is every growth rate in 1991-2001 when sex ratio in 2001 is 937? | CREATE TABLE table_19589113_5 (growth_rate_1991_01 VARCHAR, sex_ratio_‡_2001 VARCHAR) | {
"SQL_Query": "SELECT growth_rate_1991_01 FROM table_19589113_5 WHERE sex_ratio_‡_2001 = 937"
} |
What districts of Bihar have a sex ratio in 1991 of 864? | CREATE TABLE table_19589113_5 (districts_of_bihar VARCHAR, sex_ratio_‡_1991 VARCHAR) | {
"SQL_Query": "SELECT districts_of_bihar FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 864"
} |
How many marriages between women have % same-sex marriages of 1.06? | CREATE TABLE table_19614212_1 (marriages_between_women VARCHAR, _percentage_same_sex_marriages VARCHAR) | {
"SQL_Query": "SELECT marriages_between_women FROM table_19614212_1 WHERE _percentage_same_sex_marriages = \"1.06\""
} |
What is the % of same-sex marriages for the year of 2011? | CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT _percentage_same_sex_marriages FROM table_19614212_1 WHERE year = \"2011\""
} |
How many % same-sex marriages are there for the year 2008? | CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE year = \"2008\""
} |
How many % same-sex marriages are marriages between men for 923? | CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, marriages_between_men VARCHAR) | {
"SQL_Query": "SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE marriages_between_men = 923"
} |
When was the episode number 2 originally aired? | CREATE TABLE table_19632728_1 (original_air_date VARCHAR, episode__number VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_19632728_1 WHERE episode__number = 2"
} |
What was the highest season number? | CREATE TABLE table_19632728_1 (season__number INTEGER) | {
"SQL_Query": "SELECT MAX(season__number) FROM table_19632728_1"
} |
What was the margin of victory of Steve Stricker as a runner up? | CREATE TABLE table_19630743_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | {
"SQL_Query": "SELECT margin_of_victory FROM table_19630743_2 WHERE runner_s__up = \"Steve Stricker\""
} |
How many to par has the winning score of 69-66-68=203. | CREATE TABLE table_19630743_2 (to_par VARCHAR, winning_score VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_19630743_2 WHERE winning_score = 69 - 66 - 68 = 203"
} |
What is the minimum number of the bmw championship tournament. | CREATE TABLE table_19630743_2 (no INTEGER, tournament VARCHAR) | {
"SQL_Query": "SELECT MIN(no) FROM table_19630743_2 WHERE tournament = \"BMW Championship\""
} |
What is the total number of John Merrick as a runner up? | CREATE TABLE table_19630743_2 (no VARCHAR, runner_s__up VARCHAR) | {
"SQL_Query": "SELECT COUNT(no) FROM table_19630743_2 WHERE runner_s__up = \"John Merrick\""
} |
What horses does r. a. Scott own? | CREATE TABLE table_19624708_1 (horse VARCHAR, owner VARCHAR) | {
"SQL_Query": "SELECT horse FROM table_19624708_1 WHERE owner = \"R. A. Scott\""
} |
How many numbers have sp of 20/1 and a finishing position of fence 19? | CREATE TABLE table_19624708_1 (number VARCHAR, sp VARCHAR, finishing_position VARCHAR) | {
"SQL_Query": "SELECT COUNT(number) FROM table_19624708_1 WHERE sp = \"20/1\" AND finishing_position = \"Fence 19\""
} |
Which handicap has the horse knowhere? | CREATE TABLE table_19624708_1 (handicap__st_lb_ VARCHAR, horse VARCHAR) | {
"SQL_Query": "SELECT handicap__st_lb_ FROM table_19624708_1 WHERE horse = \"Knowhere\""
} |
What colors does David Langdon use? | CREATE TABLE table_19624708_1 (colours VARCHAR, owner VARCHAR) | {
"SQL_Query": "SELECT colours FROM table_19624708_1 WHERE owner = \"David Langdon\""
} |
If the film title nominated is Baran, what was the result? | CREATE TABLE table_19625976_1 (result VARCHAR, film_title_used_in_nomination VARCHAR) | {
"SQL_Query": "SELECT result FROM table_19625976_1 WHERE film_title_used_in_nomination = \"Baran\""
} |
For the Persian Title میم مثل مادر, what were the results? | CREATE TABLE table_19625976_1 (result VARCHAR, persian_title VARCHAR) | {
"SQL_Query": "SELECT result FROM table_19625976_1 WHERE persian_title = \"میم مثل مادر\""
} |
For the Persian title گبه, What was the film title used for the nomination? | CREATE TABLE table_19625976_1 (film_title_used_in_nomination VARCHAR, persian_title VARCHAR) | {
"SQL_Query": "SELECT film_title_used_in_nomination FROM table_19625976_1 WHERE persian_title = \"گبه\""
} |
What year had an Allison B400R transmission and a model of BRT? | CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, model VARCHAR) | {
"SQL_Query": "SELECT year FROM table_19643196_1 WHERE transmission = \"Allison B400R\" AND model = \"BRT\""
} |
What is the fleet number when the length (ft) is 30? | CREATE TABLE table_19643196_1 (fleet__number VARCHAR, length__ft_ VARCHAR) | {
"SQL_Query": "SELECT fleet__number FROM table_19643196_1 WHERE length__ft_ = 30"
} |
What is the fleet number when the transmission is Voith D863.4 and the engine is Cummins ISL? | CREATE TABLE table_19643196_1 (fleet__number VARCHAR, transmission VARCHAR, engine VARCHAR) | {
"SQL_Query": "SELECT fleet__number FROM table_19643196_1 WHERE transmission = \"Voith D863.4\" AND engine = \"Cummins ISL\""
} |
Which year had a transmission of Voith D863.4 and a Cummins ISM engine? | CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, engine VARCHAR) | {
"SQL_Query": "SELECT year FROM table_19643196_1 WHERE transmission = \"Voith D863.4\" AND engine = \"Cummins ISM\""
} |
Name the college/junior club team for ian turnbull | CREATE TABLE table_1965650_1 (college_junior_club_team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT college_junior_club_team FROM table_1965650_1 WHERE player = \"Ian Turnbull\""
} |
Name the position for nhl team being los angeles kings | CREATE TABLE table_1965650_3 (position VARCHAR, nhl_team VARCHAR) | {
"SQL_Query": "SELECT position FROM table_1965650_3 WHERE nhl_team = \"Los Angeles Kings\""
} |
Name the nhl times for jeff jacques | CREATE TABLE table_1965650_3 (nhl_team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT nhl_team FROM table_1965650_3 WHERE player = \"Jeff Jacques\""
} |
Name the college/junior club team for john campbell | CREATE TABLE table_1965650_3 (college_junior_club_team VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT college_junior_club_team FROM table_1965650_3 WHERE player = \"John Campbell\""
} |
Name the least pick # for doug gibson | CREATE TABLE table_1965650_3 (pick__number INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MIN(pick__number) FROM table_1965650_3 WHERE player = \"Doug Gibson\""
} |
How many nationalities does Tom Colley have? | CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT COUNT(nationality) FROM table_1965650_4 WHERE player = \"Tom Colley\""
} |
What's the NHL team that drafted the player from Sudbury Wolves (OHA)? | CREATE TABLE table_1965650_4 (nhl_team VARCHAR, college_junior_club_team VARCHAR) | {
"SQL_Query": "SELECT nhl_team FROM table_1965650_4 WHERE college_junior_club_team = \"Sudbury Wolves (OHA)\""
} |
What's the number of positions of the player playing in Minnesota North Stars? | CREATE TABLE table_1965650_4 (position VARCHAR, nhl_team VARCHAR) | {
"SQL_Query": "SELECT COUNT(position) FROM table_1965650_4 WHERE nhl_team = \"Minnesota North Stars\""
} |
What's the smallest pick number of a player playing in Minnesota North Stars? | CREATE TABLE table_1965650_4 (pick__number INTEGER, nhl_team VARCHAR) | {
"SQL_Query": "SELECT MIN(pick__number) FROM table_1965650_4 WHERE nhl_team = \"Minnesota North Stars\""
} |
What's the nationality of the player coming from Edmonton Oil Kings (WCHL)? | CREATE TABLE table_1965650_4 (nationality VARCHAR, college_junior_club_team VARCHAR) | {
"SQL_Query": "SELECT nationality FROM table_1965650_4 WHERE college_junior_club_team = \"Edmonton Oil Kings (WCHL)\""
} |
What's Steve Langdon's naitionality? | CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT nationality FROM table_1965650_4 WHERE player = \"Steve Langdon\""
} |
When michigan technological university (ncaa) is the college, junior, or club team what is the nationality? | CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR) | {
"SQL_Query": "SELECT nationality FROM table_1965650_9 WHERE college_junior_club_team = \"Michigan Technological University (NCAA)\""
} |
When kitchener rangers (oha) is the college, junior, or club team team who is the player? | CREATE TABLE table_1965650_9 (player VARCHAR, college_junior_club_team VARCHAR) | {
"SQL_Query": "SELECT player FROM table_1965650_9 WHERE college_junior_club_team = \"Kitchener Rangers (OHA)\""
} |
When sault ste. marie greyhounds (oha) is the college, junior, or club team how many nationalities are there? | CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR) | {
"SQL_Query": "SELECT COUNT(nationality) FROM table_1965650_9 WHERE college_junior_club_team = \"Sault Ste. Marie Greyhounds (OHA)\""
} |
When kitchener rangers (oha) is the college, junior, or club team what is the position? | CREATE TABLE table_1965650_9 (position VARCHAR, college_junior_club_team VARCHAR) | {
"SQL_Query": "SELECT position FROM table_1965650_9 WHERE college_junior_club_team = \"Kitchener Rangers (OHA)\""
} |
How many positions for denis patry? | CREATE TABLE table_1965650_6 (position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT COUNT(position) FROM table_1965650_6 WHERE player = \"Denis Patry\""
} |
What nationality for neil korzack? | CREATE TABLE table_1965650_6 (nationality VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT nationality FROM table_1965650_6 WHERE player = \"Neil Korzack\""
} |
Name the college that has 10000 enrolled | CREATE TABLE table_1969577_1 (institution VARCHAR, enrollment VARCHAR) | {
"SQL_Query": "SELECT institution FROM table_1969577_1 WHERE enrollment = 10000"
} |
Name the most joined for molloy college | CREATE TABLE table_1969577_1 (joined INTEGER, institution VARCHAR) | {
"SQL_Query": "SELECT MAX(joined) FROM table_1969577_1 WHERE institution = \"Molloy College\""
} |
how many times was total considered when hancock # was 1394 | CREATE TABLE table_19681738_1 (total VARCHAR, hancock__number VARCHAR) | {
"SQL_Query": "SELECT COUNT(total) FROM table_19681738_1 WHERE hancock__number = 1394"
} |
how many times was hancock % considered when starky % was 20.96% | CREATE TABLE table_19681738_1 (hancock__percentage VARCHAR, starky__percentage VARCHAR) | {
"SQL_Query": "SELECT COUNT(hancock__percentage) FROM table_19681738_1 WHERE starky__percentage = \"20.96%\""
} |
How many times was country considered when starky % was 20.96% | CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR) | {
"SQL_Query": "SELECT COUNT(county) FROM table_19681738_1 WHERE starky__percentage = \"20.96%\""
} |
which country did stary get 17.41% | CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR) | {
"SQL_Query": "SELECT county FROM table_19681738_1 WHERE starky__percentage = \"17.41%\""
} |
what is the least total in gila | CREATE TABLE table_19681738_1 (total INTEGER, county VARCHAR) | {
"SQL_Query": "SELECT MIN(total) FROM table_19681738_1 WHERE county = \"Gila\""
} |
where did hancock get 3.09% | CREATE TABLE table_19681738_1 (county VARCHAR, hancock__percentage VARCHAR) | {
"SQL_Query": "SELECT county FROM table_19681738_1 WHERE hancock__percentage = \"3.09%\""
} |
What is the BBM when the strike rate is 42.2? | CREATE TABLE table_19662262_6 (bbm VARCHAR, strike_rate VARCHAR) | {
"SQL_Query": "SELECT bbm FROM table_19662262_6 WHERE strike_rate = \"42.2\""
} |
What is the economy when the strike rate is 54.0? | CREATE TABLE table_19662262_6 (economy_rate VARCHAR, strike_rate VARCHAR) | {
"SQL_Query": "SELECT economy_rate FROM table_19662262_6 WHERE strike_rate = \"54.0\""
} |
How many averages are there when the economy rate is 2.26? | CREATE TABLE table_19662262_6 (average VARCHAR, economy_rate VARCHAR) | {
"SQL_Query": "SELECT COUNT(average) FROM table_19662262_6 WHERE economy_rate = \"2.26\""
} |
How many figures for wickets when the strike rate is 54.0? | CREATE TABLE table_19662262_6 (wickets VARCHAR, strike_rate VARCHAR) | {
"SQL_Query": "SELECT COUNT(wickets) FROM table_19662262_6 WHERE strike_rate = \"54.0\""
} |
What is the strike rate when there are 17 wickets? | CREATE TABLE table_19662262_6 (strike_rate VARCHAR, wickets VARCHAR) | {
"SQL_Query": "SELECT strike_rate FROM table_19662262_6 WHERE wickets = 17"
} |
How many areas (km 2) have 151511 as the census 2006 population? | CREATE TABLE table_1966992_1 (area__km_2__ VARCHAR, census_2006_population VARCHAR) | {
"SQL_Query": "SELECT COUNT(area__km_2__) FROM table_1966992_1 WHERE census_2006_population = 151511"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.