Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
19,100 | <question>: What is the amount of trees, that require replacement when the district is motovilikhinsky? <context>: CREATE TABLE table_10342194_3 (amount_of_trees VARCHAR, _that_require_replacement VARCHAR, district VARCHAR) | SELECT amount_of_trees, _that_require_replacement FROM table_10342194_3 WHERE district = "Motovilikhinsky" |
19,101 | <question>: What is the total amount of trees when district is leninsky? <context>: CREATE TABLE table_10342194_3 (total_amount_of_trees INTEGER, district VARCHAR) | SELECT MAX(total_amount_of_trees) FROM table_10342194_3 WHERE district = "Leninsky" |
19,102 | <question>: When the value of "since beginning of big 12" is synonymous with its' category, what are the in Ames values? <context>: CREATE TABLE table_10429820_13 (in_ames VARCHAR) | SELECT in_ames FROM table_10429820_13 WHERE "since_beginning_of_big_12" = "since_beginning_of_big_12" |
19,103 | <question>: what's the u.s. open cup status for regular season of 4th, atlantic division <context>: CREATE TABLE table_1046170_5 (us_open_cup VARCHAR, regular_season VARCHAR) | SELECT us_open_cup FROM table_1046170_5 WHERE regular_season = "4th, Atlantic division" |
19,104 | <question>: how many division did not qualify for u.s. open cup in 2003 <context>: CREATE TABLE table_1046170_5 (division VARCHAR, us_open_cup VARCHAR, year VARCHAR) | SELECT division FROM table_1046170_5 WHERE us_open_cup = "Did Not Qualify" AND year = 2003 |
19,105 | <question>: which round is u.s. open cup division semifinals <context>: CREATE TABLE table_1046170_5 (us_open_cup VARCHAR, playoffs VARCHAR) | SELECT us_open_cup FROM table_1046170_5 WHERE playoffs = "division Semifinals" |
19,106 | <question>: what are all the playoffs for regular season is 1st, atlantic division <context>: CREATE TABLE table_1046170_5 (playoffs VARCHAR, regular_season VARCHAR) | SELECT playoffs FROM table_1046170_5 WHERE regular_season = "1st, Atlantic division" |
19,107 | <question>: what are all the playoffs for u.s. open cup in 1st round <context>: CREATE TABLE table_1046170_5 (playoffs VARCHAR, us_open_cup VARCHAR) | SELECT playoffs FROM table_1046170_5 WHERE us_open_cup = "1st Round" |
19,108 | <question>: what is the total number of 2nd leg where aggregate is 7-2 <context>: CREATE TABLE table_1061075_1 (aggregate VARCHAR) | SELECT COUNT(2 AS nd_leg) FROM table_1061075_1 WHERE aggregate = "7-2" |
19,109 | <question>: what's the competition where aggregate is 4–7 <context>: CREATE TABLE table_1061075_1 (competition VARCHAR, aggregate VARCHAR) | SELECT competition FROM table_1061075_1 WHERE aggregate = "4–7" |
19,110 | <question>: what is the total number of round where opponents is haugar <context>: CREATE TABLE table_1061075_1 (round VARCHAR, opponents VARCHAR) | SELECT COUNT(round) FROM table_1061075_1 WHERE opponents = "Haugar" |
19,111 | <question>: what's the 1st leg where opponents is galatasaray <context>: CREATE TABLE table_1061075_1 (opponents VARCHAR) | SELECT 1 AS st_leg FROM table_1061075_1 WHERE opponents = "Galatasaray" |
19,112 | <question>: What is the highest Rd that Tom Sneva had the pole position in? <context>: CREATE TABLE table_10706961_2 (rd INTEGER, pole_position VARCHAR) | SELECT MAX(rd) FROM table_10706961_2 WHERE pole_position = "Tom Sneva" |
19,113 | <question>: How many winning drivers were there in the race that had a fastest lap time of 56.920? <context>: CREATE TABLE table_10706961_2 (winning_driver VARCHAR, fastest_lap VARCHAR) | SELECT COUNT(winning_driver) FROM table_10706961_2 WHERE fastest_lap = "56.920" |
19,114 | <question>: How many reports are there in the race that Forsythe Racing won and Teo Fabi had the pole position in? <context>: CREATE TABLE table_10706961_2 (report VARCHAR, winning_team VARCHAR, pole_position VARCHAR) | SELECT COUNT(report) FROM table_10706961_2 WHERE winning_team = "Forsythe Racing" AND pole_position = "Teo Fabi" |
19,115 | <question>: Which Rd took place at the Indianapolis 500? <context>: CREATE TABLE table_10706961_2 (rd VARCHAR, name VARCHAR) | SELECT rd FROM table_10706961_2 WHERE name = "Indianapolis 500" |
19,116 | <question>: Which teams won when Bobby Rahal was their winning driver? <context>: CREATE TABLE table_10706961_2 (winning_team VARCHAR, winning_driver VARCHAR) | SELECT winning_team FROM table_10706961_2 WHERE winning_driver = "Bobby Rahal" |
19,117 | <question>: What was the fastest lap time in the Escort Radar Warning 200? <context>: CREATE TABLE table_10706961_2 (fastest_lap VARCHAR, name VARCHAR) | SELECT fastest_lap FROM table_10706961_2 WHERE name = "Escort Radar Warning 200" |
19,118 | <question>: What report was there for the porsche north america? <context>: CREATE TABLE table_10707176_2 (report VARCHAR, winning_team VARCHAR) | SELECT report FROM table_10707176_2 WHERE winning_team = "Porsche North America" |
19,119 | <question>: What rnds were there for the phoenix international raceway? <context>: CREATE TABLE table_10707176_2 (rnd VARCHAR, circuit VARCHAR) | SELECT rnd FROM table_10707176_2 WHERE circuit = "Phoenix International Raceway" |
19,120 | <question>: Who was the pole position for the rnd equalling 12? <context>: CREATE TABLE table_10707176_2 (pole_position VARCHAR, rnd VARCHAR) | SELECT pole_position FROM table_10707176_2 WHERE rnd = "12" |
19,121 | <question>: How many reports were the for the cleveland burke lakefront airport circut? <context>: CREATE TABLE table_10707176_2 (report VARCHAR, circuit VARCHAR) | SELECT COUNT(report) FROM table_10707176_2 WHERE circuit = "Cleveland Burke Lakefront Airport" |
19,122 | <question>: How many winning drivers were the for the rnd equalling 5? <context>: CREATE TABLE table_10707176_2 (winning_driver VARCHAR, rnd VARCHAR) | SELECT COUNT(winning_driver) FROM table_10707176_2 WHERE rnd = "5" |
19,123 | <question>: The race tony bettenhausen 200 has what smallest rd? <context>: CREATE TABLE table_10706879_3 (rd INTEGER, name VARCHAR) | SELECT MIN(rd) FROM table_10706879_3 WHERE name = "Tony Bettenhausen 200" |
19,124 | <question>: The winning team of the race, los angeles times 500 is who? <context>: CREATE TABLE table_10706879_3 (winning_team VARCHAR, name VARCHAR) | SELECT winning_team FROM table_10706879_3 WHERE name = "Los Angeles Times 500" |
19,125 | <question>: How many winning drivers in the kraco twin 125 (r2) race were there? <context>: CREATE TABLE table_10706879_3 (winning_driver VARCHAR, name VARCHAR) | SELECT COUNT(winning_driver) FROM table_10706879_3 WHERE name = "Kraco Twin 125 (R2)" |
19,126 | <question>: What are the races that johnny rutherford has won? <context>: CREATE TABLE table_10706879_3 (name VARCHAR, winning_driver VARCHAR) | SELECT name FROM table_10706879_3 WHERE winning_driver = "Johnny Rutherford" |
19,127 | <question>: How many fastest laps were there for a rd that equals 10? <context>: CREATE TABLE table_10706879_3 (fastest_lap VARCHAR, rd VARCHAR) | SELECT COUNT(fastest_lap) FROM table_10706879_3 WHERE rd = 10 |
19,128 | <question>: What is the license award date for North East England? <context>: CREATE TABLE table_10712301_5 (licence_award_date VARCHAR, region VARCHAR) | SELECT licence_award_date FROM table_10712301_5 WHERE region = "North East England" |
19,129 | <question>: What is the percentage of growth in 2000-2008 in ethiopia? <context>: CREATE TABLE table_10733530_3 (_percentage_growth__2000_2008_ VARCHAR, nation VARCHAR) | SELECT _percentage_growth__2000_2008_ FROM table_10733530_3 WHERE nation = "Ethiopia" |
19,130 | <question>: Name the total number of percentage growth 2000-2008 of uganda? <context>: CREATE TABLE table_10733530_3 (_percentage_growth__2000_2008_ VARCHAR, nation VARCHAR) | SELECT COUNT(_percentage_growth__2000_2008_) FROM table_10733530_3 WHERE nation = "Uganda" |
19,131 | <question>: What is the maximum percentage grown 2000-2008 in burundi <context>: CREATE TABLE table_10733530_3 (_percentage_growth__2000_2008_ INTEGER, nation VARCHAR) | SELECT MAX(_percentage_growth__2000_2008_) FROM table_10733530_3 WHERE nation = "Burundi" |
19,132 | <question>: Provide me with the names of all the villages (German) that has 76.3% of Slovenes in 1951. <context>: CREATE TABLE table_10798421_1 (village__german_ VARCHAR, percent_of_slovenes_1951 VARCHAR) | SELECT village__german_ FROM table_10798421_1 WHERE percent_of_slovenes_1951 = "76.3%" |
19,133 | <question>: Give me the minimum number of people in 1991 with 92.5% of Slovenes in 1991. <context>: CREATE TABLE table_10798421_1 (number_of_people_1991 INTEGER, percent_of_slovenes_1991 VARCHAR) | SELECT MIN(number_of_people_1991) FROM table_10798421_1 WHERE percent_of_slovenes_1991 = "92.5%" |
19,134 | <question>: Provide me with the name of all the village (German) that are part of the village (Slovenian) with sele srednji kot. <context>: CREATE TABLE table_10798421_1 (village__german_ VARCHAR, village__slovenian_ VARCHAR) | SELECT village__german_ FROM table_10798421_1 WHERE village__slovenian_ = "Sele Srednji Kot" |
19,135 | <question>: Provide me with the name of all the village (German) that are part of the village (Slovenian) with sele borovnica. <context>: CREATE TABLE table_10798421_1 (village__german_ VARCHAR, village__slovenian_ VARCHAR) | SELECT village__german_ FROM table_10798421_1 WHERE village__slovenian_ = "Sele Borovnica" |
19,136 | <question>: Provide me with the name of the village (German) where there is 96.9% Slovenes in 1951. <context>: CREATE TABLE table_10798421_1 (village__german_ VARCHAR, percent_of_slovenes_1951 VARCHAR) | SELECT village__german_ FROM table_10798421_1 WHERE percent_of_slovenes_1951 = "96.9%" |
19,137 | <question>: What was the score of the game on November 12? <context>: CREATE TABLE table_10812293_3 (score VARCHAR, date VARCHAR) | SELECT score FROM table_10812293_3 WHERE date = "November 12" |
19,138 | <question>: Who had high assists when they played against San Antonio? <context>: CREATE TABLE table_10812293_3 (high_assists VARCHAR, team VARCHAR) | SELECT high_assists FROM table_10812293_3 WHERE team = "San Antonio" |
19,139 | <question>: Who scored the most points in game 4? <context>: CREATE TABLE table_10812293_3 (high_points VARCHAR, game VARCHAR) | SELECT high_points FROM table_10812293_3 WHERE game = 4 |
19,140 | <question>: Where was the game on November 20? <context>: CREATE TABLE table_10812293_3 (location_attendance VARCHAR, date VARCHAR) | SELECT location_attendance FROM table_10812293_3 WHERE date = "November 20" |
19,141 | <question>: The canadian airdate of 11 february 2008 applied to what series number? <context>: CREATE TABLE table_10935205_1 (no_in_series VARCHAR, canadian_airdate VARCHAR) | SELECT COUNT(no_in_series) FROM table_10935205_1 WHERE canadian_airdate = "11 February 2008" |
19,142 | <question>: The U.S. airdate of 4 april 2008 had a production code of what? <context>: CREATE TABLE table_10935205_1 (production_code INTEGER, us_airdate VARCHAR) | SELECT MAX(production_code) FROM table_10935205_1 WHERE us_airdate = "4 April 2008" |
19,143 | <question>: The U.S. airdate of 8 august 2008 also had canadian airdates of what? <context>: CREATE TABLE table_10935205_1 (canadian_airdate VARCHAR, us_airdate VARCHAR) | SELECT canadian_airdate FROM table_10935205_1 WHERE us_airdate = "8 August 2008" |
19,144 | <question>: The canadian airdate of 17 march 2008 had how many numbers in the season? <context>: CREATE TABLE table_10935205_1 (no_in_season VARCHAR, canadian_airdate VARCHAR) | SELECT COUNT(no_in_season) FROM table_10935205_1 WHERE canadian_airdate = "17 March 2008" |
19,145 | <question>: For the episode(s) aired in the U.S. on 4 april 2008, what were the names? <context>: CREATE TABLE table_10935205_1 (title VARCHAR, us_airdate VARCHAR) | SELECT title FROM table_10935205_1 WHERE us_airdate = "4 April 2008" |
19,146 | <question>: Which player from the 2004 CFL draft attended Wilfrid Laurier? <context>: CREATE TABLE table_10975034_2 (player VARCHAR, college VARCHAR) | SELECT player FROM table_10975034_2 WHERE college = "Wilfrid Laurier" |
19,147 | <question>: What position does Christian Leibl-Cote play? <context>: CREATE TABLE table_10975034_2 (position VARCHAR, player VARCHAR) | SELECT position FROM table_10975034_2 WHERE player = "Christian Leibl-Cote" |
19,148 | <question>: What is the pick number for Northwestern college? <context>: CREATE TABLE table_10975034_2 (pick__number INTEGER, college VARCHAR) | SELECT MAX(pick__number) FROM table_10975034_2 WHERE college = "Northwestern" |
19,149 | <question>: What is the number of the city district of stadtteil where foreigners are 5.162? <context>: CREATE TABLE table_10992_3 (city_district__stadtteil_ VARCHAR, foreign_nationals VARCHAR) | SELECT COUNT(city_district__stadtteil_) FROM table_10992_3 WHERE foreign_nationals = "5.162" |
19,150 | <question>: What is the city where the number is 47? <context>: CREATE TABLE table_10992_3 (city_district__stadtteil_ VARCHAR, no VARCHAR) | SELECT city_district__stadtteil_ FROM table_10992_3 WHERE no = "47" |
19,151 | <question>: Which leagues have Raiders as their mascot? <context>: CREATE TABLE table_11044765_1 (league VARCHAR, mascot VARCHAR) | SELECT league FROM table_11044765_1 WHERE mascot = "Raiders" |
19,152 | <question>: Which leagues is the Galena school in? <context>: CREATE TABLE table_11044765_1 (league VARCHAR, school VARCHAR) | SELECT league FROM table_11044765_1 WHERE school = "Galena" |
19,153 | <question>: What city and state is the Lancers mascot located? <context>: CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR) | SELECT location FROM table_11044765_1 WHERE mascot = "Lancers" |
19,154 | <question>: What city and state are the miners located in? <context>: CREATE TABLE table_11044765_1 (location VARCHAR, mascot VARCHAR) | SELECT location FROM table_11044765_1 WHERE mascot = "Miners" |
19,155 | <question>: Which school has the Raiders as their mascot? <context>: CREATE TABLE table_11044765_1 (school VARCHAR, mascot VARCHAR) | SELECT school FROM table_11044765_1 WHERE mascot = "Raiders" |
19,156 | <question>: Where was the tournament dated nov 3, 2002? <context>: CREATE TABLE table_1121352_2 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_1121352_2 WHERE date = "Nov 3, 2002" |
19,157 | <question>: Where is the margin of victory dated mar 28, 2004? <context>: CREATE TABLE table_1121352_2 (margin_of_victory VARCHAR, date VARCHAR) | SELECT margin_of_victory FROM table_1121352_2 WHERE date = "Mar 28, 2004" |
19,158 | <question>: What is the to par dated may 4, 2003? <context>: CREATE TABLE table_1121352_2 (to_par VARCHAR, date VARCHAR) | SELECT to_par FROM table_1121352_2 WHERE date = "May 4, 2003" |
19,159 | <question>: What date were the runner ups pat hurst juli inkster? <context>: CREATE TABLE table_1121352_2 (date VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_1121352_2 WHERE runner_s__up = "Pat Hurst Juli Inkster" |
19,160 | <question>: what's the total number of final epbeingode count with character being rick stetler <context>: CREATE TABLE table_11210576_4 (final_episode VARCHAR, character VARCHAR) | SELECT COUNT(final_episode) AS Count FROM table_11210576_4 WHERE character = "Rick Stetler" |
19,161 | <question>: what's the character with fate being deceased: knife wound <context>: CREATE TABLE table_11210576_4 (character VARCHAR, fate VARCHAR) | SELECT character FROM table_11210576_4 WHERE fate = "Deceased: Knife Wound" |
19,162 | <question>: what's the actor with character being judge joseph ratner <context>: CREATE TABLE table_11210576_4 (actor VARCHAR, character VARCHAR) | SELECT actor FROM table_11210576_4 WHERE character = "Judge Joseph Ratner" |
19,163 | <question>: Which team was the second semi finalist in 2007? <context>: CREATE TABLE table_11214772_2 (semi_finalist__number2 VARCHAR, year VARCHAR) | SELECT semi_finalist__number2 FROM table_11214772_2 WHERE year = 2007 |
19,164 | <question>: How many teams were listed as runner up in 2005 and there the first semi finalist was Western Carolina? <context>: CREATE TABLE table_11214772_2 (runner_up VARCHAR, semi_finalist__number1 VARCHAR, year VARCHAR) | SELECT COUNT(runner_up) FROM table_11214772_2 WHERE semi_finalist__number1 = "Western Carolina" AND year = 2005 |
19,165 | <question>: List the scores of all games when Miami were listed as the first Semi finalist <context>: CREATE TABLE table_11214772_2 (score VARCHAR, semi_finalist__number1 VARCHAR) | SELECT score FROM table_11214772_2 WHERE semi_finalist__number1 = "Miami" |
19,166 | <question>: When Embry-Riddle made it to the first semi finalist slot, list all the runners up. <context>: CREATE TABLE table_11214772_2 (runner_up VARCHAR, semi_finalist__number1 VARCHAR) | SELECT runner_up FROM table_11214772_2 WHERE semi_finalist__number1 = "Embry-Riddle" |
19,167 | <question>: Where was the final game played in 2007 <context>: CREATE TABLE table_11214772_2 (location VARCHAR, year VARCHAR) | SELECT location FROM table_11214772_2 WHERE year = 2007 |
19,168 | <question>: Which round had Michael Schumacher in the pole position, David Coulthard with the fastest lap, and McLaren - Mercedes as the winning constructor? <context>: CREATE TABLE table_1132600_3 (round VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) | SELECT COUNT(round) FROM table_1132600_3 WHERE pole_position = "Michael Schumacher" AND fastest_lap = "David Coulthard" AND winning_constructor = "McLaren - Mercedes" |
19,169 | <question>: How many drivers won the Italian Grand Prix? <context>: CREATE TABLE table_1132600_3 (winning_driver VARCHAR, grand_prix VARCHAR) | SELECT COUNT(winning_driver) FROM table_1132600_3 WHERE grand_prix = "Italian grand_prix" |
19,170 | <question>: What was the report of the Belgian Grand Prix? <context>: CREATE TABLE table_1132600_3 (report VARCHAR, grand_prix VARCHAR) | SELECT report FROM table_1132600_3 WHERE grand_prix = "Belgian grand_prix" |
19,171 | <question>: Who had the fastest lap in the Belgian Grand Prix? <context>: CREATE TABLE table_1132600_3 (fastest_lap VARCHAR, grand_prix VARCHAR) | SELECT fastest_lap FROM table_1132600_3 WHERE grand_prix = "Belgian grand_prix" |
19,172 | <question>: When was the date successor seated when the vacator was charles e. chamberlain (r)? <context>: CREATE TABLE table_1134091_4 (date_successor_seated VARCHAR, vacator VARCHAR) | SELECT date_successor_seated FROM table_1134091_4 WHERE vacator = "Charles E. Chamberlain (R)" |
19,173 | <question>: Who was the successor when the vacator was chester e. holifield (d)? <context>: CREATE TABLE table_1134091_4 (successor VARCHAR, vacator VARCHAR) | SELECT successor FROM table_1134091_4 WHERE vacator = "Chester E. Holifield (D)" |
19,174 | <question>: When was the successor seated when the district was California 10th? <context>: CREATE TABLE table_1134091_4 (date_successor_seated VARCHAR, district VARCHAR) | SELECT date_successor_seated FROM table_1134091_4 WHERE district = "California 10th" |
19,175 | <question>: Who was the vacator when the date successor seated was august 21, 1973? <context>: CREATE TABLE table_1134091_4 (vacator VARCHAR, date_successor_seated VARCHAR) | SELECT vacator FROM table_1134091_4 WHERE date_successor_seated = "August 21, 1973" |
19,176 | <question>: What was the district when the reason for change was died January 1, 1974? <context>: CREATE TABLE table_1134091_4 (district VARCHAR, reason_for_change VARCHAR) | SELECT district FROM table_1134091_4 WHERE reason_for_change = "Died January 1, 1974" |
19,177 | <question>: Which routes have "replaced by US 81" listed in their remarks section? <context>: CREATE TABLE table_11336756_6 (route_name VARCHAR, remarks VARCHAR) | SELECT route_name FROM table_11336756_6 WHERE remarks = "Replaced by US 81" |
19,178 | <question>: Which junctions have "replaced by bsi-35" listed in their remarks section? <context>: CREATE TABLE table_11336756_6 (junctions VARCHAR, remarks VARCHAR) | SELECT junctions FROM table_11336756_6 WHERE remarks = "Replaced by BSI-35" |
19,179 | <question>: How many junctions have "replaced by bsi-35" listed in their remarks section? <context>: CREATE TABLE table_11336756_6 (junctions VARCHAR, remarks VARCHAR) | SELECT COUNT(junctions) FROM table_11336756_6 WHERE remarks = "Replaced by BSI-35" |
19,180 | <question>: What unit of length is being used for the route with "replaced by us 81" in their remarks section? <context>: CREATE TABLE table_11336756_6 (length VARCHAR, remarks VARCHAR) | SELECT length FROM table_11336756_6 WHERE remarks = "Replaced by US 81" |
19,181 | <question>: Which population areas have "replaced by us 83" listed in their remarks section? <context>: CREATE TABLE table_11336756_6 (population_area VARCHAR, remarks VARCHAR) | SELECT population_area FROM table_11336756_6 WHERE remarks = "Replaced by US 83" |
19,182 | <question>: How many termini are there that have "east west" listed in their direction section, "none" listed in their junction section, and have a route name of "sh 202"? <context>: CREATE TABLE table_11336756_6 (termini VARCHAR, route_name VARCHAR, direction VARCHAR, junctions VARCHAR) | SELECT COUNT(termini) FROM table_11336756_6 WHERE direction = "East West" AND junctions = "none" AND route_name = "SH 202" |
19,183 | <question>: Give me the kickoff time of the game that was aired on CBS against the St. Louis Cardinals. <context>: CREATE TABLE table_11449311_2 (kickoff_ VARCHAR, a_ VARCHAR, tv VARCHAR, opponent VARCHAR) | SELECT kickoff_[a_] FROM table_11449311_2 WHERE tv = "CBS" AND opponent = "St. Louis Cardinals" |
19,184 | <question>: Find all the result(s) with the record of 2-13. <context>: CREATE TABLE table_11449311_2 (result VARCHAR, record VARCHAR) | SELECT result FROM table_11449311_2 WHERE record = "2-13" |
19,185 | <question>: What is the vault score for the total of 56.635? <context>: CREATE TABLE table_11542215_3 (vault VARCHAR, total VARCHAR) | SELECT vault FROM table_11542215_3 WHERE total = "56.635" |
19,186 | <question>: What is the total score when the score for floor exercise was 9.287? <context>: CREATE TABLE table_11542215_3 (total VARCHAR, floor_exercise VARCHAR) | SELECT total FROM table_11542215_3 WHERE floor_exercise = "9.287" |
19,187 | <question>: what's the margin where runner(s)-up is phil mickelson <context>: CREATE TABLE table_11570261_1 (margin VARCHAR, runner_s__up VARCHAR) | SELECT margin FROM table_11570261_1 WHERE runner_s__up = "Phil Mickelson" |
19,188 | <question>: what is the minimum year where winning score is −8 (71-63-69-69=272) <context>: CREATE TABLE table_11570261_1 (year INTEGER, winning_score VARCHAR) | SELECT MIN(year) FROM table_11570261_1 WHERE winning_score = −8(71 - 63 - 69 - 69 = 272) |
19,189 | <question>: what's the championship where winning score is −12 (74-66-65-71=276) <context>: CREATE TABLE table_11570261_1 (championship VARCHAR, winning_score VARCHAR) | SELECT championship FROM table_11570261_1 WHERE winning_score = −12(74 - 66 - 65 - 71 = 276) |
19,190 | <question>: what's the 54 holes where winning score is −19 (67-66-67-69=269) <context>: CREATE TABLE table_11570261_1 (winning_score VARCHAR) | SELECT 54 AS _holes FROM table_11570261_1 WHERE winning_score = −19(67 - 66 - 67 - 69 = 269) |
19,191 | <question>: what's the title where original air date is january18,2009 <context>: CREATE TABLE table_11589522_3 (title VARCHAR, original_air_date VARCHAR) | SELECT title FROM table_11589522_3 WHERE original_air_date = "January18,2009" |
19,192 | <question>: what's the original air date where written by is iain morris & damon beesley <context>: CREATE TABLE table_11589522_3 (original_air_date VARCHAR, written_by VARCHAR) | SELECT original_air_date FROM table_11589522_3 WHERE written_by = "Iain Morris & Damon Beesley" |
19,193 | <question>: Which Allied Force targetted Woensdrecht? <context>: CREATE TABLE table_1160161_12 (allied_forces VARCHAR, target VARCHAR) | SELECT allied_forces FROM table_1160161_12 WHERE target = "Woensdrecht" |
19,194 | <question>: What is the date of entry for the UK Albums Top 75 chart? <context>: CREATE TABLE table_1160304_2 (date_of_entry VARCHAR, chart VARCHAR) | SELECT date_of_entry FROM table_1160304_2 WHERE chart = "UK Albums Top 75" |
19,195 | <question>: What was the total number of weeks on peak for the Ireland Albums Top 75 chart? <context>: CREATE TABLE table_1160304_2 (weeks_on_peak VARCHAR, chart VARCHAR) | SELECT COUNT(weeks_on_peak) FROM table_1160304_2 WHERE chart = "Ireland Albums Top 75" |
19,196 | <question>: What is the exit date for the Dutch Albums Top 100 Chart? <context>: CREATE TABLE table_1160304_2 (date_of_exit VARCHAR, chart VARCHAR) | SELECT date_of_exit FROM table_1160304_2 WHERE chart = "Dutch Albums Top 100" |
19,197 | <question>: what is the total number of constancy where purity is falling <context>: CREATE TABLE table_11609814_1 (constancy VARCHAR, purity VARCHAR) | SELECT COUNT(constancy) FROM table_11609814_1 WHERE purity = "falling" |
19,198 | <question>: what's the permanence of the body where purity is rudra <context>: CREATE TABLE table_11609814_1 (permanence_of_the_body VARCHAR, purity VARCHAR) | SELECT permanence_of_the_body FROM table_11609814_1 WHERE purity = "Rudra" |
19,199 | <question>: what's the permanence of the body where purity is apprehension <context>: CREATE TABLE table_11609814_1 (permanence_of_the_body VARCHAR, purity VARCHAR) | SELECT permanence_of_the_body FROM table_11609814_1 WHERE purity = "apprehension" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.