context stringlengths 27 489 | question stringlengths 12 244 | answer stringlengths 18 557 |
|---|---|---|
CREATE TABLE table_14209455_1 (fri_30_may VARCHAR, mon_26_may VARCHAR) | what is the numbr for fri may 30 and mon may 26 is 19' 02.890 118.847mph? | SELECT fri_30_may FROM table_14209455_1 WHERE mon_26_may = "19' 02.890 118.847mph" |
CREATE TABLE table_14286908_1 (school VARCHAR, year_of_last_win VARCHAR) | What the name of the school where the last win in 2007-08? | SELECT school FROM table_14286908_1 WHERE year_of_last_win = "2007-08" |
CREATE TABLE table_14286908_1 (winners VARCHAR, school VARCHAR) | How many times was banbridge academy the winner? | SELECT COUNT(winners) FROM table_14286908_1 WHERE school = "Banbridge Academy" |
CREATE TABLE table_14286908_1 (school VARCHAR, finalists VARCHAR) | What are the names that had a finalist score of 2? | SELECT school FROM table_14286908_1 WHERE finalists = 2 |
CREATE TABLE table_14286908_1 (year_of_last_win VARCHAR, total_finals VARCHAR) | In what year was the total finals at 10? | SELECT year_of_last_win FROM table_14286908_1 WHERE total_finals = 10 |
CREATE TABLE table_14286908_1 (school VARCHAR, year_of_last_win VARCHAR) | What is the name of the school where the year of last win is 1985-86? | SELECT school FROM table_14286908_1 WHERE year_of_last_win = "1985-86" |
CREATE TABLE table_14286908_1 (total_finals VARCHAR, year_of_last_win VARCHAR) | How many total finals where there when the last win was in 2012-13? | SELECT total_finals FROM table_14286908_1 WHERE year_of_last_win = "2012-13" |
CREATE TABLE table_14323347_1 (played INTEGER) | Name the most played | SELECT MAX(played) FROM table_14323347_1 |
CREATE TABLE table_14323347_1 (points VARCHAR) | Name the total number of 1992-93 for 115 points | SELECT COUNT(1992 AS _93) FROM table_14323347_1 WHERE points = 115 |
CREATE TABLE table_14342480_6 (touchdowns INTEGER, field_goals VARCHAR) | Name the most touchdowns for field goals being 1 | SELECT MAX(touchdowns) FROM table_14342480_6 WHERE field_goals = 1 |
CREATE TABLE table_14342480_6 (starter VARCHAR, position VARCHAR) | Name the starter for position being left end | SELECT starter FROM table_14342480_6 WHERE position = "Left end" |
CREATE TABLE table_14342480_6 (touchdowns INTEGER) | Name the fewest touchdowns | SELECT MIN(touchdowns) FROM table_14342480_6 |
CREATE TABLE table_14342480_6 (extra_points INTEGER, position VARCHAR) | Name the most extra points for right tackle | SELECT MAX(extra_points) FROM table_14342480_6 WHERE position = "Right tackle" |
CREATE TABLE table_14342480_6 (points VARCHAR, field_goals VARCHAR) | Name the number of points for field goals being 1 | SELECT COUNT(points) FROM table_14342480_6 WHERE field_goals = 1 |
CREATE TABLE table_14342592_8 (touchdowns INTEGER, player VARCHAR) | Name the most touchdowns for becker | SELECT MAX(touchdowns) FROM table_14342592_8 WHERE player = "Becker" |
CREATE TABLE table_14342592_8 (extra_points VARCHAR, position VARCHAR) | Name the extra points for left guard | SELECT extra_points FROM table_14342592_8 WHERE position = "Left guard" |
CREATE TABLE table_14342592_8 (touchdowns INTEGER, points VARCHAR) | Name the least touchdowns for 11 points | SELECT MIN(touchdowns) FROM table_14342592_8 WHERE points = 11 |
CREATE TABLE table_14342592_8 (field_goals INTEGER) | Name the most field goals | SELECT MAX(field_goals) FROM table_14342592_8 |
CREATE TABLE table_14342592_8 (field_goals VARCHAR, extra_points VARCHAR) | Name the number of field goals for 19 extra points | SELECT COUNT(field_goals) FROM table_14342592_8 WHERE extra_points = 19 |
CREATE TABLE table_14342592_8 (touchdowns INTEGER, player VARCHAR) | Name the most touchdowns for norcross | SELECT MAX(touchdowns) FROM table_14342592_8 WHERE player = "Norcross" |
CREATE TABLE table_14345690_4 (famous_for VARCHAR, finished VARCHAR) | Name who was famous for finished in 9th | SELECT famous_for FROM table_14345690_4 WHERE finished = "9th" |
CREATE TABLE table_14345690_4 (finished VARCHAR, exited VARCHAR) | Name the finished for exited day 13 | SELECT finished FROM table_14345690_4 WHERE exited = "Day 13" |
CREATE TABLE table_14345690_4 (entered VARCHAR, famous_for VARCHAR) | Name the entered for famous for page 3 model | SELECT entered FROM table_14345690_4 WHERE famous_for = "Page 3 Model" |
CREATE TABLE table_14345690_4 (finished VARCHAR, celebrity VARCHAR) | Name the finished for kerry katona | SELECT COUNT(finished) FROM table_14345690_4 WHERE celebrity = "Kerry Katona" |
CREATE TABLE table_14345690_4 (celebrity VARCHAR, famous_for VARCHAR) | Name the number of celebrity for athlete | SELECT COUNT(celebrity) FROM table_14345690_4 WHERE famous_for = "Athlete" |
CREATE TABLE table_14346950_1 (teleplay_by VARCHAR, series__number VARCHAR) | What is the total number of values for "Teleplay by" category for series # 35? | SELECT COUNT(teleplay_by) FROM table_14346950_1 WHERE series__number = 35 |
CREATE TABLE table_14346950_1 (teleplay_by VARCHAR, directed_by VARCHAR) | Who is the teleplay by when the director is Rob Bailey? | SELECT teleplay_by FROM table_14346950_1 WHERE directed_by = "Rob Bailey" |
CREATE TABLE table_14346950_1 (season__number VARCHAR, teleplay_by VARCHAR, directed_by VARCHAR) | What is the season # for a teleplay by Richard Price and the director is Steve Shill? | SELECT season__number FROM table_14346950_1 WHERE teleplay_by = "Richard Price" AND directed_by = "Steve Shill" |
CREATE TABLE table_14433719_1 (time___et__ VARCHAR, opponent VARCHAR) | What time in eastern standard time was game held at denver broncos? | SELECT time___et__ FROM table_14433719_1 WHERE opponent = "at Denver Broncos" |
CREATE TABLE table_14465871_1 (unix_shell VARCHAR, powershell__cmdlet_ VARCHAR) | What are the names of all unix shell with PowerShell (Cmdlet) of select-string? | SELECT unix_shell FROM table_14465871_1 WHERE powershell__cmdlet_ = "Select-String" |
CREATE TABLE table_14465871_1 (cmdexe___commandcom VARCHAR, unix_shell VARCHAR) | What are all values of CMD.EXE / COMMAND.COM for the unix shell echo? | SELECT cmdexe___commandcom FROM table_14465871_1 WHERE unix_shell = "echo" |
CREATE TABLE table_14465871_1 (description VARCHAR, powershell__alias_ VARCHAR) | If Powershell (alias) is cpi, copy, cp, what are all corresponding descriptions. | SELECT description FROM table_14465871_1 WHERE powershell__alias_ = "cpi, copy, cp" |
CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, cmdexe___commandcom VARCHAR) | When the cmd.exe / command.com is type, what are all associated values for powershell (cmdlet)? | SELECT powershell__cmdlet_ FROM table_14465871_1 WHERE cmdexe___commandcom = "type" |
CREATE TABLE table_14465871_1 (powershell__cmdlet_ VARCHAR, unix_shell VARCHAR) | How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv? | SELECT COUNT(powershell__cmdlet_) FROM table_14465871_1 WHERE unix_shell = "env, export, set, setenv" |
CREATE TABLE table_1447085_1 (county VARCHAR, number_of_households VARCHAR) | What county has 2053 households? | SELECT county FROM table_1447085_1 WHERE number_of_households = 2053 |
CREATE TABLE table_1447085_1 (place VARCHAR, rank VARCHAR) | Which place has a rank of 71? | SELECT place FROM table_1447085_1 WHERE rank = 71 |
CREATE TABLE table_1447085_1 (county VARCHAR, median_house__hold_income VARCHAR) | Which county has a median household income of $98,090? | SELECT county FROM table_1447085_1 WHERE median_house__hold_income = "$98,090" |
CREATE TABLE table_1447085_1 (median_house__hold_income VARCHAR, place VARCHAR) | What is the median household income for Woodside? | SELECT median_house__hold_income FROM table_1447085_1 WHERE place = "Woodside" |
CREATE TABLE table_1447085_1 (per_capita_income VARCHAR, county VARCHAR) | What is the per capita income for Fayette County? | SELECT per_capita_income FROM table_1447085_1 WHERE county = "Fayette county" |
CREATE TABLE table_1449169_1 (rank VARCHAR, common VARCHAR) | Where does the common of Galliate rank in population? | SELECT rank FROM table_1449169_1 WHERE common = "Galliate" |
CREATE TABLE table_1449169_1 (common VARCHAR, area__km_2__ VARCHAR) | Which common has an area (km2) of 38.38? | SELECT common FROM table_1449169_1 WHERE area__km_2__ = "38.38" |
CREATE TABLE table_1449169_1 (common VARCHAR, area__km_2__ VARCHAR) | Which common has an area (km2) of 103.02? | SELECT common FROM table_1449169_1 WHERE area__km_2__ = "103.02" |
CREATE TABLE table_1449169_1 (altitude__mslm_ INTEGER) | What is the minimum altitude (mslm) in all the commons? | SELECT MIN(altitude__mslm_) FROM table_1449169_1 |
CREATE TABLE table_1449176_1 (rank VARCHAR, area__km_2__ VARCHAR) | What rank is the common with an area of 47.3 km^2? | SELECT rank FROM table_1449176_1 WHERE area__km_2__ = "47.3" |
CREATE TABLE table_1449176_1 (density__inhabitants_km_2__ VARCHAR, area__km_2__ VARCHAR) | What is the density of the common with an area of 20.4 km^2? | SELECT density__inhabitants_km_2__ FROM table_1449176_1 WHERE area__km_2__ = "20.4" |
CREATE TABLE table_1449176_1 (altitude__mslm_ VARCHAR, area__km_2__ VARCHAR) | How many altitudes does the common with an area of 130.7 km^2 have? | SELECT COUNT(altitude__mslm_) FROM table_1449176_1 WHERE area__km_2__ = "130.7" |
CREATE TABLE table_1449176_1 (population VARCHAR, common_of VARCHAR) | How may population figures are given for Settimo Torinese | SELECT COUNT(population) FROM table_1449176_1 WHERE common_of = "Settimo Torinese" |
CREATE TABLE table_1449176_1 (common_of VARCHAR, rank VARCHAR) | What is the name of the 9th ranked common? | SELECT common_of FROM table_1449176_1 WHERE rank = "9th" |
CREATE TABLE table_1449176_1 (density__inhabitants_km_2__ VARCHAR, common_of VARCHAR) | The common of Chieri has what population density? | SELECT density__inhabitants_km_2__ FROM table_1449176_1 WHERE common_of = "Chieri" |
CREATE TABLE table_145439_1 (economics VARCHAR, education VARCHAR) | what's the economics score with education being 92.0 | SELECT economics FROM table_145439_1 WHERE education = "92.0" |
CREATE TABLE table_145439_1 (health VARCHAR, justice VARCHAR) | what's the health score with justice being 80.7 | SELECT health FROM table_145439_1 WHERE justice = "80.7" |
CREATE TABLE table_145439_1 (rank VARCHAR, country VARCHAR) | what's the rank for iceland | SELECT rank FROM table_145439_1 WHERE country = "Iceland" |
CREATE TABLE table_145439_1 (country VARCHAR, health VARCHAR) | what's the country with health being 91.4 | SELECT country FROM table_145439_1 WHERE health = "91.4" |
CREATE TABLE table_145439_1 (economics VARCHAR, justice VARCHAR) | what's the economics score with justice being 90.8 | SELECT economics FROM table_145439_1 WHERE justice = "90.8" |
CREATE TABLE table_14608759_1 (attendance INTEGER, date VARCHAR) | On October 17, 1937 what was maximum number or attendants. | SELECT MAX(attendance) FROM table_14608759_1 WHERE date = "October 17, 1937" |
CREATE TABLE table_14608759_1 (opponent VARCHAR, week VARCHAR) | In week 9 who were the opponent? | SELECT opponent FROM table_14608759_1 WHERE week = 9 |
CREATE TABLE table_14608759_1 (result VARCHAR, week VARCHAR) | What are week 4 results? | SELECT result FROM table_14608759_1 WHERE week = 4 |
CREATE TABLE table_14624447_33 (number INTEGER, name VARCHAR) | What was Trevard Lindley's number? | SELECT MAX(number) FROM table_14624447_33 WHERE name = "Trevard Lindley" |
CREATE TABLE table_1473672_8 (player VARCHAR, nhl_team VARCHAR) | Name the player for chicago black hawks | SELECT player FROM table_1473672_8 WHERE nhl_team = "Chicago Black Hawks" |
CREATE TABLE table_1473672_8 (position VARCHAR, pick__number VARCHAR) | Name the position for pick number 128 | SELECT position FROM table_1473672_8 WHERE pick__number = 128 |
CREATE TABLE table_1473672_8 (college_junior_club_team VARCHAR, position VARCHAR) | Name the college/junior/club team for left wing | SELECT college_junior_club_team FROM table_1473672_8 WHERE position = "Left Wing" |
CREATE TABLE table_14850099_18 (burmese VARCHAR, english VARCHAR) | What is the Burmese term for Thursday? | SELECT burmese FROM table_14850099_18 WHERE english = "Thursday" |
CREATE TABLE table_14850099_18 (cardinal_direction VARCHAR, planet VARCHAR) | What is the cardinal direction associated with Venus? | SELECT cardinal_direction FROM table_14850099_18 WHERE planet = "Venus" |
CREATE TABLE table_14850099_18 (burmese VARCHAR, cardinal_direction VARCHAR) | What is the Burmese term associated with a cardinal direction of west? | SELECT burmese FROM table_14850099_18 WHERE cardinal_direction = "West" |
CREATE TABLE table_14850099_18 (planet VARCHAR, cardinal_direction VARCHAR) | What is the planet associated with the direction of south? | SELECT planet FROM table_14850099_18 WHERE cardinal_direction = "South" |
CREATE TABLE table_14871601_2 (scored INTEGER, points VARCHAR, team VARCHAR) | What is the value scored when there were 19 points for the team 3 de Febrero? | SELECT MAX(scored) FROM table_14871601_2 WHERE points = 19 AND team = "3 de Febrero" |
CREATE TABLE table_14871601_2 (losses INTEGER, scored VARCHAR) | What was the number of losses when the scored value was 25? | SELECT MAX(losses) FROM table_14871601_2 WHERE scored = 25 |
CREATE TABLE table_14882588_3 (yacht VARCHAR, sail_number VARCHAR) | What were all Yachts with a sail number of 6952? | SELECT yacht FROM table_14882588_3 WHERE sail_number = "6952" |
CREATE TABLE table_14882588_3 (yacht VARCHAR, position VARCHAR) | How many yachts had a position of 3? | SELECT COUNT(yacht) FROM table_14882588_3 WHERE position = 3 |
CREATE TABLE table_14882588_3 (sail_number VARCHAR, yacht VARCHAR) | What are all sail numbers for the yacht Yendys? | SELECT sail_number FROM table_14882588_3 WHERE yacht = "Yendys" |
CREATE TABLE table_14902507_2 (courtside_reporter VARCHAR, year VARCHAR) | Who is the courtside reporter for the year 2009-10? | SELECT courtside_reporter FROM table_14902507_2 WHERE year = "2009-10" |
CREATE TABLE table_14902507_2 (studio_host VARCHAR, year VARCHAR) | Who is the studio host for the year 2006-07? | SELECT studio_host FROM table_14902507_2 WHERE year = "2006-07" |
CREATE TABLE table_14902507_2 (studio_analysts VARCHAR, year VARCHAR) | Who are the studio analysts for the year 2008-09? | SELECT studio_analysts FROM table_14902507_2 WHERE year = "2008-09" |
CREATE TABLE table_14902507_2 (channel VARCHAR, year VARCHAR) | How many channels were the games shown on in 2001-02? | SELECT COUNT(channel) FROM table_14902507_2 WHERE year = "2001-02" |
CREATE TABLE table_14903081_1 (current_venue VARCHAR, tournament VARCHAR) | What is the current venue for the Miami Masters tournament? | SELECT current_venue FROM table_14903081_1 WHERE tournament = "Miami Masters" |
CREATE TABLE table_14903081_1 (country VARCHAR, location VARCHAR) | Rome is in which country? | SELECT country FROM table_14903081_1 WHERE location = "Rome" |
CREATE TABLE table_14903081_1 (tournament VARCHAR, current_venue VARCHAR) | How many tournaments have their current venue as the Lindner Family Tennis Center? | SELECT COUNT(tournament) FROM table_14903081_1 WHERE current_venue = "Lindner Family Tennis Center" |
CREATE TABLE table_14903081_1 (began INTEGER, country VARCHAR) | What year was the tournament first held in Italy? | SELECT MIN(began) FROM table_14903081_1 WHERE country = "Italy" |
CREATE TABLE table_14903081_1 (current_venue VARCHAR, location VARCHAR) | Which current venues location is Mason, Ohio? | SELECT current_venue FROM table_14903081_1 WHERE location = "Mason, Ohio" |
CREATE TABLE table_14903081_1 (tournament VARCHAR, current_venue VARCHAR) | Which tournaments current venue is the Madrid Arena? | SELECT tournament FROM table_14903081_1 WHERE current_venue = "Madrid Arena" |
CREATE TABLE table_14903841_1 (womens_doubles VARCHAR, year VARCHAR) | What are all values for Womens Doubles in the year 2000/2001? | SELECT womens_doubles FROM table_14903841_1 WHERE year = "2000/2001" |
CREATE TABLE table_14903841_1 (womens_doubles VARCHAR, year VARCHAR) | Who are all the womens doubles for the year 2008/2009? | SELECT womens_doubles FROM table_14903841_1 WHERE year = "2008/2009" |
CREATE TABLE table_14929574_3 (series__number INTEGER, us_viewers__million_ VARCHAR) | Which episode number drew in 3.84 million viewers in the U.S.? | SELECT MAX(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = "3.84" |
CREATE TABLE table_14929574_3 (us_viewers__million_ VARCHAR, directed_by VARCHAR) | How many viewers did the episode directed by David Nutter draw in? | SELECT us_viewers__million_ FROM table_14929574_3 WHERE directed_by = "David Nutter" |
CREATE TABLE table_14929574_3 (series__number VARCHAR, us_viewers__million_ VARCHAR) | Which episode number drew in 3.35 million viewers in the United States? | SELECT COUNT(series__number) FROM table_14929574_3 WHERE us_viewers__million_ = "3.35" |
CREATE TABLE table_14929574_3 (series__number INTEGER, directed_by VARCHAR) | Which episode number was directed by Bill Eagles? | SELECT MIN(series__number) FROM table_14929574_3 WHERE directed_by = "Bill Eagles" |
CREATE TABLE table_14937957_1 (masters VARCHAR, martial_art_style VARCHAR) | How many masters fought using a boxing style? | SELECT COUNT(masters) FROM table_14937957_1 WHERE martial_art_style = "Boxing" |
CREATE TABLE table_14937957_1 (original_airdate VARCHAR, episode__number VARCHAR) | How many times did episode 1.8 air? | SELECT COUNT(original_airdate) FROM table_14937957_1 WHERE episode__number = "1.8" |
CREATE TABLE table_14937957_1 (masters VARCHAR, martial_art_style VARCHAR) | Which masters fought in hapkido style? | SELECT masters FROM table_14937957_1 WHERE martial_art_style = "Hapkido" |
CREATE TABLE table_14937957_1 (original_airdate VARCHAR, martial_art_style VARCHAR) | When did the episode featuring a master using Brazilian jiu-jitsu air? | SELECT original_airdate FROM table_14937957_1 WHERE martial_art_style = "Brazilian Jiu-Jitsu" |
CREATE TABLE table_14937957_1 (country VARCHAR, city VARCHAR) | In which country is the city of Netanya? | SELECT country FROM table_14937957_1 WHERE city = "Netanya" |
CREATE TABLE table_14937957_1 (martial_art_style VARCHAR, city VARCHAR) | Which martial arts style was shown in Rio de Janeiro? | SELECT martial_art_style FROM table_14937957_1 WHERE city = "Rio de Janeiro" |
CREATE TABLE table_14941284_1 (week VARCHAR, attendance VARCHAR) | When 74804 is the attendance what week is it? | SELECT week FROM table_14941284_1 WHERE attendance = 74804 |
CREATE TABLE table_14941284_1 (opponent VARCHAR, date VARCHAR) | When it is October 25, 1981 who is the opponent? | SELECT opponent FROM table_14941284_1 WHERE date = "October 25, 1981" |
CREATE TABLE table_14941284_1 (record VARCHAR, week VARCHAR) | When it is week 2 what is the record? | SELECT record FROM table_14941284_1 WHERE week = 2 |
CREATE TABLE table_14941284_1 (game_site VARCHAR, date VARCHAR) | When it is October 18, 1981 where is the game site? | SELECT game_site FROM table_14941284_1 WHERE date = "October 18, 1981" |
CREATE TABLE table_14946657_3 (median_income VARCHAR, age_band VARCHAR) | Name the median income for age band being under 20 | SELECT median_income FROM table_14946657_3 WHERE age_band = "Under 20" |
CREATE TABLE table_1498589_1 (archive VARCHAR, run_time VARCHAR) | How many episodes in history have a running time of 24:06? | SELECT COUNT(archive) FROM table_1498589_1 WHERE run_time = "24:06" |
CREATE TABLE table_1499774_5 (southern_lakota VARCHAR, yankton_yanktonai VARCHAR) | Name the southern lakota for híŋhaŋna | SELECT southern_lakota FROM table_1499774_5 WHERE yankton_yanktonai = "híŋhaŋna" |
CREATE TABLE table_1499774_5 (santee_sisseton VARCHAR, yankton_yanktonai VARCHAR) | Name the santee sisseton for wičháša | SELECT santee_sisseton FROM table_1499774_5 WHERE yankton_yanktonai = "wičháša" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.