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