question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What host has an original air date of june 11, 2007?
CREATE TABLE table_name_11 (host VARCHAR, original_airdate VARCHAR)
SELECT host FROM table_name_11 WHERE original_airdate = "june 11, 2007"
Which Hanzi has a suburban population in 2004?
CREATE TABLE table_name_95 (hanzi VARCHAR, population__2004_est_ VARCHAR)
SELECT hanzi FROM table_name_95 WHERE population__2004_est_ = "suburban"
What is General Classification Yellow Jersey that has a Murilo Antonio Fischer, and Lampre-Fondital?
CREATE TABLE table_name_74 (general_classification_yellow_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR)
SELECT general_classification_yellow_jersey FROM table_name_74 WHERE mountains_classification_green_jersey = "murilo antonio fischer" AND team_classification = "lampre-fondital"
Name the represents for 1.76 cm
CREATE TABLE table_26301697_2 (represents VARCHAR, height__cm_ VARCHAR)
SELECT represents FROM table_26301697_2 WHERE height__cm_ = "1.76"
What is the highest number of points scored by minardi team usa in more than 13 laps?
CREATE TABLE table_name_2 (points INTEGER, laps VARCHAR, team VARCHAR)
SELECT MAX(points) FROM table_name_2 WHERE laps > 13 AND team = "minardi team usa"
What was the score for Nick Faldo?
CREATE TABLE table_name_76 (score INTEGER, player VARCHAR)
SELECT AVG(score) FROM table_name_76 WHERE player = "nick faldo"
What is the title of book number 8?
CREATE TABLE table_2950964_1 (title VARCHAR, _number VARCHAR)
SELECT title FROM table_2950964_1 WHERE _number = "8"
During the Australian Grand Prix and the fastest lap was driven by Jacques Villeneuve, what's the report recorded?
CREATE TABLE table_name_65 (report VARCHAR, fastest_lap VARCHAR, grand_prix VARCHAR)
SELECT report FROM table_name_65 WHERE fastest_lap = "jacques villeneuve" AND grand_prix = "australian grand prix"
What year joined had an enrollment less than 438 and an AA as the IHSAA Class?
CREATE TABLE table_name_63 (year_joined VARCHAR, enrollment VARCHAR, ihsaa_class VARCHAR)
SELECT year_joined FROM table_name_63 WHERE enrollment < 438 AND ihsaa_class = "aa"
If the incoming head coach is Carlos Azenha, what is the date of vacancy?
CREATE TABLE table_27133147_3 (date_of_vacancy VARCHAR, incoming_head_coach VARCHAR)
SELECT date_of_vacancy FROM table_27133147_3 WHERE incoming_head_coach = "Carlos Azenha"
What Driver has a +1.027 Time/Retired?
CREATE TABLE table_name_86 (driver VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_86 WHERE time_retired = "+1.027"
What's the production code of the episode seen by 11.64 million US viewers?
CREATE TABLE table_12159115_2 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
SELECT production_code FROM table_12159115_2 WHERE us_viewers__millions_ = "11.64"
Route larger than 24, and a Highway of trail ridge road had what elevation?
CREATE TABLE table_name_24 (elevation VARCHAR, route VARCHAR, highway VARCHAR)
SELECT elevation FROM table_name_24 WHERE route > 24 AND highway = "trail ridge road"
What is the height in feet of the Illinois player?
CREATE TABLE table_name_11 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
SELECT height_in_ft FROM table_name_11 WHERE school_club_team_country = "illinois"
Who is the monarch with the heir thado minsaw?
CREATE TABLE table_26460435_8 (monarch VARCHAR, heir VARCHAR)
SELECT monarch FROM table_26460435_8 WHERE heir = "Thado Minsaw"
Which club participated with a record of 45 tries against?
CREATE TABLE table_name_91 (club VARCHAR, tries_against VARCHAR)
SELECT club FROM table_name_91 WHERE tries_against = "45"
Who is the director of the production number 9368?
CREATE TABLE table_name_51 (director VARCHAR, production_number VARCHAR)
SELECT director FROM table_name_51 WHERE production_number = "9368"
How much Time has a Reaction of 0.155, and an Athlete of kristof beyens, and a Rank smaller than 3?
CREATE TABLE table_name_15 (time VARCHAR, rank VARCHAR, react VARCHAR, athlete VARCHAR)
SELECT COUNT(time) FROM table_name_15 WHERE react = 0.155 AND athlete = "kristof beyens" AND rank < 3
Who wrote episode number 109 in the series?
CREATE TABLE table_26565936_2 (written_by VARCHAR, no_in_series VARCHAR)
SELECT written_by FROM table_26565936_2 WHERE no_in_series = 109
What percentage is listed in column r1b1a2 (r-m269) for the 77.8% r1b1c (r-v88)?
CREATE TABLE table_21481509_4 (r1b1a2__r_m269_ VARCHAR, r1b1c__r_v88_ VARCHAR)
SELECT r1b1a2__r_m269_ FROM table_21481509_4 WHERE r1b1c__r_v88_ = "77.8%"
Can you tell me the Matches that has the Rank of 1?
CREATE TABLE table_name_89 (matches VARCHAR, rank VARCHAR)
SELECT matches FROM table_name_89 WHERE rank = 1
What is the median family income when the per capita is $24,114?
CREATE TABLE table_name_23 (median_family_income VARCHAR, per_capita_income VARCHAR)
SELECT median_family_income FROM table_name_23 WHERE per_capita_income = "$24,114"
Which venue was finished in 2nd position in 1985?
CREATE TABLE table_name_40 (venue VARCHAR, position VARCHAR, year VARCHAR)
SELECT venue FROM table_name_40 WHERE position = "2nd" AND year = 1985
When the Away team was hawthorn, what's the Home team?
CREATE TABLE table_name_84 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_84 WHERE away_team = "hawthorn"
Which Award has a Category of music video acting award?
CREATE TABLE table_name_40 (award VARCHAR, category VARCHAR)
SELECT award FROM table_name_40 WHERE category = "music video acting award"
What is the highest rank when the lane is larger than 6, and the heat is 3, and the nationality is colombia?
CREATE TABLE table_name_67 (rank INTEGER, nationality VARCHAR, lane VARCHAR, heat VARCHAR)
SELECT MAX(rank) FROM table_name_67 WHERE lane > 6 AND heat = 3 AND nationality = "colombia"
Name the start for year less than 1977
CREATE TABLE table_name_70 (start VARCHAR, year INTEGER)
SELECT start FROM table_name_70 WHERE year < 1977
Which Surname has Bats of r, and a Position of p, and a DOB of 20 may 1989?
CREATE TABLE table_name_73 (surname VARCHAR, dob VARCHAR, bats VARCHAR, position VARCHAR)
SELECT surname FROM table_name_73 WHERE bats = "r" AND position = "p" AND dob = "20 may 1989"
What was the title of the episode that martin worth wrote the story for?
CREATE TABLE table_name_55 (title VARCHAR, story VARCHAR)
SELECT title FROM table_name_55 WHERE story = "martin worth"
What is the highest number of points the team with 0 wins had before 1992?
CREATE TABLE table_name_11 (points INTEGER, wins VARCHAR, year VARCHAR)
SELECT MAX(points) FROM table_name_11 WHERE wins = 0 AND year < 1992
How many opponents did they play on 17/05/2009?
CREATE TABLE table_21378160_2 (opponent VARCHAR, date VARCHAR)
SELECT COUNT(opponent) FROM table_21378160_2 WHERE date = "17/05/2009"
In the competition in which the visiting team was the Suns, who was the leading scorer?
CREATE TABLE table_name_41 (leading_scorer VARCHAR, visitor VARCHAR)
SELECT leading_scorer FROM table_name_41 WHERE visitor = "suns"
How many dogs have not gone through any treatment?
CREATE TABLE Dogs (dog_id VARCHAR); CREATE TABLE Treatments (dog_id VARCHAR)
SELECT COUNT(*) FROM Dogs WHERE NOT dog_id IN (SELECT dog_id FROM Treatments)
How many in attendance with a loss of volquez (1–4)?
CREATE TABLE table_name_57 (attendance VARCHAR, loss VARCHAR)
SELECT attendance FROM table_name_57 WHERE loss = "volquez (1–4)"
What is the average rating star for each reviewer?
CREATE TABLE Reviewer (name VARCHAR, rID VARCHAR); CREATE TABLE Rating (stars INTEGER, rID VARCHAR)
SELECT T2.name, AVG(T1.stars) FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID GROUP BY T2.name
Who is the head linesman at game xxxv?
CREATE TABLE table_name_66 (head_linesman VARCHAR, game VARCHAR)
SELECT head_linesman FROM table_name_66 WHERE game = "xxxv"
The entrepreneur Layla Bennett was featured in which episode?
CREATE TABLE table_name_60 (episode VARCHAR, entrepreneur_s_ VARCHAR)
SELECT episode FROM table_name_60 WHERE entrepreneur_s_ = "layla bennett"
What is every score with a record of 46-25?
CREATE TABLE table_23248910_9 (score VARCHAR, record VARCHAR)
SELECT score FROM table_23248910_9 WHERE record = "46-25"
What was the record of the match that had a time of 1:44?
CREATE TABLE table_name_35 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_35 WHERE time = "1:44"
What is the highest rank of a nation with fewer than 0 silver medals?
CREATE TABLE table_name_43 (rank INTEGER, silver INTEGER)
SELECT MAX(rank) FROM table_name_43 WHERE silver < 0
What is the 2nd leg when second team is Sumykhimprom?
CREATE TABLE table_name_98 (team__number2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_98 WHERE team__number2 = "sumykhimprom"
How many Pos have a Driver of todd bodine, and a Car # larger than 30?
CREATE TABLE table_name_49 (pos VARCHAR, driver VARCHAR, car__number VARCHAR)
SELECT COUNT(pos) FROM table_name_49 WHERE driver = "todd bodine" AND car__number > 30
When are all dates in the year 2006?
CREATE TABLE table_15315816_1 (dates VARCHAR, year VARCHAR)
SELECT COUNT(dates) FROM table_15315816_1 WHERE year = "2006"
What is the score for the player who won $3,600?
CREATE TABLE table_name_40 (score VARCHAR, money___$__ VARCHAR)
SELECT score FROM table_name_40 WHERE money___$__ = "3,600"
What is the Freq currently of the 4GG Callsign?
CREATE TABLE table_name_7 (freq_currently VARCHAR, callsign VARCHAR)
SELECT freq_currently FROM table_name_7 WHERE callsign = "4gg"
What office did Henry Hagner run for on the prohibition ticket?
CREATE TABLE table_name_31 (office VARCHAR, prohibition_ticket VARCHAR)
SELECT office FROM table_name_31 WHERE prohibition_ticket = "henry hagner"
what is the most time where exhibitions is 1701
CREATE TABLE table_27685921_1 (year INTEGER, exhibitors__total_ VARCHAR)
SELECT MAX(year) FROM table_27685921_1 WHERE exhibitors__total_ = 1701
What date was the week 6 game played on?
CREATE TABLE table_name_80 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_80 WHERE week = 6
yes or no for the auckland with a yes for sydney, no for perth, yes for melbourne and yes for the gold coast?
CREATE TABLE table_name_74 (auckland VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, sydney VARCHAR, perth VARCHAR)
SELECT auckland FROM table_name_74 WHERE sydney = "yes" AND perth = "no" AND melbourne = "yes" AND gold_coast = "yes"
What is the highest death/2013 when the death/2012 is 12,7?
CREATE TABLE table_25703_1 (death_2013 INTEGER, death_2012 VARCHAR)
SELECT MAX(death_2013) FROM table_25703_1 WHERE death_2012 = "12,7"
Which years did the USA have a rank lower than 6 and an assist number less than 26?
CREATE TABLE table_name_47 (years VARCHAR, nation VARCHAR, assist VARCHAR, rank VARCHAR)
SELECT years FROM table_name_47 WHERE assist < 26 AND rank < 6 AND nation = "usa"
What year was USF founded?
CREATE TABLE table_1160660_1 (date_founded VARCHAR, acronym VARCHAR)
SELECT date_founded FROM table_1160660_1 WHERE acronym = "USF"
Who won Funny Car in 2012?
CREATE TABLE table_name_64 (funny_car VARCHAR, year VARCHAR)
SELECT funny_car FROM table_name_64 WHERE year = 2012
What venue featured a notes of 2:38:44?
CREATE TABLE table_name_63 (venue VARCHAR, notes VARCHAR)
SELECT venue FROM table_name_63 WHERE notes = "2:38:44"
What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95?
CREATE TABLE table_11916083_1 (mintage__bu_ VARCHAR, _clarification_needed_ VARCHAR, artist VARCHAR, issue_price__proof_ VARCHAR)
SELECT mintage__bu_[_clarification_needed_] FROM table_11916083_1 WHERE artist = "Royal Canadian Mint Staff" AND issue_price__proof_ = "$54.95"
Which Builder has a Works Number of 16272?
CREATE TABLE table_name_86 (builder VARCHAR, works_number VARCHAR)
SELECT builder FROM table_name_86 WHERE works_number = "16272"
What is the Theme with a Design with sputnik design partners?
CREATE TABLE table_name_55 (theme VARCHAR, design VARCHAR)
SELECT theme FROM table_name_55 WHERE design = "sputnik design partners"
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
What is the frequency for the radio owned by bell media with a call sign of chsu-fm?
CREATE TABLE table_name_6 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR)
SELECT frequency FROM table_name_6 WHERE owner = "bell media" AND call_sign = "chsu-fm"
What position does Jim Johnston play?
CREATE TABLE table_1213511_6 (position VARCHAR, player VARCHAR)
SELECT position FROM table_1213511_6 WHERE player = "Jim Johnston"
When Richmond is the Away team, what did they score?
CREATE TABLE table_name_2 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_2 WHERE away_team = "richmond"
Who directed the title written by cherry chevapravatdumrong?
CREATE TABLE table_22269839_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_22269839_1 WHERE written_by = "Cherry Chevapravatdumrong"
Which Time has an Event of call to arms i?
CREATE TABLE table_name_15 (time VARCHAR, event VARCHAR)
SELECT time FROM table_name_15 WHERE event = "call to arms i"
What is the highest number of wins for years after 1999 with averages over 73.02?
CREATE TABLE table_name_60 (wins INTEGER, average VARCHAR, year VARCHAR)
SELECT MAX(wins) FROM table_name_60 WHERE average > 73.02 AND year > 1999
get the details of employees who manage a department.
CREATE TABLE departments (department_id VARCHAR, manager_id VARCHAR); CREATE TABLE employees (department_id VARCHAR, employee_id VARCHAR)
SELECT DISTINCT * FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T1.employee_id = T2.manager_id
At which location did Rick Mears drive?
CREATE TABLE table_15736385_1 (location VARCHAR, driver VARCHAR)
SELECT location FROM table_15736385_1 WHERE driver = "Rick Mears"
Who sand He's Bigfoot?
CREATE TABLE table_23667534_1 (singer_s_ VARCHAR, song_s__title VARCHAR)
SELECT singer_s_ FROM table_23667534_1 WHERE song_s__title = "He's Bigfoot"
Which Game has an Opponent of @ carolina hurricanes?
CREATE TABLE table_name_94 (game INTEGER, opponent VARCHAR)
SELECT SUM(game) FROM table_name_94 WHERE opponent = "@ carolina hurricanes"
Who was on the Prohibition ticket when Thomas Armstrong ran on the Greenback ticket?
CREATE TABLE table_name_73 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR)
SELECT prohibition_ticket FROM table_name_73 WHERE greenback_ticket = "thomas armstrong"
List all the information about course authors and tutors in alphabetical order of the personal name.
CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR)
SELECT * FROM Course_Authors_and_Tutors ORDER BY personal_name
What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0?
CREATE TABLE table_name_23 (losses INTEGER, win__percentage VARCHAR, no_result VARCHAR)
SELECT SUM(losses) FROM table_name_23 WHERE win__percentage = "71.43%" AND no_result > 0
When the finish is t27 what is the year (s) won?
CREATE TABLE table_name_57 (year_s__won VARCHAR, finish VARCHAR)
SELECT year_s__won FROM table_name_57 WHERE finish = "t27"
How many first downs were there when the attendance was 13196?
CREATE TABLE table_14877831_2 (first_downs INTEGER, attendance VARCHAR)
SELECT MIN(first_downs) FROM table_14877831_2 WHERE attendance = 13196
What country had an anti-ship missile that had a solid rocket propulsion?
CREATE TABLE table_name_96 (country VARCHAR, propulsion VARCHAR)
SELECT country FROM table_name_96 WHERE propulsion = "solid rocket"
Which province and flag has a water area (km 2) of 0?
CREATE TABLE table_name_40 (name_and_flag VARCHAR, water_area__km_2__ VARCHAR)
SELECT name_and_flag FROM table_name_40 WHERE water_area__km_2__ = 0
What was the NFL Recap of the game held on December 24, 2005?
CREATE TABLE table_name_70 (nfl_recap VARCHAR, date VARCHAR)
SELECT nfl_recap FROM table_name_70 WHERE date = "december 24, 2005"
When steve holland is the writer what is the air date?
CREATE TABLE table_27657925_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_27657925_1 WHERE written_by = "Steve Holland"
The swimmer in lane 7 has what as the smallest rank?
CREATE TABLE table_name_81 (rank INTEGER, lane VARCHAR)
SELECT MIN(rank) FROM table_name_81 WHERE lane = 7
What is the Height (ft) of the Churchill House with a Height (m) less than 59?
CREATE TABLE table_name_12 (height__ft_ VARCHAR, name VARCHAR, height__m_ VARCHAR)
SELECT COUNT(height__ft_) FROM table_name_12 WHERE name = "churchill house" AND height__m_ < 59
What is the lowest 1994-1995, when Points is 145, and when Played is less than 114?
CREATE TABLE table_name_2 (points VARCHAR, played VARCHAR)
SELECT MIN(1994 AS _1995) FROM table_name_2 WHERE points = 145 AND played < 114
Name the clas AAAA of school year 2000-01
CREATE TABLE table_name_76 (class_aAAA VARCHAR, school_year VARCHAR)
SELECT class_aAAA FROM table_name_76 WHERE school_year = "2000-01"
Which director had not nominated as a result, and had Bayan Ko: Kapit Sa Patalim as an original title?
CREATE TABLE table_name_51 (director VARCHAR, result VARCHAR, original_title VARCHAR)
SELECT director FROM table_name_51 WHERE result = "not nominated" AND original_title = "bayan ko: kapit sa patalim"
What Airport's IATA is SEA?
CREATE TABLE table_name_56 (airport VARCHAR, iata VARCHAR)
SELECT airport FROM table_name_56 WHERE iata = "sea"
What Position did Aaron Williams play?
CREATE TABLE table_name_12 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_12 WHERE player = "aaron williams"
what's the listing date for the verdigris creek bridge in royal of antelope county?
CREATE TABLE table_name_83 (listed VARCHAR, name VARCHAR, county VARCHAR, location VARCHAR)
SELECT listed FROM table_name_83 WHERE county = "antelope" AND location = "royal" AND name = "verdigris creek bridge"
Name the number of lost where tries for is 109
CREATE TABLE table_17625749_1 (lost VARCHAR, tries_for VARCHAR)
SELECT COUNT(lost) FROM table_17625749_1 WHERE tries_for = "109"
Which High rebounds have a Game larger than 2, and a Team of @ denver, and High assists of kobe bryant (5)?
CREATE TABLE table_name_27 (high_rebounds VARCHAR, high_assists VARCHAR, game VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_name_27 WHERE game > 2 AND team = "@ denver" AND high_assists = "kobe bryant (5)"
What is the year of the first appearance of the Black Knights, who had less than 1 finals appearances?
CREATE TABLE table_name_38 (year_of_first_appearance VARCHAR, corps_name VARCHAR, number_of_finals_appearances VARCHAR)
SELECT COUNT(year_of_first_appearance) FROM table_name_38 WHERE corps_name = "black knights" AND number_of_finals_appearances < 1
Where is the home venue of the team founded in 1993?
CREATE TABLE table_283203_1 (home_venue VARCHAR, founded VARCHAR)
SELECT home_venue FROM table_283203_1 WHERE founded = 1993
Name the number of year for dick hutcherson
CREATE TABLE table_2267857_1 (year VARCHAR, driver VARCHAR)
SELECT COUNT(year) FROM table_2267857_1 WHERE driver = "Dick Hutcherson"
Which Score has a Place of t2?
CREATE TABLE table_name_95 (score VARCHAR, place VARCHAR)
SELECT score FROM table_name_95 WHERE place = "t2"
What is the total number of Bronze, when Gold is greater than 0, when Rank is 4, and when Total is greater than 4?
CREATE TABLE table_name_59 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT COUNT(bronze) FROM table_name_59 WHERE gold > 0 AND rank = "4" AND total > 4
Who is the opponent when there is a win in round greater than 1 and the record is 42-27-10?
CREATE TABLE table_name_23 (opponent VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR)
SELECT opponent FROM table_name_23 WHERE res = "win" AND round > 1 AND record = "42-27-10"
Name the average rating % for shandong satellite tv and share % less than 1.74
CREATE TABLE table_name_13 (rating___percentage_ INTEGER, channel VARCHAR, share___percentage_ VARCHAR)
SELECT AVG(rating___percentage_) FROM table_name_13 WHERE channel = "shandong satellite tv" AND share___percentage_ < 1.74
Which Floors have a Location of ljubljana, and a Name of tr3?
CREATE TABLE table_name_61 (floors VARCHAR, location VARCHAR, name VARCHAR)
SELECT floors FROM table_name_61 WHERE location = "ljubljana" AND name = "tr3"
What type of Bridge is in Stanley?
CREATE TABLE table_name_87 (type VARCHAR, location VARCHAR)
SELECT type FROM table_name_87 WHERE location = "stanley"
What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy?
CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR)
SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = "silverstone motorsport academy"
Who was the director when the writer was John Sullivan?
CREATE TABLE table_17641206_4 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_17641206_4 WHERE written_by = "John Sullivan"
what is the name when the type is hydro, the capacity (mw) is less than 478, the rank is more than 85 and the province is quebec?
CREATE TABLE table_name_15 (name VARCHAR, province VARCHAR, rank VARCHAR, type VARCHAR, capacity___mw__ VARCHAR)
SELECT name FROM table_name_15 WHERE type = "hydro" AND capacity___mw__ < 478 AND rank > 85 AND province = "quebec"
Who is the perpetrator in Uganda who killed 12 in Kampala?
CREATE TABLE table_name_54 (perpetrator VARCHAR, killed VARCHAR, country VARCHAR, location VARCHAR)
SELECT perpetrator FROM table_name_54 WHERE country = "uganda" AND location = "kampala" AND killed = "12"