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