question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the average number of points for clubs that have played more than 42 times?
columns: - name: points type: INTEGER - name: played type: INTEGER table: table_name_96
SELECT AVG(points) FROM table_name_96 WHERE played > 42
What is the class of the Coca-cola classic 12 hours of sebring race?
columns: - name: class type: VARCHAR - name: race type: VARCHAR table: table_name_35
SELECT class FROM table_name_35 WHERE race = "coca-cola classic 12 hours of sebring"
What was the score of the game whose first star was O. Pavelec?
columns: - name: score type: VARCHAR - name: first_star type: VARCHAR table: table_27537518_6
SELECT score FROM table_27537518_6 WHERE first_star = "O. Pavelec"
What is the total pick numbers for the CFL team Edmonton Eskimos?
columns: - name: pick__number type: INTEGER - name: cfl_team type: VARCHAR table: table_name_79
SELECT SUM(pick__number) FROM table_name_79 WHERE cfl_team = "edmonton eskimos"
What;s the total of Longitude with an ANSI code of 1036573 and has Water (sqmi) that is smaller than 0.404?
columns: - name: longitude type: VARCHAR - name: ansi_code type: VARCHAR - name: water__sqmi_ type: VARCHAR table: table_name_1
SELECT COUNT(longitude) FROM table_name_1 WHERE ansi_code = 1036573 AND water__sqmi_ < 0.404
WHAT IS THE NAME WITH A SUMMER TRANSFER WINDOW, AND COUNTRY SEN?
columns: - name: name type: VARCHAR - name: transfer_window type: VARCHAR - name: country type: VARCHAR table: table_name_39
SELECT name FROM table_name_39 WHERE transfer_window = "summer" AND country = "sen"
What is the fewest bronze medals when the total medals is less than 10, and the gold medals less than 0?
columns: - name: bronze type: INTEGER - name: total type: VARCHAR - name: gold type: VARCHAR table: table_name_16
SELECT MIN(bronze) FROM table_name_16 WHERE total < 10 AND gold < 0
what is the finish when the manager is tom kotchman and record is 43-33?
columns: - name: finish type: VARCHAR - name: manager type: VARCHAR - name: record type: VARCHAR table: table_name_82
SELECT finish FROM table_name_82 WHERE manager = "tom kotchman" AND record = "43-33"
What is the average number of people killed with a Perpetrator of wirjo, 42?
columns: - name: killed type: INTEGER - name: perpetrator type: VARCHAR table: table_name_54
SELECT AVG(killed) FROM table_name_54 WHERE perpetrator = "wirjo, 42"
WHAT IS THE NAME WITH 01.0 10 light street?
columns: - name: name type: VARCHAR - name: street_address type: VARCHAR table: table_name_63
SELECT name FROM table_name_63 WHERE street_address = "01.0 10 light street"
Can you tell me the Series that has the Wins of 0, and the Season of a 2002?
columns: - name: series type: VARCHAR - name: wins type: VARCHAR - name: season type: VARCHAR table: table_name_63
SELECT series FROM table_name_63 WHERE wins = 0 AND season = "2002"
What is the name of the player with total offense of 454?
columns: - name: player type: VARCHAR - name: total_offense type: VARCHAR table: table_28697228_4
SELECT player FROM table_28697228_4 WHERE total_offense = 454
What is the value for Podiums, when the Season is after 2008, and when the Series is GP2 Asia Series?
columns: - name: podiums type: VARCHAR - name: season type: VARCHAR - name: series type: VARCHAR table: table_name_65
SELECT podiums FROM table_name_65 WHERE season > 2008 AND series = "gp2 asia series"
Which School has a National Championships of 2, and a City of orlando?
columns: - name: school type: VARCHAR - name: national_championships type: VARCHAR - name: city type: VARCHAR table: table_name_27
SELECT school FROM table_name_27 WHERE national_championships = 2 AND city = "orlando"
How many authors are present when the original was Carry On?
columns: - name: authors type: VARCHAR - name: original type: VARCHAR table: table_19523708_1
SELECT COUNT(authors) FROM table_19523708_1 WHERE original = "Carry On"
What was built in 1857?
columns: - name: name type: VARCHAR - name: year_built type: VARCHAR table: table_name_89
SELECT name FROM table_name_89 WHERE year_built = 1857
If the location is Yangon, Myanmar, what is the opponent total number?
columns: - name: opponent type: VARCHAR - name: location type: VARCHAR table: table_25428629_1
SELECT COUNT(opponent) FROM table_25428629_1 WHERE location = "Yangon, Myanmar"
What year made has a Quantity made of 4?
columns: - name: year_made type: VARCHAR - name: quantity_made type: VARCHAR table: table_name_63
SELECT year_made FROM table_name_63 WHERE quantity_made = "4"
What is the total number of Premier, when Second is "55"?
columns: - name: premier type: VARCHAR - name: second type: VARCHAR table: table_name_67
SELECT COUNT(premier) FROM table_name_67 WHERE second = 55
What is the highest amount of goals in the position after 8, 12 losses, and played less than 30 games?
columns: - name: goals_for type: INTEGER - name: played type: VARCHAR - name: position type: VARCHAR - name: losses type: VARCHAR table: table_name_71
SELECT MAX(goals_for) FROM table_name_71 WHERE position > 8 AND losses = 12 AND played < 30
What is the lowest total of player tommy ring, who has a rank greater than 1?
columns: - name: total type: INTEGER - name: player type: VARCHAR - name: rank type: VARCHAR table: table_name_62
SELECT MIN(total) FROM table_name_62 WHERE player = "tommy ring" AND rank > 1
What is the to par for the United States with a 67-71-73=211 score?
columns: - name: to_par type: VARCHAR - name: country type: VARCHAR - name: score type: VARCHAR table: table_name_72
SELECT to_par FROM table_name_72 WHERE country = "united states" AND score = 67 - 71 - 73 = 211
What is the average grid for johnny herbert with a Time/Retired of +1 lap?
columns: - name: grid type: INTEGER - name: time_retired type: VARCHAR - name: driver type: VARCHAR table: table_name_38
SELECT AVG(grid) FROM table_name_38 WHERE time_retired = "+1 lap" AND driver = "johnny herbert"
Which couple participated in the Paso Doble style and were safe?
columns: - name: couple type: VARCHAR - name: results type: VARCHAR - name: style type: VARCHAR table: table_name_91
SELECT couple FROM table_name_91 WHERE results = "safe" AND style = "paso doble"
what's the area (km 2 ) with population census 2009 being 939370
columns: - name: area__km_2__ type: VARCHAR - name: population_census_2009 type: VARCHAR table: table_1404456_1
SELECT area__km_2__ FROM table_1404456_1 WHERE population_census_2009 = 939370
What MLS team is affiliated with yale university?
columns: - name: mls_team type: VARCHAR - name: affiliation type: VARCHAR table: table_name_97
SELECT mls_team FROM table_name_97 WHERE affiliation = "yale university"
What is the winning span in the country of England with the name of paul casey?
columns: - name: winning_span type: VARCHAR - name: country type: VARCHAR - name: name type: VARCHAR table: table_1953516_1
SELECT winning_span FROM table_1953516_1 WHERE country = "England" AND name = "Paul Casey"
What was the record at the game that had a loss of Blyleven (4-5)?
columns: - name: record type: VARCHAR - name: loss type: VARCHAR table: table_name_55
SELECT record FROM table_name_55 WHERE loss = "blyleven (4-5)"
Name the song for draw less than 7 and artists of martin & johannes
columns: - name: song type: VARCHAR - name: draw type: VARCHAR - name: artist type: VARCHAR table: table_name_42
SELECT song FROM table_name_42 WHERE draw < 7 AND artist = "martin & johannes"
What is the sum of Crowd when Essendon was the home team?
columns: - name: crowd type: INTEGER - name: home_team type: VARCHAR table: table_name_33
SELECT SUM(crowd) FROM table_name_33 WHERE home_team = "essendon"
What team had 1:34.578 in Qual 2?
columns: - name: team type: VARCHAR - name: qual_2 type: VARCHAR table: table_name_55
SELECT team FROM table_name_55 WHERE qual_2 = "1:34.578"
Who is the elector that has the cardinalatial title of Deacon of SS. Cosma e Damiano?
columns: - name: elector type: VARCHAR - name: cardinalatial_title type: VARCHAR table: table_name_86
SELECT elector FROM table_name_86 WHERE cardinalatial_title = "deacon of ss. cosma e damiano"
Name the winning driver for monaco grand prix
columns: - name: winning_driver type: VARCHAR - name: name type: VARCHAR table: table_name_41
SELECT winning_driver FROM table_name_41 WHERE name = "monaco grand prix"
Name the polyunsaturated fat with a saturated fat of 25g
columns: - name: polyunsaturated_fat type: VARCHAR - name: saturated_fat type: VARCHAR table: table_name_31
SELECT polyunsaturated_fat FROM table_name_31 WHERE saturated_fat = "25g"
How many drivers drove 300 laps at average speed of 103.594?
columns: - name: driver type: VARCHAR - name: laps type: VARCHAR - name: average_speed__mph_ type: VARCHAR table: table_2175858_1
SELECT COUNT(driver) FROM table_2175858_1 WHERE laps = "300" AND average_speed__mph_ = "103.594"
What was the Name of the person with a Qual 1 of 1:26.056?
columns: - name: name type: VARCHAR - name: qual_1 type: VARCHAR table: table_name_59
SELECT name FROM table_name_59 WHERE qual_1 = "1:26.056"
Which final has rank of 10?
columns: - name: final type: VARCHAR - name: rank type: VARCHAR table: table_name_59
SELECT final FROM table_name_59 WHERE rank = "10"
What is the highest possible level?
columns: - name: level type: INTEGER table: table_1751142_2
SELECT MAX(level) FROM table_1751142_2
What is Place, when Score is "70-70-68-70=278"?
columns: - name: place type: VARCHAR - name: score type: VARCHAR table: table_name_41
SELECT place FROM table_name_41 WHERE score = 70 - 70 - 68 - 70 = 278
What country has a prominence less than 1292 and an Isolation (km) of 14?
columns: - name: county type: VARCHAR - name: prominence__m_ type: VARCHAR - name: isolation__km_ type: VARCHAR table: table_name_9
SELECT county FROM table_name_9 WHERE prominence__m_ < 1292 AND isolation__km_ = 14
who directed the episode with the original air date of November 22, 1989?
columns: - name: directed_by type: VARCHAR - name: original_air_date type: VARCHAR table: table_18367694_2
SELECT directed_by FROM table_18367694_2 WHERE original_air_date = "November 22, 1989"
What Frequency has the Identifier of CBFX-FM-6?
columns: - name: frequency type: VARCHAR - name: identifier type: VARCHAR table: table_name_53
SELECT frequency FROM table_name_53 WHERE identifier = "cbfx-fm-6"
Name the country that has the yen
columns: - name: country type: VARCHAR - name: currency type: VARCHAR table: table_2764267_2
SELECT country FROM table_2764267_2 WHERE currency = "Yen"
How many laps had a qualification of 136.168?
columns: - name: laps type: VARCHAR - name: qual type: VARCHAR table: table_name_50
SELECT COUNT(laps) FROM table_name_50 WHERE qual = "136.168"
What's the score for December of 30?
columns: - name: score type: VARCHAR - name: december type: VARCHAR table: table_name_48
SELECT score FROM table_name_48 WHERE december = 30
What was the date of appointment for javier aguirre's replacement?
columns: - name: date_of_appointment type: VARCHAR - name: outgoing_manager type: VARCHAR table: table_name_53
SELECT date_of_appointment FROM table_name_53 WHERE outgoing_manager = "javier aguirre"
What is the value for New entries, when the value for Fixtures is less than 16, and when the value for Clubs is 4 → 2?
columns: - name: new_entries type: VARCHAR - name: fixtures type: VARCHAR - name: clubs type: VARCHAR table: table_name_7
SELECT new_entries FROM table_name_7 WHERE fixtures < 16 AND clubs = "4 → 2"
In which city is the station licensed whose frequency MHz is higher than 102.3 and the ERP W is lower than 1,000?
columns: - name: city_of_license type: VARCHAR - name: frequency_mhz type: VARCHAR - name: erp_w type: VARCHAR table: table_name_60
SELECT city_of_license FROM table_name_60 WHERE frequency_mhz = 102.3 AND erp_w < 1 OFFSET 000
When gray wolves is the team nickname how many institutions are there?
columns: - name: institution type: VARCHAR - name: team_nickname type: VARCHAR table: table_28211213_2
SELECT COUNT(institution) FROM table_28211213_2 WHERE team_nickname = "Gray Wolves"
What time period had appearances of 219?
columns: - name: period type: VARCHAR - name: "appearances\xB9" type: VARCHAR table: table_24565004_11
SELECT period FROM table_24565004_11 WHERE appearances¹ = 219
On what date did Collingwood play at home?
columns: - name: date type: VARCHAR - name: home_team type: VARCHAR table: table_name_20
SELECT date FROM table_name_20 WHERE home_team = "collingwood"
How many positions had a difference of - 4 and an against of less than 24?
columns: - name: position type: VARCHAR - name: difference type: VARCHAR - name: against type: VARCHAR table: table_name_75
SELECT COUNT(position) FROM table_name_75 WHERE difference = "- 4" AND against < 24
What was the score on January 26?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_79
SELECT score FROM table_name_79 WHERE date = "january 26"
WHAT COUNTRY HAS THE HIGHEST BRONZE COUNT, MORE THAN 1 SILVER METAL, AND LESS THAN 1ST PLACE?
columns: - name: bronze type: INTEGER - name: silver type: VARCHAR - name: rank type: VARCHAR table: table_name_46
SELECT MAX(bronze) FROM table_name_46 WHERE silver > 1 AND rank > 1
What is Player, when Country is "United States", and when To Par is "WD"?
columns: - name: player type: VARCHAR - name: country type: VARCHAR - name: to_par type: VARCHAR table: table_name_79
SELECT player FROM table_name_79 WHERE country = "united states" AND to_par = "wd"
What is the goal average 1 for teams that lost 9 games?
columns: - name: goal_average_1 type: VARCHAR - name: lost type: VARCHAR table: table_17357929_1
SELECT goal_average_1 FROM table_17357929_1 WHERE lost = 9
What is the playoffs Game number on April 26?
columns: - name: game type: VARCHAR - name: date type: VARCHAR table: table_name_94
SELECT game FROM table_name_94 WHERE date = "april 26"
kenneth mcalpine drove from which entrant?
columns: - name: entrant type: VARCHAR - name: driver type: VARCHAR table: table_name_23
SELECT entrant FROM table_name_23 WHERE driver = "kenneth mcalpine"
What is the D 49 √ number when the D 41 √ is d 61 √?
columns: - name: "d_49_\u221A" type: VARCHAR - name: "d_41_\u221A" type: VARCHAR table: table_name_19
SELECT d_49_√ FROM table_name_19 WHERE d_41_√ = "d 61 √"
What played has 3 as the losing bonus?
columns: - name: played type: VARCHAR - name: losing_bonus type: VARCHAR table: table_name_91
SELECT played FROM table_name_91 WHERE losing_bonus = "3"
What is 2001, when 1987 is N/A, and when Career SR is N/A?
columns: - name: career_sr type: VARCHAR table: table_name_50
SELECT 2001 FROM table_name_50 WHERE 1987 = "n/a" AND career_sr = "n/a"
What was the record when TKO (punches and elbows) was the method?
columns: - name: record type: VARCHAR - name: method type: VARCHAR table: table_name_22
SELECT record FROM table_name_22 WHERE method = "tko (punches and elbows)"
Who were the developers for the Action RPG made after 2010?
columns: - name: developer_s_ type: VARCHAR - name: year type: VARCHAR - name: genre type: VARCHAR table: table_name_71
SELECT developer_s_ FROM table_name_71 WHERE year > 2010 AND genre = "action rpg"
Name the score for 49-31
columns: - name: score type: VARCHAR - name: record type: VARCHAR table: table_22883210_10
SELECT score FROM table_22883210_10 WHERE record = "49-31"
Tell me the totla number of goal difference for goals against of 30 and played less than 18
columns: - name: goal_difference type: VARCHAR - name: goals_against type: VARCHAR - name: played type: VARCHAR table: table_name_4
SELECT COUNT(goal_difference) FROM table_name_4 WHERE goals_against = 30 AND played < 18
Which school has the mascot of the Colonials?
columns: - name: institution type: VARCHAR - name: team_nickname type: VARCHAR table: table_16403890_1
SELECT institution FROM table_16403890_1 WHERE team_nickname = "Colonials"
What Player is from Connecticut?
columns: - name: player type: VARCHAR - name: college_country_team type: VARCHAR table: table_name_39
SELECT player FROM table_name_39 WHERE college_country_team = "connecticut"
Jiang Tengyi is on which team?
columns: - name: team type: VARCHAR - name: name type: VARCHAR table: table_name_87
SELECT team FROM table_name_87 WHERE name = "jiang tengyi"
How many were Wounded while in a Unit with a Complement of 83 off 9 Men?
columns: - name: wounded type: VARCHAR - name: complement type: VARCHAR table: table_name_79
SELECT wounded FROM table_name_79 WHERE complement = "83 off 9 men"
How many Totals have a Silver smaller than 2, and a Nation of ukraine, and a Gold smaller than 3?
columns: - name: total type: VARCHAR - name: gold type: VARCHAR - name: silver type: VARCHAR - name: nation type: VARCHAR table: table_name_71
SELECT COUNT(total) FROM table_name_71 WHERE silver < 2 AND nation = "ukraine" AND gold < 3
who won tennis when ashland won softball and wooster won volleybal
columns: - name: tennis type: VARCHAR - name: softball type: VARCHAR - name: volleyball type: VARCHAR table: table_16423070_4
SELECT tennis FROM table_16423070_4 WHERE softball = "Ashland" AND volleyball = "Wooster"
What is the largest number in attendance at H venue opposing Liverpool with a result of D?
columns: - name: attendance type: INTEGER - name: opponents type: VARCHAR - name: venue type: VARCHAR - name: result type: VARCHAR table: table_name_40
SELECT MAX(attendance) FROM table_name_40 WHERE venue = "h" AND result = "d" AND opponents = "liverpool"
who is the constructor when the free practice driver(s) is n/a, the chassis is 005 and the driver is takuma sato?
columns: - name: constructor type: VARCHAR - name: driver type: VARCHAR - name: free_practice_driver_s_ type: VARCHAR - name: chassis type: VARCHAR table: table_name_42
SELECT constructor FROM table_name_42 WHERE free_practice_driver_s_ = "n/a" AND chassis = "005" AND driver = "takuma sato"
Which class has a Qual position of 30?
columns: - name: class type: VARCHAR - name: qual_pos type: VARCHAR table: table_name_48
SELECT class FROM table_name_48 WHERE qual_pos = 30
What is 1996 Grand Slam Tournament if 1994 is LQ and 1992 is 3R?
columns: - name: Id type: VARCHAR table: table_name_4
SELECT 1996 FROM table_name_4 WHERE 1994 = "lq" AND 1992 = "3r"
Which incumbent was first elected in 1987?
columns: - name: incumbent type: VARCHAR - name: first_elected type: VARCHAR table: table_name_84
SELECT incumbent FROM table_name_84 WHERE first_elected = 1987
How many deductions have 56.5 as tosses/pyramids?
columns: - name: deductions type: VARCHAR - name: tosses_pyramids type: VARCHAR table: table_22014431_3
SELECT deductions FROM table_22014431_3 WHERE tosses_pyramids = "56.5"
What is the Nat with a mutual consent loan return and has a free transfer fee?
columns: - name: nat type: VARCHAR - name: transfer_fee type: VARCHAR - name: type type: VARCHAR table: table_name_12
SELECT nat FROM table_name_12 WHERE transfer_fee = "free" AND type = "mutual consent loan return"
What is the College of the Player from San Miguel Beermen PBA Team?
columns: - name: college type: VARCHAR - name: pba_team type: VARCHAR table: table_name_31
SELECT college FROM table_name_31 WHERE pba_team = "san miguel beermen"
Who was picked before 149 in round 9?
columns: - name: player type: VARCHAR - name: pick type: VARCHAR - name: round type: VARCHAR table: table_name_64
SELECT player FROM table_name_64 WHERE pick < 149 AND round = 9
When the Grids is less than 2 what are the total laps?
columns: - name: laps type: VARCHAR - name: grid type: INTEGER table: table_name_87
SELECT COUNT(laps) FROM table_name_87 WHERE grid < 2
What is the lowest total amount of medals from countries with 0 gold medals, more than 2 bronze medals, and more than 1 silver medal?
columns: - name: total type: INTEGER - name: silver type: VARCHAR - name: gold type: VARCHAR - name: bronze type: VARCHAR table: table_name_57
SELECT MIN(total) FROM table_name_57 WHERE gold = 0 AND bronze > 2 AND silver > 1
Where are the broadcasting companys with the callsign DWRH located?
columns: - name: location type: VARCHAR - name: callsign type: VARCHAR table: table_28794440_1
SELECT location FROM table_28794440_1 WHERE callsign = "DWRH"
What is the Lowest lost for Team Ypiranga-SP where the games Played is more than 10 and the goals Against is greater than 50?
columns: - name: lost type: INTEGER - name: against type: VARCHAR - name: played type: VARCHAR - name: team type: VARCHAR table: table_name_71
SELECT MIN(lost) FROM table_name_71 WHERE played > 10 AND team = "ypiranga-sp" AND against > 50
Which Rank points has a Score points of olympic silver medalist?
columns: - name: rank_points type: VARCHAR - name: score_points type: VARCHAR table: table_name_42
SELECT rank_points FROM table_name_42 WHERE score_points = "olympic silver medalist"
What is the most time for the swimmer from South Africa who was in a lane greater than 3?
columns: - name: time type: INTEGER - name: nationality type: VARCHAR - name: lane type: VARCHAR table: table_name_64
SELECT MAX(time) FROM table_name_64 WHERE nationality = "south africa" AND lane > 3
What is the total number of league goals for Simon Charlton?
columns: - name: league_goals type: VARCHAR - name: name type: VARCHAR table: table_name_14
SELECT COUNT(league_goals) FROM table_name_14 WHERE name = "simon charlton"
What is the goal difference when there are fewer than 12 wins, 32 goals against and 8 draws?
columns: - name: goal_difference type: INTEGER - name: wins type: VARCHAR - name: draws type: VARCHAR - name: goals_against type: VARCHAR table: table_name_3
SELECT SUM(goal_difference) FROM table_name_3 WHERE draws = 8 AND goals_against = 32 AND wins < 12
Tell me the result for attendance of 54,462
columns: - name: result type: VARCHAR - name: attendance type: VARCHAR table: table_name_32
SELECT result FROM table_name_32 WHERE attendance = "54,462"
Which December has Points of 48, and a Game larger than 33?
columns: - name: december type: INTEGER - name: points type: VARCHAR - name: game type: VARCHAR table: table_name_77
SELECT SUM(december) FROM table_name_77 WHERE points = 48 AND game > 33
which Vacator has a Reason for change of resigned november 10, 1965?
columns: - name: vacator type: VARCHAR - name: reason_for_change type: VARCHAR table: table_name_6
SELECT vacator FROM table_name_6 WHERE reason_for_change = "resigned november 10, 1965"
What is the sum of the assists kang jae-soon had in the k-league competition in ulsan?
columns: - name: assists type: INTEGER - name: name type: VARCHAR - name: venue type: VARCHAR - name: competition type: VARCHAR table: table_name_6
SELECT SUM(assists) FROM table_name_6 WHERE venue = "ulsan" AND competition = "k-league" AND name = "kang jae-soon"
Which surface was played during Curitiba tournament?
columns: - name: surface type: VARCHAR - name: tournament type: VARCHAR table: table_name_46
SELECT surface FROM table_name_46 WHERE tournament = "curitiba"
What was the overall pick for Doug Sproule of the United States?
columns: - name: overall type: VARCHAR - name: nationality type: VARCHAR - name: player type: VARCHAR table: table_name_48
SELECT overall FROM table_name_48 WHERE nationality = "united states" AND player = "doug sproule"
What was the athlete with a final result of 4.30?
columns: - name: athlete type: VARCHAR - name: result type: VARCHAR table: table_name_48
SELECT athlete FROM table_name_48 WHERE result = "4.30"
Who is entered earlier than 1975 and has a Lotus 20 chassis?
columns: - name: entrant type: VARCHAR - name: year type: VARCHAR - name: chassis type: VARCHAR table: table_name_14
SELECT entrant FROM table_name_14 WHERE year < 1975 AND chassis = "lotus 20"
How many episodes was Jimmy Mulville performer 4?
columns: - name: episode type: VARCHAR - name: performer_4 type: VARCHAR table: table_14934885_1
SELECT COUNT(episode) FROM table_14934885_1 WHERE performer_4 = "Jimmy Mulville"
How many weeks had an attendance of 60038?
columns: - name: week type: VARCHAR - name: attendance type: VARCHAR table: table_16729071_1
SELECT COUNT(week) FROM table_16729071_1 WHERE attendance = 60038
Who was the winner if the Mountains Classification award was given to Jaime Vergara and the Team Classification award is given to Col es Pasion Café De Colombia 472?
columns: - name: winner type: VARCHAR - name: mountains_classification type: VARCHAR - name: team_classification type: VARCHAR table: table_28853064_15
SELECT winner FROM table_28853064_15 WHERE mountains_classification = "Jaime Vergara" AND team_classification = "Col es Pasion Café De Colombia 472"
Which Year completed has a Dam type of earthfill embankment, and a Dam constructed of khancoban dam?
columns: - name: year_completed type: INTEGER - name: dam_type type: VARCHAR - name: dam_constructed type: VARCHAR table: table_name_25
SELECT MAX(year_completed) FROM table_name_25 WHERE dam_type = "earthfill embankment" AND dam_constructed = "khancoban dam"