answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT away_team FROM table_name_67 WHERE tie_no = "14"
Which away team has a Tie no of 14?
CREATE TABLE table_name_67 (away_team VARCHAR, tie_no VARCHAR)
SELECT MIN(membership_amount), MAX(membership_amount) FROM branch WHERE open_year = 2011 OR city = 'London'
Show minimum and maximum amount of memberships for all branches opened in 2011 or located at city London.
CREATE TABLE branch (membership_amount INTEGER, open_year VARCHAR, city VARCHAR)
SELECT intergiro_classification FROM table_name_16 WHERE points_classification = "paolo bettini" AND trofeo_super_team = "davitamon-lotto" AND mountains_classification = "josé rujano"
What is the Intergiro classification when the points classification is Paolo Bettini, Trofeo Super Team is Davitamon-Lotto, and the Mountains classification is José Rujano?
CREATE TABLE table_name_16 (intergiro_classification VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR, trofeo_super_team VARCHAR)
SELECT production_code FROM table_25851971_1 WHERE written_by = "Anthony Sparks"
What was the production code of the episode written by Anthony Sparks?
CREATE TABLE table_25851971_1 (production_code VARCHAR, written_by VARCHAR)
SELECT COUNT(races) FROM table_26400438_1 WHERE podiums = 8
In how many races did he have 8 podium finishes?
CREATE TABLE table_26400438_1 (races VARCHAR, podiums VARCHAR)
SELECT chassis FROM table_name_8 WHERE points = 8
What company made the chassis when there were 8 points?
CREATE TABLE table_name_8 (chassis VARCHAR, points VARCHAR)
SELECT date FROM table_name_74 WHERE save = "||3,073"
What was the date of the game with a save of ||3,073?
CREATE TABLE table_name_74 (date VARCHAR, save VARCHAR)
SELECT away_team AS score FROM table_name_47 WHERE venue = "princes park"
What is the away team score of the game that was played at princes park?
CREATE TABLE table_name_47 (away_team VARCHAR, venue VARCHAR)
SELECT area_km_2 FROM table_171250_2 WHERE official_name = "Saint-Joseph"
What are the area(s) (km2) for saint-joseph?
CREATE TABLE table_171250_2 (area_km_2 VARCHAR, official_name VARCHAR)
SELECT opponent FROM table_name_51 WHERE record = "45–21–4"
Which Opponent has a Record of 45–21–4?
CREATE TABLE table_name_51 (opponent VARCHAR, record VARCHAR)
SELECT T3.Name, COUNT(*) FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID GROUP BY T3.Name
Show the names of companies and the number of employees they have
CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR)
SELECT candidates FROM table_1341472_51 WHERE district = "Wisconsin 1"
Who were the candidates in district Wisconsin 1?
CREATE TABLE table_1341472_51 (candidates VARCHAR, district VARCHAR)
SELECT current_conference FROM table_16168849_1 WHERE left = "1974, 1989"
Name the current conference for 1974, 1989
CREATE TABLE table_16168849_1 (current_conference VARCHAR, left VARCHAR)
SELECT college FROM table_14999879_2 WHERE player = "Steve Justice"
What college did steve justice attend?
CREATE TABLE table_14999879_2 (college VARCHAR, player VARCHAR)
SELECT MAX(minutes) FROM table_25016555_5 WHERE player = "Tracy Reid"
When tracy reid is the player what is the highest amount of minutes?
CREATE TABLE table_25016555_5 (minutes INTEGER, player VARCHAR)
SELECT _number FROM table_13183076_3 WHERE production_code = "3T7057"
What is the # for the episode with a Production code of 3T7057?
CREATE TABLE table_13183076_3 (_number VARCHAR, production_code VARCHAR)
SELECT T2.Shop_Name FROM stock AS T1 JOIN shop AS T2 ON T1.Shop_ID = T2.Shop_ID GROUP BY T1.Shop_ID ORDER BY SUM(T1.quantity) DESC LIMIT 1
Show the name of the shop that have the largest quantity of devices in stock.
CREATE TABLE stock (Shop_ID VARCHAR, quantity INTEGER); CREATE TABLE shop (Shop_Name VARCHAR, Shop_ID VARCHAR)
SELECT nationality FROM table_name_63 WHERE school_club_team = "louisiana state"
Which Nationality has a School/Club Team of louisiana state?
CREATE TABLE table_name_63 (nationality VARCHAR, school_club_team VARCHAR)
SELECT MAX(no_in_season) FROM table_23225927_1 WHERE written_by = "Jonathan Greene"
What is the maximum season number for the episode written by Jonathan Greene?
CREATE TABLE table_23225927_1 (no_in_season INTEGER, written_by VARCHAR)
SELECT SUM(founded) FROM table_name_5 WHERE venue = "villa park"
COunt the Founded which has a Venue of villa park?
CREATE TABLE table_name_5 (founded INTEGER, venue VARCHAR)
SELECT club FROM table_name_82 WHERE country = "netherlands" AND goals = "22"
What club was in Netherlands and had 22 goals?
CREATE TABLE table_name_82 (club VARCHAR, country VARCHAR, goals VARCHAR)
SELECT opponent FROM table_name_64 WHERE result = "w 24-14"
Which opponent had the result of W 24-14?
CREATE TABLE table_name_64 (opponent VARCHAR, result VARCHAR)
SELECT home_team FROM table_name_9 WHERE away_team = "southport"
Which home team had the away team Southport?
CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)
SELECT wine_style FROM table_13981938_1 WHERE grand_cru = "Romanée-Conti"
what's the wine style with grand cru being romanée-conti
CREATE TABLE table_13981938_1 (wine_style VARCHAR, grand_cru VARCHAR)
SELECT speed FROM table_name_13 WHERE time = "1:36.46.93"
Name the speed for 1:36.46.93
CREATE TABLE table_name_13 (speed VARCHAR, time VARCHAR)
SELECT record FROM table_name_1 WHERE january < 7
What was the record after the game before Jan 7?
CREATE TABLE table_name_1 (record VARCHAR, january INTEGER)
SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY COUNT(*) LIMIT 1
Which allergy type has least number of allergies?
CREATE TABLE Allergy_type (allergytype VARCHAR)
SELECT pens FROM table_name_10 WHERE conv = "6"
I want to know the pens with conv of 6
CREATE TABLE table_name_10 (pens VARCHAR, conv VARCHAR)
SELECT SUM(points) FROM table_name_18 WHERE artist = "hari mata hari"
What's the sum of points for artist hari mata hari?
CREATE TABLE table_name_18 (points INTEGER, artist VARCHAR)
SELECT player FROM table_name_9 WHERE college = "murray state"
Which player is from Murray State college?
CREATE TABLE table_name_9 (player VARCHAR, college VARCHAR)
SELECT DISTINCT T2.Name FROM GRAPES AS T1 JOIN WINE AS T2 ON T1.Grape = T2.Grape WHERE T1.Color = "Red"
List the names of all distinct wines that are made of red color grape.
CREATE TABLE GRAPES (Grape VARCHAR, Color VARCHAR); CREATE TABLE WINE (Name VARCHAR, Grape VARCHAR)
SELECT COUNT(capacity) FROM table_name_27 WHERE venue = "yunost"
What is the capacity number for Yunost?
CREATE TABLE table_name_27 (capacity VARCHAR, venue VARCHAR)
SELECT AVG(week) FROM table_name_26 WHERE date = "november 12, 1989"
What is the average week of a game on November 12, 1989?
CREATE TABLE table_name_26 (week INTEGER, date VARCHAR)
SELECT SUM(grid) FROM table_name_83 WHERE time_retired = "engine" AND driver = "teo fabi" AND laps < 39
What is the grid total that had a retired for engine, teo fabi driving, and under 39 laps?
CREATE TABLE table_name_83 (grid INTEGER, laps VARCHAR, time_retired VARCHAR, driver VARCHAR)
SELECT date FROM table_name_91 WHERE competition = "uncaf nations cup 2009"
Name the date of the uncaf nations cup 2009
CREATE TABLE table_name_91 (date VARCHAR, competition VARCHAR)
SELECT MAX(year) FROM table_name_11 WHERE placement_in_miss_world = "did not place" AND delegate = "daisy garcia reyes"
What's the latest year that daisy garcia reyes did not place in miss world?
CREATE TABLE table_name_11 (year INTEGER, placement_in_miss_world VARCHAR, delegate VARCHAR)
SELECT MIN(reg_gp) FROM table_name_26 WHERE player = "larry courville" AND pl_gp < 0
What is the lowest regular GP Larry Courville, who has a PI GP smaller than 0, has?
CREATE TABLE table_name_26 (reg_gp INTEGER, player VARCHAR, pl_gp VARCHAR)
SELECT time_in_office FROM table_name_59 WHERE branch = "u.s. navy"
What time in office does the U.S. Navy have?
CREATE TABLE table_name_59 (time_in_office VARCHAR, branch VARCHAR)
SELECT original_artist FROM table_26250189_1 WHERE theme = "The Rolling Stones"
Who was the original artist of the chosen song when the theme was The Rolling Stones?
CREATE TABLE table_26250189_1 (original_artist VARCHAR, theme VARCHAR)
SELECT laps FROM table_name_56 WHERE driver = "ronnie peterson"
What number of laps were done by driver Ronnie Peterson?
CREATE TABLE table_name_56 (laps VARCHAR, driver VARCHAR)
SELECT driver FROM table_name_84 WHERE grid < 10 AND laps < 70
What driver has a grid of under 10, and under 70 laps?
CREATE TABLE table_name_84 (driver VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT term_end FROM table_name_6 WHERE party = "kadima" AND term_start = "18 january 2006"
What is the end of the term for Kadima that started on 18 January 2006?
CREATE TABLE table_name_6 (term_end VARCHAR, party VARCHAR, term_start VARCHAR)
SELECT score FROM table_name_81 WHERE tie_no = "17"
What is Score, when Tie No is 17?
CREATE TABLE table_name_81 (score VARCHAR, tie_no VARCHAR)
SELECT date FROM table_name_50 WHERE score = "2–7" AND record = "5–8–2"
Which Date has a Score of 2–7, and a Record of 5–8–2?
CREATE TABLE table_name_50 (date VARCHAR, score VARCHAR, record VARCHAR)
SELECT MIN(2009) FROM table_name_18 WHERE 2010 = 141 AND 1985 > 165
What is the lowest 2009 value with a 2010 value of 141 and a 1985 value bigger than 165?
CREATE TABLE table_name_18 (Id VARCHAR)
SELECT administration FROM table_name_56 WHERE season = 2000
What Adminstration has a Season of 2000?
CREATE TABLE table_name_56 (administration VARCHAR, season VARCHAR)
SELECT date FROM table_1639689_2 WHERE week = 2
What day(s) did they play on week 2?
CREATE TABLE table_1639689_2 (date VARCHAR, week VARCHAR)
SELECT T1.first_name, T1.last_name, SUM(T2.total) FROM customers AS T1 JOIN invoices AS T2 ON T2.customer_id = T1.id GROUP BY T1.id ORDER BY SUM(T2.total) DESC LIMIT 10
List the top 10 customers by total gross sales. List customers' first and last name and total gross sales.
CREATE TABLE invoices (total INTEGER, customer_id VARCHAR); CREATE TABLE customers (first_name VARCHAR, last_name VARCHAR, id VARCHAR)
SELECT party FROM table_name_46 WHERE district = "georgia 7"
What party has the district Georgia 7?
CREATE TABLE table_name_46 (party VARCHAR, district VARCHAR)
SELECT opposing_teams FROM table_name_83 WHERE date = "08/02/1969"
Who were the opposing teams on 08/02/1969?
CREATE TABLE table_name_83 (opposing_teams VARCHAR, date VARCHAR)
SELECT funny_car FROM table_name_57 WHERE pro_stock = "jim yates" AND year > 1996
Who won Funny Car when Jim Yates won Pro Stock, in years after 1996?
CREATE TABLE table_name_57 (funny_car VARCHAR, pro_stock VARCHAR, year VARCHAR)
SELECT d_44_√ FROM table_name_19 WHERE d_47_√ = "r 7"
What is the number for D 44 √ when D 47 √ is r 7?
CREATE TABLE table_name_19 (d_44_√ VARCHAR, d_47_√ VARCHAR)
SELECT COUNT(score) FROM table_17323042_7 WHERE team = "Houston"
How many scores are listed for the game against Houston
CREATE TABLE table_17323042_7 (score VARCHAR, team VARCHAR)
SELECT vos__ * _ FROM table_1977630_2 WHERE él___ella___usted = "muela"
What are the forms of the conjucated vos(*) where él / ella / usted is muela
CREATE TABLE table_1977630_2 (vos__ VARCHAR, _ VARCHAR, él___ella___usted VARCHAR)
SELECT name FROM table_name_97 WHERE score = "6–3, 6–3"
What is the name with a Score of 6–3, 6–3?
CREATE TABLE table_name_97 (name VARCHAR, score VARCHAR)
SELECT venue FROM table_name_16 WHERE status = "test match" AND against = 12
What is Venue, when Status is "Test Match", and when Against is "12"?
CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR)
SELECT position FROM table_22496344_1 WHERE home_town = "Houston, TX" AND high_school = "Worthing"
Where is the position when houston, tx is the hometown and worthing is the high school?
CREATE TABLE table_22496344_1 (position VARCHAR, home_town VARCHAR, high_school VARCHAR)
SELECT score FROM table_name_84 WHERE home = "philadelphia"
What is the score when Philadelphia is at home?
CREATE TABLE table_name_84 (score VARCHAR, home VARCHAR)
SELECT result FROM table_name_97 WHERE couple = "steve & anna"
What was the result when the couple was steve & anna?
CREATE TABLE table_name_97 (result VARCHAR, couple VARCHAR)
SELECT time FROM table_name_39 WHERE opponent = "shamil abdurahimov"
Which Time has an Opponent of shamil abdurahimov?
CREATE TABLE table_name_39 (time VARCHAR, opponent VARCHAR)
SELECT AVG(bronze) FROM table_name_51 WHERE nation = "hungary" AND silver < 1
Wha is the average number of bronze of hungary, which has less than 1 silver?
CREATE TABLE table_name_51 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
SELECT number_of_dances FROM table_name_69 WHERE place > 1 AND total_points = 40
How many dances placed below 1 with a point total of 40?
CREATE TABLE table_name_69 (number_of_dances VARCHAR, place VARCHAR, total_points VARCHAR)
SELECT warship FROM table_23614702_2 WHERE main_artillery = "1x115-2x70-2x12-pounders"
List the ship with 1x115-2x70-2x12-pounders for primary artillery.
CREATE TABLE table_23614702_2 (warship VARCHAR, main_artillery VARCHAR)
SELECT MIN(rank) FROM table_19744915_17 WHERE vote_percentage = "2.111%"
If the vote percentage is 2.111%, what was the minimum rank?
CREATE TABLE table_19744915_17 (rank INTEGER, vote_percentage VARCHAR)
SELECT schwaben FROM table_name_98 WHERE oberbayern = "fc ingolstadt 04" AND mittelfranken = "sv seligenporten"
Which Schwaben has an Oberbayern of fc ingolstadt 04 and a Mittelfranken of sv seligenporten
CREATE TABLE table_name_98 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR)
SELECT tickets_sold___available FROM table_name_44 WHERE gross_revenue__2011_ = "$366,916"
How many tickets were sold/available when the gross revenue (2011) was $366,916?
CREATE TABLE table_name_44 (tickets_sold___available VARCHAR, gross_revenue__2011_ VARCHAR)
SELECT attendance FROM table_name_64 WHERE home_team = "carlisle united"
What is the attendance of the match with Carlisle united as the home team?
CREATE TABLE table_name_64 (attendance VARCHAR, home_team VARCHAR)
SELECT object_type FROM table_name_56 WHERE apparent_magnitude > 9.6 AND right_ascension___j2000__ = "17h59m02.0s"
Which object has an Apparent magnitude larger than 9.6, and a Right ascension ( J2000 ) of 17h59m02.0s?
CREATE TABLE table_name_56 (object_type VARCHAR, apparent_magnitude VARCHAR, right_ascension___j2000__ VARCHAR)
SELECT week_of FROM table_29302781_12 WHERE runner_up = "Pat Du Pré"
In the week of what was the runner-up Pat Du Pré?
CREATE TABLE table_29302781_12 (week_of VARCHAR, runner_up VARCHAR)
SELECT lost FROM table_name_52 WHERE played = "22" AND losing_bp = "2" AND club = "merthyr rfc"
What is the total number of games lost when 22 have been played, the losing BP number is 2, and the club is Merthyr RFC?
CREATE TABLE table_name_52 (lost VARCHAR, club VARCHAR, played VARCHAR, losing_bp VARCHAR)
SELECT 2 AS _3__p_ FROM table_name_76 WHERE verb = "khêla"
WHICH 2/3 (P) has a Verb of khêla?
CREATE TABLE table_name_76 (verb VARCHAR)
SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Confirmed" INTERSECT SELECT T2.apt_number FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.booking_status_code = "Provisional"
Show the apartment numbers of apartments with bookings that have status code both "Provisional" and "Confirmed"
CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR); CREATE TABLE Apartment_Bookings (apt_id VARCHAR, booking_status_code VARCHAR)
SELECT centerfold_model FROM table_1566850_8 WHERE pictorials = "Marilyn Monroe"
Who was the centerfold model when a pictorial was done on marilyn monroe?
CREATE TABLE table_1566850_8 (centerfold_model VARCHAR, pictorials VARCHAR)
SELECT team FROM table_13619053_8 WHERE record = "13-48"
Who did the Raptors play against when their record was 13-48?
CREATE TABLE table_13619053_8 (team VARCHAR, record VARCHAR)
SELECT final FROM table_name_55 WHERE team = "liechtenstein (lie) liechtenstein i"
Which Final has a Team of liechtenstein (lie) liechtenstein i?
CREATE TABLE table_name_55 (final VARCHAR, team VARCHAR)
SELECT 2010 FROM table_name_59 WHERE 2006 = "a" AND 2009 = "1r"
What is the value for 2010 when the value for 2006 is A and the value for 2009 is 1R?
CREATE TABLE table_name_59 (Id VARCHAR)
SELECT loss FROM table_name_29 WHERE record = "84-71"
What was the loss of the game with a record of 84-71?
CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR)
SELECT artist FROM table_name_38 WHERE catalog__number = "zk 34354"
Who is the artist with catalog number ZK 34354?
CREATE TABLE table_name_38 (artist VARCHAR, catalog__number VARCHAR)
SELECT season FROM table_name_77 WHERE podiums = "0" AND races = "1" AND points = "0"
Which Season has 0 Podiums, 1 Race, and 0 Points?
CREATE TABLE table_name_77 (season VARCHAR, points VARCHAR, podiums VARCHAR, races VARCHAR)
SELECT firefox FROM table_name_56 WHERE internet_explorer = "22.0%"
What is the firefox value with a 22.0% internet explorer?
CREATE TABLE table_name_56 (firefox VARCHAR, internet_explorer VARCHAR)
SELECT guest FROM table_25691838_8 WHERE original_airdate = "August 16"
Who were the guests on the episode that first aired August 16?
CREATE TABLE table_25691838_8 (guest VARCHAR, original_airdate VARCHAR)
SELECT MIN(long) FROM table_name_5 WHERE player = "santana moss" AND att > 1
I want to know the longest Long for santana moss and Att more than 1
CREATE TABLE table_name_5 (long INTEGER, player VARCHAR, att VARCHAR)
SELECT candidate FROM table_name_45 WHERE result = "10 fired in week 2 (1-27-2005)"
Who is the candidate that had 10 fired in week 2 (1-27-2005)?
CREATE TABLE table_name_45 (candidate VARCHAR, result VARCHAR)
SELECT school_club_team_country FROM table_11734041_3 WHERE years_for_rockets = "2000-01"
Which school, club team, or country played for the rockets in the years 2000-01?
CREATE TABLE table_11734041_3 (school_club_team_country VARCHAR, years_for_rockets VARCHAR)
SELECT theme FROM table_12175755_1 WHERE song_choice = "Not Aired"
What is the song choice when the theme is not aired?
CREATE TABLE table_12175755_1 (theme VARCHAR, song_choice VARCHAR)
SELECT COUNT(*) FROM medicine WHERE FDA_approved = 'No'
How many medicines have the FDA approval status 'No' ?
CREATE TABLE medicine (FDA_approved VARCHAR)
SELECT SUM(lesson_time) FROM Lessons AS T1 JOIN Staff AS T2 ON T1.staff_id = T2.staff_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn"
How long is the total lesson time taught by staff with first name as Janessa and last name as Sawayn?
CREATE TABLE Lessons (staff_id VARCHAR); CREATE TABLE Staff (staff_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
SELECT rank FROM table_name_51 WHERE time = "6:24.35"
What is the rank for the rowers with the time of 6:24.35?
CREATE TABLE table_name_51 (rank VARCHAR, time VARCHAR)
SELECT COUNT(attendance) FROM table_name_50 WHERE home = "detroit" AND decision = "hasek"
What is the total attendance for Detroit on hasek?
CREATE TABLE table_name_50 (attendance VARCHAR, home VARCHAR, decision VARCHAR)
SELECT COUNT(mens_doubles) FROM table_12266757_1 WHERE season = "1970/1971"
How many mens doubles took place in 1970/1971?
CREATE TABLE table_12266757_1 (mens_doubles VARCHAR, season VARCHAR)
SELECT COUNT(DISTINCT Nationality) FROM people
How many distinct nationalities are there?
CREATE TABLE people (Nationality VARCHAR)
SELECT date FROM table_name_72 WHERE location = "zandvoort"
What was the date when the location was Zandvoort?
CREATE TABLE table_name_72 (date VARCHAR, location VARCHAR)
SELECT medal FROM table_name_60 WHERE games = "1996 atlanta" AND sport = "wrestling"
What medal was won in the 1996 Atlanta games in wrestling?
CREATE TABLE table_name_60 (medal VARCHAR, games VARCHAR, sport VARCHAR)
SELECT captain FROM table_name_54 WHERE manufacturer = "nike" AND club = "manchester united"
Which Manchester United captain is sponsored by Nike?
CREATE TABLE table_name_54 (captain VARCHAR, manufacturer VARCHAR, club VARCHAR)
SELECT to_par FROM table_name_96 WHERE place = "t3" AND country = "england"
What to par has t3 as the place and england as the country?
CREATE TABLE table_name_96 (to_par VARCHAR, place VARCHAR, country VARCHAR)
SELECT MAX(wins) FROM table_16225511_2 WHERE school = "Texas"
What's the largest amount of wins Texas has?
CREATE TABLE table_16225511_2 (wins INTEGER, school VARCHAR)
SELECT T2.Comptroller FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T1.District = 1 OR T1.District = 2
Who were the comptrollers of the parties associated with the delegates from district 1 or district 2?
CREATE TABLE party (Comptroller VARCHAR, Party_ID VARCHAR); CREATE TABLE election (Party VARCHAR, District VARCHAR)
SELECT easa__eu_ FROM table_name_76 WHERE notes = "aoc 135"
What is the EASA (EU) when the notes show aoc 135?
CREATE TABLE table_name_76 (easa__eu_ VARCHAR, notes VARCHAR)
SELECT notes FROM table_name_85 WHERE time = "6:31.16"
What are the notes for 6:31.16?
CREATE TABLE table_name_85 (notes VARCHAR, time VARCHAR)
SELECT COUNT(date_of_appointment) FROM table_17085981_2 WHERE replaced_by = "Jürgen Kohler"
How many appointment dates were recorded when Jürgen Kohler was the replaced by?
CREATE TABLE table_17085981_2 (date_of_appointment VARCHAR, replaced_by VARCHAR)