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