question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Name the least matches for runs being 276
CREATE TABLE table_17900317_5 (matches INTEGER, runs VARCHAR)
SELECT MIN(matches) FROM table_17900317_5 WHERE runs = 276
What's the frequency of the call sign DYFR with 10KW of power?
CREATE TABLE table_name_50 (frequency VARCHAR, power__kw_ VARCHAR, call_sign VARCHAR)
SELECT frequency FROM table_name_50 WHERE power__kw_ = "10kw" AND call_sign = "dyfr"
Where was the tournament won by Hale Irwin (19)?
CREATE TABLE table_name_93 (location VARCHAR, winner VARCHAR)
SELECT location FROM table_name_93 WHERE winner = "hale irwin (19)"
What is the name on the Republican ticket when the Socialist ticket was louis waldman?
CREATE TABLE table_name_17 (republican_ticket VARCHAR, socialist_ticket VARCHAR)
SELECT republican_ticket FROM table_name_17 WHERE socialist_ticket = "louis waldman"
What is the Nationality of the G Player with 4 years NBA Experience?
CREATE TABLE table_name_29 (nationality VARCHAR, pos VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)
SELECT nationality FROM table_name_29 WHERE years_of_nba_experience_[a_] = "4" AND pos = "g"
What was the reading score in the year the science score was 96.13?
CREATE TABLE table_2534578_1 (reading VARCHAR, science VARCHAR)
SELECT reading FROM table_2534578_1 WHERE science = "96.13"
Who published Star Citizen in 2014?
CREATE TABLE table_name_17 (publisher VARCHAR, year VARCHAR, title VARCHAR)
SELECT publisher FROM table_name_17 WHERE year = "2014" AND title = "star citizen"
What is the lowest rank?
CREATE TABLE table_19744915_15 (rank INTEGER)
SELECT MIN(rank) FROM table_19744915_15
Find the number of items that did not receive any review.
CREATE TABLE review (i_id VARCHAR); CREATE TABLE item (i_id VARCHAR)
SELECT COUNT(*) FROM item WHERE NOT i_id IN (SELECT i_id FROM review)
Which Set 1 has a Set 3 of 16–25?
CREATE TABLE table_name_25 (set_1 VARCHAR, set_3 VARCHAR)
SELECT set_1 FROM table_name_25 WHERE set_3 = "16–25"
Which nation hosted the competition in 2004?
CREATE TABLE table_28601467_1 (host_nation_s_ VARCHAR, year VARCHAR)
SELECT host_nation_s_ FROM table_28601467_1 WHERE year = 2004
What is the p max (bar) in the pistol where the chambering is .45 ACP?
CREATE TABLE table_26967904_1 (p_max___bar__ INTEGER, chambering VARCHAR)
SELECT MAX(p_max___bar__) FROM table_26967904_1 WHERE chambering = ".45 ACP"
with more than 32 laps and sylvain guintoli as rider, what's the lowest grid ?
CREATE TABLE table_name_15 (grid INTEGER, rider VARCHAR, laps VARCHAR)
SELECT MIN(grid) FROM table_name_15 WHERE rider = "sylvain guintoli" AND laps > 32
Name the high assists for w 107–99 (ot)
CREATE TABLE table_27723228_7 (high_assists VARCHAR, score VARCHAR)
SELECT high_assists FROM table_27723228_7 WHERE score = "W 107–99 (OT)"
Who was the visitor when ward recorded the decision with a record of 22–21–4?
CREATE TABLE table_name_4 (visitor VARCHAR, decision VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_4 WHERE decision = "ward" AND record = "22–21–4"
What is the lowest points that has w-2 (w-league) as the league, and draws greater than 2?
CREATE TABLE table_name_23 (points INTEGER, league VARCHAR, draws VARCHAR)
SELECT MIN(points) FROM table_name_23 WHERE league = "w-2 (w-league)" AND draws > 2
For each trip, return its ending station's installation date.
CREATE TABLE station (installation_date VARCHAR, id VARCHAR); CREATE TABLE trip (id VARCHAR, end_station_id VARCHAR)
SELECT T1.id, T2.installation_date FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id
How many poles does driver Nelson Piquet have?
CREATE TABLE table_name_83 (poles INTEGER, driver VARCHAR)
SELECT SUM(poles) FROM table_name_83 WHERE driver = "nelson piquet"
Round 3 with less than 54 for Round 4?
CREATE TABLE table_name_69 (round_3 VARCHAR, round_4 VARCHAR)
SELECT round_3 FROM table_name_69 WHERE round_4 = "54"
What was the record when the Denver Broncos played the New York Titans at Bears Stadium?
CREATE TABLE table_name_44 (record VARCHAR, game_site VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_44 WHERE game_site = "bears stadium" AND opponent = "new york titans"
What is the record when Tampa Bay is the visitor?
CREATE TABLE table_name_93 (record VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_93 WHERE visitor = "tampa bay"
What position did the Belenenses club occupy in 1960/61?
CREATE TABLE table_name_2 (position_in_1960_1961 VARCHAR, clubs VARCHAR)
SELECT position_in_1960_1961 FROM table_name_2 WHERE clubs = "belenenses"
In which competition(s) did Iljuštšenko jump 1.90 m?
CREATE TABLE table_name_99 (competition VARCHAR, notes VARCHAR)
SELECT competition FROM table_name_99 WHERE notes = "1.90 m"
What is the runner-up record where winner record is Ireland 59 points?
CREATE TABLE table_28601467_1 (runner_up VARCHAR, winner VARCHAR)
SELECT runner_up FROM table_28601467_1 WHERE winner = "Ireland 59 points"
Who was the runner-up for the Bulgaria Open, before 2007?
CREATE TABLE table_name_40 (score VARCHAR, tournament VARCHAR, year VARCHAR, outcome VARCHAR)
SELECT score FROM table_name_40 WHERE year < 2007 AND outcome = "runner-up" AND tournament = "bulgaria open"
Which DVD Title has a Region 1 of n/a and greater than 3 in No. of Discs?
CREATE TABLE table_name_57 (dvd_title VARCHAR, region_1 VARCHAR, no_of_discs VARCHAR)
SELECT dvd_title FROM table_name_57 WHERE region_1 = "n/a" AND no_of_discs > 3
Leading Scorer of Ian rush is what lowest # of goals?
CREATE TABLE table_name_45 (goals INTEGER, leading_scorer VARCHAR)
SELECT MIN(goals) FROM table_name_45 WHERE leading_scorer = "ian rush"
Who is GTU Winning Team's #27 Don Lindley's TO Winning Team?
CREATE TABLE table_13657749_2 (to_winning_team VARCHAR, gtu_winning_team VARCHAR)
SELECT to_winning_team FROM table_13657749_2 WHERE gtu_winning_team = "#27 Don Lindley"
Name the hebrew for tisʕ-
CREATE TABLE table_26919_6 (hebrew VARCHAR, arabic VARCHAR)
SELECT hebrew FROM table_26919_6 WHERE arabic = "tisʕ-"
Name the author for 6y/ae
CREATE TABLE table_1620397_2 (author VARCHAR, series_sorted VARCHAR)
SELECT author FROM table_1620397_2 WHERE series_sorted = "6Y/AE"
What is the Record of the game on November 24 with a Score of 6–2?
CREATE TABLE table_name_75 (record VARCHAR, score VARCHAR, date VARCHAR)
SELECT record FROM table_name_75 WHERE score = "6–2" AND date = "november 24"
Find the market shares and names of furnitures which no any company is producing in our records.
CREATE TABLE furniture (Market_Rate VARCHAR, name VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture_manufacte (Market_Rate VARCHAR, name VARCHAR, Furniture_ID VARCHAR)
SELECT Market_Rate, name FROM furniture WHERE NOT Furniture_ID IN (SELECT Furniture_ID FROM furniture_manufacte)
When 20 is the rr4 points what is the lowest rr3 points?
CREATE TABLE table_21489362_2 (rr3_pts INTEGER, rr4_pts VARCHAR)
SELECT MIN(rr3_pts) FROM table_21489362_2 WHERE rr4_pts = "20"
What is the Romanization for my old sweetheart?
CREATE TABLE table_name_81 (romanization VARCHAR, english_title VARCHAR)
SELECT romanization FROM table_name_81 WHERE english_title = "my old sweetheart"
What is the status of Author Del Corro?
CREATE TABLE table_name_84 (status VARCHAR, authors VARCHAR)
SELECT status FROM table_name_84 WHERE authors = "del corro"
What grid is the lowest when the time/retired is + 5 laps and the laps is less than 161?
CREATE TABLE table_name_30 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT MIN(grid) FROM table_name_30 WHERE time_retired = "+ 5 laps" AND laps < 161
What is Instant Messaging, when Electronic Meeting System is "Yes", and when Name is "Microsoft Sharepoint"?
CREATE TABLE table_name_48 (instant_messaging VARCHAR, electronic_meeting_system VARCHAR, name VARCHAR)
SELECT instant_messaging FROM table_name_48 WHERE electronic_meeting_system = "yes" AND name = "microsoft sharepoint"
Which Player has a Round smaller than 4, and a College/junior/club team (league) of usa u-18?
CREATE TABLE table_name_48 (player VARCHAR, round VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT player FROM table_name_48 WHERE round < 4 AND college_junior_club_team__league_ = "usa u-18"
Which school or club team has a pick of 139?
CREATE TABLE table_name_60 (school_club_team VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_60 WHERE pick = 139
What was the average week for the gaime against the philadelphia eagles with less than 31,066 in attendance?
CREATE TABLE table_name_14 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
SELECT AVG(week) FROM table_name_14 WHERE opponent = "philadelphia eagles" AND attendance < 31 OFFSET 066
How many votes did the security guard get?
CREATE TABLE table_name_78 (votes VARCHAR, occupation VARCHAR)
SELECT votes FROM table_name_78 WHERE occupation = "security guard"
What date was the John Belisle, Kosta Tsetsekas stamp issued?
CREATE TABLE table_name_43 (date_of_issue VARCHAR, design VARCHAR)
SELECT date_of_issue FROM table_name_43 WHERE design = "john belisle, kosta tsetsekas"
How long is the song titled burning love?
CREATE TABLE table_name_54 (time VARCHAR, song_title VARCHAR)
SELECT time FROM table_name_54 WHERE song_title = "burning love"
How to you write плавна with the latin alphabet?
CREATE TABLE table_2562572_11 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT settlement FROM table_2562572_11 WHERE cyrillic_name_other_names = "Плавна"
what is the format for the country united kingdom on 20 october 2008?
CREATE TABLE table_name_28 (format VARCHAR, country VARCHAR, date VARCHAR)
SELECT format FROM table_name_28 WHERE country = "united kingdom" AND date = "20 october 2008"
What is the number of the votes of the election before 2004 with edward mahama as the candidate with 3.0% share of votes?
CREATE TABLE table_name_74 (number_of_votes VARCHAR, share_of_votes VARCHAR, candidate VARCHAR, election VARCHAR)
SELECT number_of_votes FROM table_name_74 WHERE candidate = "edward mahama" AND election < 2004 AND share_of_votes = "3.0%"
Which character had a title rank of various?
CREATE TABLE table_name_4 (character VARCHAR, title_rank VARCHAR)
SELECT character FROM table_name_4 WHERE title_rank = "various"
How many Rebounds did Novica Veličković get in less than 22 Games?
CREATE TABLE table_name_6 (rebounds INTEGER, name VARCHAR, games VARCHAR)
SELECT SUM(rebounds) FROM table_name_6 WHERE name = "novica veličković" AND games < 22
Which result has a Score of 30-44?
CREATE TABLE table_name_51 (result VARCHAR, score VARCHAR)
SELECT result FROM table_name_51 WHERE score = "30-44"
For the player that scored 27 goals, what years did he score them?
CREATE TABLE table_name_62 (years VARCHAR, goals VARCHAR)
SELECT years FROM table_name_62 WHERE goals = 27
Which department has Guy-Dominique Kennel as president since 2008?
CREATE TABLE table_name_54 (départment__or_collectivity_ VARCHAR, since VARCHAR, président VARCHAR)
SELECT départment__or_collectivity_ FROM table_name_54 WHERE since = 2008 AND président = "guy-dominique kennel"
What is the date of the game where St Kilda is the home team?
CREATE TABLE table_name_9 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_9 WHERE home_team = "st kilda"
What is the average rank for 57.05 time?
CREATE TABLE table_name_61 (rank INTEGER, time INTEGER)
SELECT AVG(rank) FROM table_name_61 WHERE time < 57.05
When the lead margin was 35, what were the Democrat: Vivian Davis Figures?
CREATE TABLE table_16751596_12 (democrat VARCHAR, lead_margin VARCHAR)
SELECT democrat AS :_vivian_davis_figures FROM table_16751596_12 WHERE lead_margin = 35
What is the source for Zares at 8.6%?
CREATE TABLE table_name_12 (source VARCHAR, zares VARCHAR)
SELECT source FROM table_name_12 WHERE zares = "8.6%"
Year larger than 1975, and a Record of 13–11 is what playoffs?
CREATE TABLE table_name_54 (playoffs VARCHAR, year VARCHAR, record VARCHAR)
SELECT playoffs FROM table_name_54 WHERE year > 1975 AND record = "13–11"
Who was the away team for tie number 9?
CREATE TABLE table_name_6 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_6 WHERE tie_no = "9"
What time slots have a 6.3 rating
CREATE TABLE table_11244302_1 (time_slot__est_ VARCHAR, rating VARCHAR)
SELECT time_slot__est_ FROM table_11244302_1 WHERE rating = "6.3"
What is the average attendance of the game where the home team was the Blues?
CREATE TABLE table_name_40 (attendance INTEGER, home VARCHAR)
SELECT AVG(attendance) FROM table_name_40 WHERE home = "blues"
Name the start of an event in Catagory 2 of the year 1947.
CREATE TABLE table_name_40 (start VARCHAR, category VARCHAR, year VARCHAR)
SELECT start FROM table_name_40 WHERE category = "2" AND year = 1947
How many overs when there are 5231 runs and fewer than 37 matches?
CREATE TABLE table_name_33 (overs INTEGER, runs VARCHAR, matches VARCHAR)
SELECT SUM(overs) FROM table_name_33 WHERE runs = 5231 AND matches < 37
What height is player number 9?
CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR)
SELECT height FROM table_12962773_12 WHERE no = 9
give the least number of times an episode was shown from 1997-1998
CREATE TABLE table_10953197_6 (no_in_season INTEGER)
SELECT MIN(no_in_season) FROM table_10953197_6
How many U.S. viewers (million) are there for the episode whose Production code is 3T7051?
CREATE TABLE table_13183076_3 (us_viewers__million_ VARCHAR, production_code VARCHAR)
SELECT us_viewers__million_ FROM table_13183076_3 WHERE production_code = "3T7051"
Who is the owner that built in 2009-2011?
CREATE TABLE table_name_98 (owner VARCHAR, built VARCHAR)
SELECT owner FROM table_name_98 WHERE built = "2009-2011"
Find the name of instructors who are advising more than one student.
CREATE TABLE advisor (i_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR)
SELECT T1.name FROM instructor AS T1 JOIN advisor AS T2 ON T1.id = T2.i_id GROUP BY T2.i_id HAVING COUNT(*) > 1
In the 2012 (85th) Ceremony, what was the Original title of the film not nominated?
CREATE TABLE table_name_66 (original_title VARCHAR, result VARCHAR, year__ceremony_ VARCHAR)
SELECT original_title FROM table_name_66 WHERE result = "not nominated" AND year__ceremony_ = "2012 (85th)"
What is the average car number of all the drivers who have won $111,683?
CREATE TABLE table_name_21 (car__number INTEGER, winnings VARCHAR)
SELECT AVG(car__number) FROM table_name_21 WHERE winnings = "$111,683"
Which gender has an Authority of state, Years of 1–8, and a Decile smaller than 10, and a Roll of 36?
CREATE TABLE table_name_76 (gender VARCHAR, roll VARCHAR, decile VARCHAR, authority VARCHAR, years VARCHAR)
SELECT gender FROM table_name_76 WHERE authority = "state" AND years = "1–8" AND decile < 10 AND roll = 36
What is the Elector with a Nationality with roman, and an Elevator of urban iv, and an Elevated with 1261, december 17?
CREATE TABLE table_name_5 (elector VARCHAR, elevated VARCHAR, nationality VARCHAR, elevator VARCHAR)
SELECT elector FROM table_name_5 WHERE nationality = "roman" AND elevator = "urban iv" AND elevated = "1261, december 17"
How many votes Khuzestan were there when the percentage was 34.50?
CREATE TABLE table_1827900_1 (votes_khuzestan INTEGER, _percentage_of_votes_khuzestan VARCHAR)
SELECT MIN(votes_khuzestan) FROM table_1827900_1 WHERE _percentage_of_votes_khuzestan = "34.50"
What is the 1st participle of the verb whose 4th participle is haitans?
CREATE TABLE table_1745843_5 (part_1 VARCHAR, part_4 VARCHAR)
SELECT part_1 FROM table_1745843_5 WHERE part_4 = "haitans"
When the attendance was 24,406 who lost?
CREATE TABLE table_name_8 (loss VARCHAR, attendance VARCHAR)
SELECT loss FROM table_name_8 WHERE attendance = "24,406"
What is the document id and name with greatest number of paragraphs?
CREATE TABLE Documents (document_name VARCHAR, document_id VARCHAR); CREATE TABLE Paragraphs (document_id VARCHAR)
SELECT T1.document_id, T2.document_name FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id ORDER BY COUNT(*) DESC LIMIT 1
Find the number of papers published by the institution "University of Pennsylvania".
CREATE TABLE inst (instid VARCHAR, name VARCHAR); CREATE TABLE authorship (paperid VARCHAR, instid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR)
SELECT COUNT(DISTINCT t1.title) FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "University of Pennsylvania"
When was the archbishop that was born on February 10, 1858 ordained a bishop?
CREATE TABLE table_name_80 (ordained_bishop VARCHAR, born VARCHAR)
SELECT ordained_bishop FROM table_name_80 WHERE born = "february 10, 1858"
Group position of 1st, and a Result F–A of 2–0 has what average attendance?
CREATE TABLE table_name_69 (attendance INTEGER, group_position VARCHAR, result_f_a VARCHAR)
SELECT AVG(attendance) FROM table_name_69 WHERE group_position = "1st" AND result_f_a = "2–0"
What is the name of a league in the sport of baseball?
CREATE TABLE table_name_96 (league VARCHAR, sport VARCHAR)
SELECT league FROM table_name_96 WHERE sport = "baseball"
On what dates did Jim Jarmusch win the Lifetime Achievement?
CREATE TABLE table_name_27 (dates VARCHAR, lifetime_achievement VARCHAR)
SELECT dates FROM table_name_27 WHERE lifetime_achievement = "jim jarmusch"
When using a .375 Winchester, what is the muzzle energy?
CREATE TABLE table_16010376_1 (muzzle_energy VARCHAR, cartridge VARCHAR)
SELECT muzzle_energy FROM table_16010376_1 WHERE cartridge = ".375 Winchester"
Can you tell me the average Against thaylt has the Date of 23/03/2002?
CREATE TABLE table_name_44 (against INTEGER, date VARCHAR)
SELECT AVG(against) FROM table_name_44 WHERE date = "23/03/2002"
What is the run 2 of athlete Maria Orlova from Russia?
CREATE TABLE table_name_24 (run_2 INTEGER, country VARCHAR, athlete VARCHAR)
SELECT SUM(run_2) FROM table_name_24 WHERE country = "russia" AND athlete = "maria orlova"
Which artist created coins before 2010?
CREATE TABLE table_name_40 (artist VARCHAR, year INTEGER)
SELECT artist FROM table_name_40 WHERE year < 2010
Who is the listed opponent in Week 2?
CREATE TABLE table_name_24 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_24 WHERE week = 2
Who was the high rebounder on game 1?
CREATE TABLE table_27715173_12 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_27715173_12 WHERE game = 1
What is the high rebounds with a record that is 18-14?
CREATE TABLE table_name_44 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_name_44 WHERE record = "18-14"
What is the cardinal direction of Monday in English?
CREATE TABLE table_name_84 (cardinal_direction VARCHAR, english VARCHAR)
SELECT cardinal_direction FROM table_name_84 WHERE english = "monday"
What is the first season written by joseph hampton & dani renee?
CREATE TABLE table_11630008_4 (season_no INTEGER, written_by VARCHAR)
SELECT MIN(season_no) FROM table_11630008_4 WHERE written_by = "Joseph Hampton & Dani Renee"
Please show different denominations and the corresponding number of schools.
CREATE TABLE school (Denomination VARCHAR)
SELECT Denomination, COUNT(*) FROM school GROUP BY Denomination
Which circuit did Peter Whitehead win?
CREATE TABLE table_name_43 (circuit VARCHAR, winning_driver VARCHAR)
SELECT circuit FROM table_name_43 WHERE winning_driver = "peter whitehead"
What year did the season finale have a total of 10.29 million viewers?
CREATE TABLE table_1348989_2 (season VARCHAR, viewers__in_millions_ VARCHAR)
SELECT season AS Finale FROM table_1348989_2 WHERE viewers__in_millions_ = "10.29"
What is the road team of the game with Philadelphia as the home team with a result of 105-102?
CREATE TABLE table_name_53 (road_team VARCHAR, home_team VARCHAR, result VARCHAR)
SELECT road_team FROM table_name_53 WHERE home_team = "philadelphia" AND result = "105-102"
What is the Roman entry for the allophone of [[[|k]]]?
CREATE TABLE table_name_79 (roman VARCHAR, sound__allophone_ VARCHAR)
SELECT roman FROM table_name_79 WHERE sound__allophone_ = "[[[|k]]]"
Who played against away team hereford united?
CREATE TABLE table_name_4 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_4 WHERE away_team = "hereford united"
What is the highest Grid with over 72 laps?
CREATE TABLE table_name_8 (grid INTEGER, laps INTEGER)
SELECT MAX(grid) FROM table_name_8 WHERE laps > 72
Which Points is the lowest one that has a Position larger than 5?
CREATE TABLE table_name_36 (points INTEGER, position INTEGER)
SELECT MIN(points) FROM table_name_36 WHERE position > 5
For the item that has a Gecko of 'font', what is the KHTML value?
CREATE TABLE table_name_11 (khtml VARCHAR, gecko VARCHAR)
SELECT khtml FROM table_name_11 WHERE gecko = "font"
Can you tell me the Date thay has the Reocrd of 9-10-2?
CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_11 WHERE record = "9-10-2"
What score did Goodman give to all songs with safe results, which received a 7 from Horwood and have a total score of 31?
CREATE TABLE table_1014319_1 (goodman VARCHAR, result VARCHAR, total VARCHAR, horwood VARCHAR)
SELECT goodman FROM table_1014319_1 WHERE total = "31" AND horwood = "7" AND result = "Safe"
What is the location of the salem district?
CREATE TABLE table_name_16 (location VARCHAR, district VARCHAR)
SELECT location FROM table_name_16 WHERE district = "salem district"