answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT SUM(gold) FROM table_name_70 WHERE total > 2 AND bronze > 1 AND silver < 1
What is the sum of Gold, when Total is greater than 2, when Bronze is greater than 1, and when Silver is less than 1?
CREATE TABLE table_name_70 (gold INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT COUNT(DISTINCT party_name) FROM party
How many parties do we have?
CREATE TABLE party (party_name VARCHAR)
SELECT name FROM table_name_19 WHERE dcsf_number = 3373
Who has a DCSF number of 3373?
CREATE TABLE table_name_19 (name VARCHAR, dcsf_number VARCHAR)
SELECT COUNT(longitude) FROM table_name_1 WHERE ansi_code = 1036573 AND water__sqmi_ < 0.404
What;s the total of Longitude with an ANSI code of 1036573 and has Water (sqmi) that is smaller than 0.404?
CREATE TABLE table_name_1 (longitude VARCHAR, ansi_code VARCHAR, water__sqmi_ VARCHAR)
SELECT engine FROM table_name_74 WHERE points = 0 AND entrant = "élie bayol"
Which engine did Élie Bayol use when they earned 0 points?
CREATE TABLE table_name_74 (engine VARCHAR, points VARCHAR, entrant VARCHAR)
SELECT date FROM table_name_69 WHERE opponent_in_the_final = "arnaud di pasquale"
What is the date of the match with arnaud di pasquale as the opponent in the final?
CREATE TABLE table_name_69 (date VARCHAR, opponent_in_the_final VARCHAR)
SELECT COUNT(attendance) FROM table_name_89 WHERE home = "bulls"
How many people were in attendance when the home shows as Bulls?
CREATE TABLE table_name_89 (attendance VARCHAR, home VARCHAR)
SELECT COUNT(end_date) FROM table_24057191_2 WHERE average_viewers__millions_ = "4.2"
How many different end dates are there for the series seen by 4.2 million people?
CREATE TABLE table_24057191_2 (end_date VARCHAR, average_viewers__millions_ VARCHAR)
SELECT capital FROM table_name_97 WHERE hangul_chosongul = "경상남도"
Which capital has a Hangul of 경상남도?
CREATE TABLE table_name_97 (capital VARCHAR, hangul_chosongul VARCHAR)
SELECT tries_for FROM table_name_35 WHERE try_bonus = "6" AND tries_against = "41" AND points_against = "317"
Name the tries when tries against were 41, try bonus was 6, and had 317 points.
CREATE TABLE table_name_35 (tries_for VARCHAR, points_against VARCHAR, try_bonus VARCHAR, tries_against VARCHAR)
SELECT winner FROM table_name_29 WHERE event = "billabong pro" AND country = "french polynesia"
Who was the Winner of the French Polynesia Billabong Pro Event?
CREATE TABLE table_name_29 (winner VARCHAR, event VARCHAR, country VARCHAR)
SELECT current_club FROM table_12962773_12 WHERE year_born = 1984
What current club does the player born in 1984 play for?
CREATE TABLE table_12962773_12 (current_club VARCHAR, year_born VARCHAR)
SELECT result FROM table_name_27 WHERE opponent = "clyde" AND venue = "h"
What is the result of the match with clyde as the opponent in the h venue?
CREATE TABLE table_name_27 (result VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT song_name FROM table_11827596_2 WHERE film_name = "Kaal Bhairav"
what are the song names for the film kaal bhairav?
CREATE TABLE table_11827596_2 (song_name VARCHAR, film_name VARCHAR)
SELECT MIN(car__number) FROM table_name_39 WHERE driver = "ryan newman" AND pos > 10
Which Car # has a Driver of ryan newman, and a Position larger than 10?
CREATE TABLE table_name_39 (car__number INTEGER, driver VARCHAR, pos VARCHAR)
SELECT money___$__ FROM table_name_4 WHERE place = "t1" AND player = "jack fleck"
Which money has player Jack Fleck with t1 place?
CREATE TABLE table_name_4 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)
SELECT location FROM table_name_1 WHERE opponent = "billy kidd"
Where was the location where justin robbins fought against billy kidd?
CREATE TABLE table_name_1 (location VARCHAR, opponent VARCHAR)
SELECT leading_scorer FROM table_name_40 WHERE visitor = "magic" AND date = "march 22, 2008"
Who is the leading scorer for the game on March 22, 2008 with a visitor of Magic?
CREATE TABLE table_name_40 (leading_scorer VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT class FROM table_21538523_1 WHERE type = "FJ/RN/SC"
Type FJ/RN/SC is associated with what class?
CREATE TABLE table_21538523_1 (class VARCHAR, type VARCHAR)
SELECT incumbent FROM table_2668374_18 WHERE district = "Virginia 3"
Who was the incumbent in Virginia 3?
CREATE TABLE table_2668374_18 (incumbent VARCHAR, district VARCHAR)
SELECT time__cet_ FROM table_21536557_2 WHERE time = "5:04.8"
What is every time(cet) for a time of 5:04.8?
CREATE TABLE table_21536557_2 (time__cet_ VARCHAR, time VARCHAR)
SELECT romanization FROM table_name_81 WHERE source_language = "mandarin" AND rōmaji = "ūroncha"
What is the Romanization of the Mandarin word whose Rōmaji is ūroncha
CREATE TABLE table_name_81 (romanization VARCHAR, source_language VARCHAR, rōmaji VARCHAR)
SELECT opponent FROM table_name_53 WHERE save = "smith (26)"
Who was the opponent that also has a save of Smith (26)?
CREATE TABLE table_name_53 (opponent VARCHAR, save VARCHAR)
SELECT AVG(singapore) FROM table_name_80 WHERE london < 0
What is the average Singapore value with a London value less than 0?
CREATE TABLE table_name_80 (singapore INTEGER, london INTEGER)
SELECT opponent FROM table_17972136_1 WHERE date = "October 4"
What is the opponent played on October 4?
CREATE TABLE table_17972136_1 (opponent VARCHAR, date VARCHAR)
SELECT laps FROM table_name_48 WHERE time_retired = "+1:08.577"
What shows for laps when the Time/Retired was +1:08.577?
CREATE TABLE table_name_48 (laps VARCHAR, time_retired VARCHAR)
SELECT T2.address FROM staff AS T1 JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T1.first_name = 'Elsa'
Where does the staff member with the first name Elsa live?
CREATE TABLE staff (address_id VARCHAR, first_name VARCHAR); CREATE TABLE address (address VARCHAR, address_id VARCHAR)
SELECT COUNT(grid) FROM table_name_14 WHERE rider = "james toseland"
Tell me the total number of grid for rider of james toseland
CREATE TABLE table_name_14 (grid VARCHAR, rider VARCHAR)
SELECT lifetime FROM table_name_3 WHERE name = "alan gendreau"
Which lifetime has alan gendreau?
CREATE TABLE table_name_3 (lifetime VARCHAR, name VARCHAR)
SELECT venue FROM table_name_92 WHERE season = "1935"
During season 1935, what was the venue?
CREATE TABLE table_name_92 (venue VARCHAR, season VARCHAR)
SELECT COUNT(birthday) FROM table_26615633_1 WHERE jewel = "Malachite"
how many times is the jewel malachite?
CREATE TABLE table_26615633_1 (birthday VARCHAR, jewel VARCHAR)
SELECT MIN(height__m_) FROM table_name_26 WHERE prominence__m_ = 2 OFFSET 349
What is the smallest height with a prominence of 2,349?
CREATE TABLE table_name_26 (height__m_ INTEGER, prominence__m_ VARCHAR)
SELECT result FROM table_name_49 WHERE week > 11 AND date = "december 13, 1964"
After week 11, what was the Result on December 13, 1964?
CREATE TABLE table_name_49 (result VARCHAR, week VARCHAR, date VARCHAR)
SELECT word_form FROM table_name_39 WHERE khmer > ១០០០០០ AND ungegn = "(muŏy) dáb leăn"
What is the Word Form, when the Khmer is greater than ១០០០០០, and the UNGEGN is (muŏy) dáb leăn?
CREATE TABLE table_name_39 (word_form VARCHAR, khmer VARCHAR, ungegn VARCHAR)
SELECT home_team FROM table_16388398_2 WHERE ground = "M.C.G."
What is the home team that played on M.C.G. grounds?
CREATE TABLE table_16388398_2 (home_team VARCHAR, ground VARCHAR)
SELECT geo_id FROM table_18600760_9 WHERE ansi_code = 1759243
What is the geo code of the township with ANSI code 1759243?
CREATE TABLE table_18600760_9 (geo_id VARCHAR, ansi_code VARCHAR)
SELECT date FROM table_name_45 WHERE loss = "sutcliffe (10-4)"
What is the date for the game that included a loss of sutcliffe (10-4)?
CREATE TABLE table_name_45 (date VARCHAR, loss VARCHAR)
SELECT pick__number FROM table_name_50 WHERE position = "d" AND college_junior_club_team = "university of maine (ncaa)"
What is the pick number for position of D from the University of Maine (NCAA)?
CREATE TABLE table_name_50 (pick__number VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)
SELECT constructor FROM table_name_55 WHERE driver = "jenson button"
who is the constructor when the driver is jenson button?
CREATE TABLE table_name_55 (constructor VARCHAR, driver VARCHAR)
SELECT winning_score FROM table_name_9 WHERE runner_s__up = "neal briggs"
What was the winning score when the runner-up was Neal Briggs?
CREATE TABLE table_name_9 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT COUNT(winning_driver) FROM table_10706879_3 WHERE name = "Kraco Twin 125 (R2)"
How many winning drivers in the kraco twin 125 (r2) race were there?
CREATE TABLE table_10706879_3 (winning_driver VARCHAR, name VARCHAR)
SELECT MIN(pick) FROM table_name_35 WHERE position = "of" AND team = "chicago white sox"
What was the lowest pick when the position was OF with the Chicago White Sox?
CREATE TABLE table_name_35 (pick INTEGER, position VARCHAR, team VARCHAR)
SELECT AVG(goals) FROM table_name_65 WHERE competition = "k-league" AND team = "pohang steelers" AND name = "park sung-ho" AND total_gs < 46
What is the average number of goals of park sung-ho at the k-league competition, which has the pohang steelers team and less than 46 total Gs?
CREATE TABLE table_name_65 (goals INTEGER, total_gs VARCHAR, name VARCHAR, competition VARCHAR, team VARCHAR)
SELECT MAX(attendance) FROM table_23486853_5
What was the largest attended game?
CREATE TABLE table_23486853_5 (attendance INTEGER)
SELECT COUNT(team__number1) FROM table_16795394_3 WHERE team__number2 = "San Lorenzo"
If team two is San Lorenzo, how many were on team one?
CREATE TABLE table_16795394_3 (team__number1 VARCHAR, team__number2 VARCHAR)
SELECT T1.name FROM useracct AS T1 JOIN trust AS T2 ON T1.u_id = T2.source_u_id GROUP BY T2.source_u_id ORDER BY AVG(trust) DESC LIMIT 1
Find the name of the source user with the highest average trust score.
CREATE TABLE useracct (name VARCHAR, u_id VARCHAR); CREATE TABLE trust (source_u_id VARCHAR)
SELECT date FROM table_name_31 WHERE course = "rome to naples"
On what date was the race course from Rome to Naples?
CREATE TABLE table_name_31 (date VARCHAR, course VARCHAR)
SELECT COUNT(2 AS nd_runner_up) FROM table_20325360_2 WHERE rank = 2
For the country that holds a rank of 2, in the Mr. International Competition, what is the total number of competitors listed as 2nd runner ups?
CREATE TABLE table_20325360_2 (rank VARCHAR)
SELECT date FROM table_name_47 WHERE record = "79-48"
What date has 79-48 as the record?
CREATE TABLE table_name_47 (date VARCHAR, record VARCHAR)
SELECT position FROM table_name_16 WHERE height_in_ft = "6-10"
What position does the player who is 6-10 play?
CREATE TABLE table_name_16 (position VARCHAR, height_in_ft VARCHAR)
SELECT to_par FROM table_name_89 WHERE winner = "gary player"
What did winner Gary Player par?
CREATE TABLE table_name_89 (to_par VARCHAR, winner VARCHAR)
SELECT home_team AS score FROM table_name_51 WHERE away_team = "essendon"
What was the home team score when essendon was the away team?
CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR)
SELECT MIN(overall) FROM table_name_19 WHERE position = "wide receiver" AND round < 5 AND pick__number > 7
What is the lowest overall of the wide receiver player from a round higher than 5 and a pick lower than 7?
CREATE TABLE table_name_19 (overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR)
SELECT away_team AS score FROM table_name_84 WHERE home_team = "hawthorn"
What away team score has hawthorn as the home team?
CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR)
SELECT team FROM table_17058178_8 WHERE date = "January 2"
Who did the Trail Blazers play on January 2?
CREATE TABLE table_17058178_8 (team VARCHAR, date VARCHAR)
SELECT score FROM table_name_1 WHERE record = "34–17–11–2"
What was the score of the game with a record of 34–17–11–2?
CREATE TABLE table_name_1 (score VARCHAR, record VARCHAR)
SELECT date FROM table_name_16 WHERE road_team = "portland" AND game = "game 5"
Which Date has a Road team of portland, and a Game of game 5?
CREATE TABLE table_name_16 (date VARCHAR, road_team VARCHAR, game VARCHAR)
SELECT opponent FROM table_name_86 WHERE attendance = "76,965"
Name the opponent that has attendance of 76,965
CREATE TABLE table_name_86 (opponent VARCHAR, attendance VARCHAR)
SELECT location FROM table_27887723_1 WHERE team = "Trek-Livestrong"
what location has team trek-livestrong?
CREATE TABLE table_27887723_1 (location VARCHAR, team VARCHAR)
SELECT COUNT(laps) FROM table_name_94 WHERE team = "wps racing"
Can you tell me the total number of Laps that has the Team of wps racing?
CREATE TABLE table_name_94 (laps VARCHAR, team VARCHAR)
SELECT country___exonym__ FROM table_1008653_9 WHERE official_or_native_language_s___alphabet_script_ = "Icelandic"
What is the country (exonym) where the official or native language(s) (alphabet/script) is Icelandic?
CREATE TABLE table_1008653_9 (country___exonym__ VARCHAR, official_or_native_language_s___alphabet_script_ VARCHAR)
SELECT MAX(to_par) FROM table_name_19 WHERE place = "t2" AND player = "mark brooks"
What is the highest to par of player mark brooks, who has a t2 place?
CREATE TABLE table_name_19 (to_par INTEGER, place VARCHAR, player VARCHAR)
SELECT MIN(reported_offenses) FROM table_name_96 WHERE killeen_rate = 511.6 AND texas_rate < 314.4
Killeen Rate of 511.6, and a Texas Rate smaller than 314.4 is the lowest reported offenses?
CREATE TABLE table_name_96 (reported_offenses INTEGER, killeen_rate VARCHAR, texas_rate VARCHAR)
SELECT date_of_vacancy FROM table_11207040_6 WHERE replaced_by = "John Brown"
What days are vacant that were replaced by john brown?
CREATE TABLE table_11207040_6 (date_of_vacancy VARCHAR, replaced_by VARCHAR)
SELECT date FROM table_16388478_3 WHERE away_team = "Fremantle"
On what date did the away team Fremantle play?
CREATE TABLE table_16388478_3 (date VARCHAR, away_team VARCHAR)
SELECT result FROM table_19744915_18 WHERE public = 8
When 8 is the public what are the results?
CREATE TABLE table_19744915_18 (result VARCHAR, public VARCHAR)
SELECT district FROM table_1341843_44 WHERE first_elected = 1966
What was the district who had their first elected in 1966?
CREATE TABLE table_1341843_44 (district VARCHAR, first_elected VARCHAR)
SELECT COUNT(first_elected) FROM table_1342338_3 WHERE result = "Lost renomination"
How many in total were elected first in lost renomination?
CREATE TABLE table_1342338_3 (first_elected VARCHAR, result VARCHAR)
SELECT metropolitan_area FROM table_22916979_2 WHERE rank = 60
which area has a rank of 60?
CREATE TABLE table_22916979_2 (metropolitan_area VARCHAR, rank VARCHAR)
SELECT MAX(year_born) FROM table_23670057_4 WHERE player = "Ido Kozikaro"
What is the date of birth for basket baller called ido kozikaro
CREATE TABLE table_23670057_4 (year_born INTEGER, player VARCHAR)
SELECT works_number FROM table_name_39 WHERE date = "early 1873" AND name = "owen sound"
In early 1873, Owen sound had what works number?
CREATE TABLE table_name_39 (works_number VARCHAR, date VARCHAR, name VARCHAR)
SELECT COUNT(season) FROM table_24575253_4 WHERE division_two = "Racing Epsom"
When racing epsom is in division two how many seasons are there?
CREATE TABLE table_24575253_4 (season VARCHAR, division_two VARCHAR)
SELECT date FROM table_name_57 WHERE partner = "marcella mesker" AND score = "0–6, 2–6"
What is the Date of the match with a Score of 0–6, 2–6 with Partner Marcella Mesker?
CREATE TABLE table_name_57 (date VARCHAR, partner VARCHAR, score VARCHAR)
SELECT MAX(points) FROM table_27539272_4 WHERE record = "1-3-1"
Name the most points for 1-3-1 record
CREATE TABLE table_27539272_4 (points INTEGER, record VARCHAR)
SELECT DISTINCT T1.city FROM addresses AS T1 JOIN people_addresses AS T2 ON T1.address_id = T2.address_id JOIN students AS T3 ON T2.person_id = T3.student_id
Find distinct cities of address of students?
CREATE TABLE students (student_id VARCHAR); CREATE TABLE addresses (city VARCHAR, address_id VARCHAR); CREATE TABLE people_addresses (address_id VARCHAR, person_id VARCHAR)
SELECT notes FROM table_1181375_1 WHERE number_range = "17"
what's the notes where number range is 17
CREATE TABLE table_1181375_1 (notes VARCHAR, number_range VARCHAR)
SELECT athlete FROM table_name_48 WHERE result = "4.30"
What was the athlete with a final result of 4.30?
CREATE TABLE table_name_48 (athlete VARCHAR, result VARCHAR)
SELECT nationality FROM table_name_96 WHERE jersey_number_s_ = "27"
What is the nationality of the person with number 27?
CREATE TABLE table_name_96 (nationality VARCHAR, jersey_number_s_ VARCHAR)
SELECT losing_bonus FROM table_name_82 WHERE tries_for = "0"
What is the losing bonus associated with 0 tries for?
CREATE TABLE table_name_82 (losing_bonus VARCHAR, tries_for VARCHAR)
SELECT MAX(total__kg_) FROM table_name_43 WHERE bodyweight < 136.16 AND clean_ & _jerk > 135
Which weightlifter, who had a bodyweight of less than 136.16 and a clean and jerk larger than 135, had the highest Total?
CREATE TABLE table_name_43 (total__kg_ INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
SELECT MIN(land___sqmi__) FROM table_name_79 WHERE water__sqmi_ < 0.04 AND longitude = -96.794706
Which Land (sqmi) has a Water (sqmi) smaller than 0.04, and a Longitude of -96.794706?
CREATE TABLE table_name_79 (land___sqmi__ INTEGER, water__sqmi_ VARCHAR, longitude VARCHAR)
SELECT MAX(attendance) FROM table_name_45 WHERE record = "37-38"
Which Attendance is the highest one that has a Record of 37-38?
CREATE TABLE table_name_45 (attendance INTEGER, record VARCHAR)
SELECT team__a_ FROM table_1594772_2 WHERE match_date = "Feb 27, 1996"
Namethe team for feb 27, 1996
CREATE TABLE table_1594772_2 (team__a_ VARCHAR, match_date VARCHAR)
SELECT volleyball FROM table_16423070_4 WHERE basketball = "West Holmes" AND swimming = "Wooster" AND school_year = "2011-12"
Who won volleyball when west holmes won basketball and wooster won swimming in 2011-12
CREATE TABLE table_16423070_4 (volleyball VARCHAR, school_year VARCHAR, basketball VARCHAR, swimming VARCHAR)
SELECT record FROM table_name_11 WHERE date = "april 12"
What is the team's record on april 12?
CREATE TABLE table_name_11 (record VARCHAR, date VARCHAR)
SELECT MAX(T2.gradepoint), MIN(T2.gradepoint) FROM ENROLLED_IN AS T1 JOIN GRADECONVERSION AS T2 JOIN STUDENT AS T3 ON T1.Grade = T2.lettergrade AND T1.StuID = T3.StuID WHERE T3.city_code = "NYC"
What is the maximum and minimum grade point of students who live in NYC?
CREATE TABLE ENROLLED_IN (Grade VARCHAR, StuID VARCHAR); CREATE TABLE STUDENT (city_code VARCHAR, StuID VARCHAR); CREATE TABLE GRADECONVERSION (gradepoint INTEGER, lettergrade VARCHAR)
SELECT player FROM table_name_64 WHERE place = "t2" AND score = 74 - 70 - 68 = 212
What is the Player that has a Place of t2, and a Score of 74-70-68=212?
CREATE TABLE table_name_64 (player VARCHAR, place VARCHAR, score VARCHAR)
SELECT score FROM table_name_68 WHERE year > 2004 AND champion = "gaël monfils"
Which Score has a Year larger than 2004, and a Champion of gaël monfils?
CREATE TABLE table_name_68 (score VARCHAR, year VARCHAR, champion VARCHAR)
SELECT date FROM table_name_26 WHERE score_in_final = "4–6, 1–6" AND partner = "steffi graf"
What is the Date of the match with Partner Steffi Graf with a Score in Final of 4–6, 1–6?
CREATE TABLE table_name_26 (date VARCHAR, score_in_final VARCHAR, partner VARCHAR)
SELECT MIN(first_elected) FROM table_1341522_50 WHERE incumbent = "Jim McDermott"
What year was incumbent jim mcdermott first elected?
CREATE TABLE table_1341522_50 (first_elected INTEGER, incumbent VARCHAR)
SELECT conf FROM table_name_78 WHERE head_coach = "k. c. jones"
What is the name of the conference that K. C. Jones was a head coach in?
CREATE TABLE table_name_78 (conf VARCHAR, head_coach VARCHAR)
SELECT economics FROM table_145439_1 WHERE education = "92.0"
what's the economics score with education being 92.0
CREATE TABLE table_145439_1 (economics VARCHAR, education VARCHAR)
SELECT player FROM table_28498999_5 WHERE score = 68 - 70 - 68 - 69 = 275
What is the player listed when the score is 68-70-68-69=275
CREATE TABLE table_28498999_5 (player VARCHAR, score VARCHAR)
SELECT constituency FROM table_name_93 WHERE conservative = "darren millar"
What constituency does the Conservative Darren Millar belong to?
CREATE TABLE table_name_93 (constituency VARCHAR, conservative VARCHAR)
SELECT high_rebounds FROM table_name_8 WHERE date = "march 12"
What is High Rebounds, when Date is "March 12"?
CREATE TABLE table_name_8 (high_rebounds VARCHAR, date VARCHAR)
SELECT result FROM table_name_98 WHERE competition = "friendly match"
what team won the friendly match
CREATE TABLE table_name_98 (result VARCHAR, competition VARCHAR)
SELECT country FROM table_name_30 WHERE to_par = "+3" AND score = 74 - 73 = 147
What is the country that the player is from with +3 to par and score of 74-73=147?
CREATE TABLE table_name_30 (country VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT acquisition_via FROM table_name_26 WHERE position = "center"
How was the player in the position of Center acquired?
CREATE TABLE table_name_26 (acquisition_via VARCHAR, position VARCHAR)
SELECT date FROM table_name_39 WHERE home = "cavaliers" AND visitor = "warriors"
What date was the game played with the Cavaliers at home and the Warriors visiting?
CREATE TABLE table_name_39 (date VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT outgoing_manager FROM table_name_64 WHERE replaced_by = "jürgen klopp"
Who is the outgoing manager who was replaced by jürgen klopp?
CREATE TABLE table_name_64 (outgoing_manager VARCHAR, replaced_by VARCHAR)