question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Olga Blahotová was the opponent in the final at what tournament?
columns: - name: tournament type: VARCHAR - name: opponent_in_the_final type: VARCHAR table: table_name_42
SELECT tournament FROM table_name_42 WHERE opponent_in_the_final = "olga blahotová"
What was the attendance on August 8?
columns: - name: attendance type: VARCHAR - name: date type: VARCHAR table: table_name_47
SELECT attendance FROM table_name_47 WHERE date = "august 8"
What is Place, when Player is "Mi Hyun Kim"?
columns: - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_94
SELECT place FROM table_name_94 WHERE player = "mi hyun kim"
What affiliation has an owned since larger than 1991, and also has a channel (tv/rf) of 42?
columns: - name: affiliation type: VARCHAR - name: owned_since type: VARCHAR - name: channel___tv___rf__ type: VARCHAR table: table_name_58
SELECT affiliation FROM table_name_58 WHERE owned_since > 1991 AND channel___tv___rf__ = "42"
What did St Kilda score when they were the home team?
columns: - name: home_team type: VARCHAR table: table_name_53
SELECT home_team AS score FROM table_name_53 WHERE home_team = "st kilda"
When seats for 2001 is greater than 15 and % 2001 is greater than 100, what is the % 2006?
columns: - name: _percentage_2006 type: INTEGER - name: seats_2001 type: VARCHAR - name: _percentage_2001 type: VARCHAR table: table_name_70
SELECT AVG(_percentage_2006) FROM table_name_70 WHERE seats_2001 > 15 AND _percentage_2001 > 100
What was the highest number of extra points scored by Albert Herrnstein, when he scored more than 15 points total?
columns: - name: extra_points type: INTEGER - name: player type: VARCHAR - name: points type: VARCHAR table: table_name_38
SELECT MAX(extra_points) FROM table_name_38 WHERE player = "albert herrnstein" AND points > 15
what is b - bishop where ab - angry boar is vw - vertical wolf?
columns: - name: b___bishop type: VARCHAR - name: ab___angry_boar type: VARCHAR table: table_2603017_2
SELECT b___bishop FROM table_2603017_2 WHERE ab___angry_boar = "VW - Vertical Wolf"
Which Region that has a growth of −3.6%?
columns: - name: region type: VARCHAR - name: _percentage_growth type: VARCHAR table: table_name_24
SELECT region FROM table_name_24 WHERE _percentage_growth = "−3.6"
Na,e the number of field goals for right tackle
columns: - name: field_goals type: VARCHAR - name: position type: VARCHAR table: table_14342480_5
SELECT COUNT(field_goals) FROM table_14342480_5 WHERE position = "Right tackle"
How many touchdowns are there that has field goals less than 0 and 0 extra points?
columns: - name: touchdowns type: INTEGER - name: extra_points type: VARCHAR - name: field_goals type: VARCHAR table: table_name_53
SELECT SUM(touchdowns) FROM table_name_53 WHERE extra_points = 0 AND field_goals < 0
What is the total Money (£) with a Place of t6, and a Player of ian baker-finch?
columns: - name: money___ type: VARCHAR - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_61
SELECT COUNT(money___) AS £__ FROM table_name_61 WHERE place = "t6" AND player = "ian baker-finch"
How many times was tues 24 aug 19' 19.83 117.110mph?
columns: - name: rank type: VARCHAR - name: tues_24_aug type: VARCHAR table: table_26986076_2
SELECT COUNT(rank) FROM table_26986076_2 WHERE tues_24_aug = "19' 19.83 117.110mph"
When did the season premiere that had a viewer rank of #6?
columns: - name: season type: VARCHAR - name: viewer_rank___number_ type: VARCHAR table: table_name_12
SELECT season AS premiere FROM table_name_12 WHERE viewer_rank___number_ = "#6"
What is the lowest number of places for Sherri Baier / Robin Cowan when ranked lower than 1?
columns: - name: places type: INTEGER - name: name type: VARCHAR - name: rank type: VARCHAR table: table_name_70
SELECT MIN(places) FROM table_name_70 WHERE name = "sherri baier / robin cowan" AND rank < 1
What player is picked 302 in round 11?
columns: - name: player type: VARCHAR - name: round type: VARCHAR - name: pick type: VARCHAR table: table_name_27
SELECT player FROM table_name_27 WHERE round = 11 AND pick = 302
What is the sum of November, when Game is "17"?
columns: - name: november type: INTEGER - name: game type: VARCHAR table: table_name_55
SELECT SUM(november) FROM table_name_55 WHERE game = 17
What player has 72-67-71=210 as the score?
columns: - name: player type: VARCHAR - name: score type: VARCHAR table: table_name_41
SELECT player FROM table_name_41 WHERE score = 72 - 67 - 71 = 210
What is the location for the club trophy?
columns: - name: location type: VARCHAR - name: type type: VARCHAR table: table_name_69
SELECT location FROM table_name_69 WHERE type = "club trophy"
What was the attendance in week 8?
columns: - name: attendance type: INTEGER - name: week type: VARCHAR table: table_14875671_1
SELECT MAX(attendance) FROM table_14875671_1 WHERE week = 8
How many people attended Match No. 31?
columns: - name: attendance type: VARCHAR - name: match_no type: VARCHAR table: table_name_51
SELECT attendance FROM table_name_51 WHERE match_no = "31"
Who had a qual 1 of 1:01.461?
columns: - name: name type: VARCHAR - name: qual_1 type: VARCHAR table: table_name_98
SELECT name FROM table_name_98 WHERE qual_1 = "1:01.461"
When the record was 7-2, what was the score for the game?
columns: - name: score type: VARCHAR - name: record type: VARCHAR table: table_name_94
SELECT score FROM table_name_94 WHERE record = "7-2"
What was the game when Houston was the home team and the result is 106-104?
columns: - name: game type: VARCHAR - name: home_team type: VARCHAR - name: result type: VARCHAR table: table_name_49
SELECT game FROM table_name_49 WHERE home_team = "houston" AND result = "106-104"
What is the positions of Damon Jones?
columns: - name: position type: VARCHAR - name: player type: VARCHAR table: table_name_87
SELECT position FROM table_name_87 WHERE player = "damon jones"
What player from New Mexico plays the WR position?
columns: - name: player type: VARCHAR - name: position type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_21
SELECT player FROM table_name_21 WHERE position = "wr" AND school_club_team = "new mexico"
Which polling firm put T. Papadopoulos at 31%?
columns: - name: polling_firm type: VARCHAR - name: t_papadopoulos type: VARCHAR table: table_name_91
SELECT polling_firm FROM table_name_91 WHERE t_papadopoulos = "31%"
Which Capacity is the lowest one that has a Rank smaller than 15, and a City of belgrade?
columns: - name: capacity type: INTEGER - name: rank type: VARCHAR - name: city type: VARCHAR table: table_name_76
SELECT MIN(capacity) FROM table_name_76 WHERE rank < 15 AND city = "belgrade"
What's the number of laps for 16 grids?
columns: - name: laps type: INTEGER - name: grid type: VARCHAR table: table_name_36
SELECT SUM(laps) FROM table_name_36 WHERE grid = 16
What place is Jay Hebert?
columns: - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_60
SELECT place FROM table_name_60 WHERE player = "jay hebert"
What Player has 23 Tries?
columns: - name: player type: VARCHAR - name: tries type: VARCHAR table: table_name_61
SELECT player FROM table_name_61 WHERE tries = 23
What date was a game played at Headingley Stadium?
columns: - name: date type: VARCHAR - name: venue type: VARCHAR table: table_name_67
SELECT date FROM table_name_67 WHERE venue = "headingley stadium"
What date did the Geelong team play on as a home team?
columns: - name: date type: VARCHAR - name: home_team type: VARCHAR table: table_name_12
SELECT date FROM table_name_12 WHERE home_team = "geelong"
How many golds have bronze values of 4 and silver values over 2?
columns: - name: gold type: VARCHAR - name: bronze type: VARCHAR - name: silver type: VARCHAR table: table_name_65
SELECT COUNT(gold) FROM table_name_65 WHERE bronze = 4 AND silver > 2
Name the average SP+FS with places less tha 94 for renata baierova
columns: - name: fs type: VARCHAR - name: sp type: INTEGER - name: places type: VARCHAR - name: name type: VARCHAR table: table_name_2
SELECT AVG(sp) + fs FROM table_name_2 WHERE places < 94 AND name = "renata baierova"
what is the to par when the score is 67-68-76=211?
columns: - name: to_par type: VARCHAR - name: score type: VARCHAR table: table_name_42
SELECT to_par FROM table_name_42 WHERE score = 67 - 68 - 76 = 211
What network has an origin in India, a genre of general, and broadcasts in Bengali?
columns: - name: network type: VARCHAR - name: language type: VARCHAR - name: origin_of_programming type: VARCHAR - name: genre type: VARCHAR table: table_name_20
SELECT network FROM table_name_20 WHERE origin_of_programming = "india" AND genre = "general" AND language = "bengali"
Which nationality is player John Garrett?
columns: - name: nationality type: VARCHAR - name: player type: VARCHAR table: table_22402438_7
SELECT nationality FROM table_22402438_7 WHERE player = "John Garrett"
Which episode did 18.74 million people tune in?
columns: - name: title type: VARCHAR - name: us_viewers__million_ type: VARCHAR table: table_25996938_1
SELECT title FROM table_25996938_1 WHERE us_viewers__million_ = "18.74"
Name the tournament for 2009 2r
columns: - name: tournament type: VARCHAR table: table_name_32
SELECT tournament FROM table_name_32 WHERE 2009 = "2r"
what is the to par when the player is hale irwin?
columns: - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_80
SELECT to_par FROM table_name_80 WHERE player = "hale irwin"
What was the Attendance before Week 17 with a Record of Bye?
columns: - name: attendance type: VARCHAR - name: week type: VARCHAR - name: record type: VARCHAR table: table_name_77
SELECT attendance FROM table_name_77 WHERE week < 17 AND record = "bye"
Who is the lead for the team with Nkeiruka Ezekh as second?
columns: - name: lead type: VARCHAR - name: second type: VARCHAR table: table_name_59
SELECT lead FROM table_name_59 WHERE second = "nkeiruka ezekh"
What year weas John McEnroe the champion?
columns: - name: year type: INTEGER - name: champion type: VARCHAR table: table_name_64
SELECT AVG(year) FROM table_name_64 WHERE champion = "john mcenroe"
Which location has a capacity greater than 51,500?
columns: - name: location type: VARCHAR - name: capacity type: INTEGER table: table_name_43
SELECT location FROM table_name_43 WHERE capacity > 51 OFFSET 500
Which Call Sign that has a Tail Code of oy belong to Weapon Systems Officer Capt Charles B. Debellevue?
columns: - name: call_sign type: VARCHAR - name: tail_code type: VARCHAR - name: weapon_systems_officer type: VARCHAR table: table_name_37
SELECT call_sign FROM table_name_37 WHERE tail_code = "oy" AND weapon_systems_officer = "capt charles b. debellevue"
WHAT IS THE SCORE WITH A WINNER AND OPPONENT BYRON BLACK?
columns: - name: score type: VARCHAR - name: outcome type: VARCHAR - name: opponent type: VARCHAR table: table_name_89
SELECT score FROM table_name_89 WHERE outcome = "winner" AND opponent = "byron black"
Which Home team has a Venue of victoria park?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_27
SELECT home_team FROM table_name_27 WHERE venue = "victoria park"
what is the highest clean & jerk when total (kg) is 200.0 and snatch is more than 87.5?
columns: - name: _jerk type: VARCHAR - name: clean_ type: INTEGER - name: total__kg_ type: VARCHAR - name: snatch type: VARCHAR table: table_name_92
SELECT MAX(clean_) & _jerk FROM table_name_92 WHERE total__kg_ = "200.0" AND snatch > 87.5
How many deaths did the eyar with exactly 6 hurricanes have?
columns: - name: deaths type: VARCHAR - name: number_of_hurricanes type: VARCHAR table: table_2930244_4
SELECT COUNT(deaths) FROM table_2930244_4 WHERE number_of_hurricanes = 6
How many periods had 15 goals?
columns: - name: period type: VARCHAR - name: "goals\xB9" type: VARCHAR table: table_24565004_11
SELECT COUNT(period) FROM table_24565004_11 WHERE goals¹ = 15
How much is the highest number in 2006 with fewer than 0 in 2002?
columns: - name: Id type: VARCHAR table: table_name_16
SELECT MAX(2006) FROM table_name_16 WHERE 2002 < 0
When is the most recent year with more than 27 points and more than 5 wins?
columns: - name: year type: INTEGER - name: points type: VARCHAR - name: wins type: VARCHAR table: table_name_69
SELECT MAX(year) FROM table_name_69 WHERE points > 27 AND wins > 5
What was the purse when Sherri Steinhauer was champion at Woburn Golf and Country Club?
columns: - name: purse___ type: VARCHAR - name: champion type: VARCHAR - name: venue type: VARCHAR table: table_name_41
SELECT COUNT(purse___) AS $__ FROM table_name_41 WHERE champion = "sherri steinhauer" AND venue = "woburn golf and country club"
Which Record has a Game of 19?
columns: - name: record type: VARCHAR - name: game type: VARCHAR table: table_name_78
SELECT record FROM table_name_78 WHERE game = 19
What was the Nominated Work earlier than 2003?
columns: - name: nominated_work type: VARCHAR - name: year type: INTEGER table: table_name_85
SELECT nominated_work FROM table_name_85 WHERE year < 2003
How many miles were driven with the average speed at 116.81?
columns: - name: miles__km_ type: VARCHAR - name: average_speed__mph_ type: VARCHAR table: table_2175858_1
SELECT miles__km_ FROM table_2175858_1 WHERE average_speed__mph_ = "116.81"
Name the average econ for runs more than 703 and ovrs more than 25.5
columns: - name: econ type: INTEGER - name: ovrs type: VARCHAR - name: runs type: VARCHAR table: table_name_2
SELECT AVG(econ) FROM table_name_2 WHERE ovrs > 25.5 AND runs > 703
Who was the away team when the crowd was larger than 41,451?
columns: - name: away_team type: VARCHAR - name: crowd type: INTEGER table: table_name_69
SELECT away_team FROM table_name_69 WHERE crowd > 41 OFFSET 451
What is Venue, when Balls is "148"?
columns: - name: venue type: VARCHAR - name: balls type: VARCHAR table: table_name_22
SELECT venue FROM table_name_22 WHERE balls = 148
What is the lowest number of three pointers in games where the number of rebounds was 178?
columns: - name: three_pointers type: INTEGER - name: rebounds type: VARCHAR table: table_22824324_2
SELECT MIN(three_pointers) FROM table_22824324_2 WHERE rebounds = 178
Name the most year with start less than 2
columns: - name: year type: INTEGER - name: start type: INTEGER table: table_name_9
SELECT MAX(year) FROM table_name_9 WHERE start < 2
Which opponent has the event Jungle Fight 6?
columns: - name: opponent type: VARCHAR - name: event type: VARCHAR table: table_name_56
SELECT opponent FROM table_name_56 WHERE event = "jungle fight 6"
What number draft pick was Oklahoma State's Greg Hill in 1983?
columns: - name: pick__number type: VARCHAR - name: college type: VARCHAR - name: player type: VARCHAR table: table_2508633_4
SELECT pick__number FROM table_2508633_4 WHERE college = "Oklahoma State" AND player = "Greg Hill"
Which date's opponent was Dender when the tournament was in the Jupiler League and the ground was a?
columns: - name: date type: VARCHAR - name: ground type: VARCHAR - name: opponent type: VARCHAR - name: tournament type: VARCHAR table: table_name_52
SELECT date FROM table_name_52 WHERE opponent = "dender" AND tournament = "jupiler league" AND ground = "a"
Which gender has a Name of rangitoto school?
columns: - name: gender type: VARCHAR - name: name type: VARCHAR table: table_name_6
SELECT gender FROM table_name_6 WHERE name = "rangitoto school"
Which Position has a Competition of world championships, and a Year larger than 1997?
columns: - name: position type: VARCHAR - name: competition type: VARCHAR - name: year type: VARCHAR table: table_name_27
SELECT position FROM table_name_27 WHERE competition = "world championships" AND year > 1997
Which player had a position of OL from Ohio State?
columns: - name: player type: VARCHAR - name: pos type: VARCHAR - name: college type: VARCHAR table: table_name_65
SELECT player FROM table_name_65 WHERE pos = "ol" AND college = "ohio state"
How many sacks for the player with over 1 tackle, under 3 assisted tackles, and over 0 yards?
columns: - name: sack type: VARCHAR - name: yards type: VARCHAR - name: tackles type: VARCHAR - name: assisted type: VARCHAR table: table_name_46
SELECT COUNT(sack) FROM table_name_46 WHERE tackles > 1 AND assisted < 3 AND yards > 0
What is the Rank of the Nation of Germany when the Total is more than 2?
columns: - name: rank type: VARCHAR - name: nation type: VARCHAR - name: total type: VARCHAR table: table_name_63
SELECT COUNT(rank) FROM table_name_63 WHERE nation = "germany" AND total > 2
What was the winning score on May 3, 1998?
columns: - name: winning_score type: VARCHAR - name: date type: VARCHAR table: table_name_23
SELECT winning_score FROM table_name_23 WHERE date = "may 3, 1998"
What's the record achieved in the gamed played at BC Place Stadium?
columns: - name: record type: VARCHAR - name: location type: VARCHAR table: table_21796261_4
SELECT record FROM table_21796261_4 WHERE location = "BC Place Stadium"
Which providers use exchange server?
columns: - name: provider type: VARCHAR - name: application type: VARCHAR table: table_14465871_2
SELECT provider FROM table_14465871_2 WHERE application = "Exchange Server"
What club wast he player hristo stoitchkov from?
columns: - name: club type: VARCHAR - name: player type: VARCHAR table: table_name_97
SELECT club FROM table_name_97 WHERE player = "hristo stoitchkov"
What was the mintage having an issue price of $1,099.99, artist being Pamela Stagg?
columns: - name: mintage type: INTEGER - name: issue_price type: VARCHAR - name: artist type: VARCHAR table: table_name_62
SELECT AVG(mintage) FROM table_name_62 WHERE issue_price = "$1,099.99" AND artist = "pamela stagg"
Which Ratio has a Similar ISO A size of a3?
columns: - name: ratio type: INTEGER - name: similar_iso_a_size type: VARCHAR table: table_name_76
SELECT AVG(ratio) FROM table_name_76 WHERE similar_iso_a_size = "a3"
What is listed as the Elector with the Title of Deacon of S. Maria in Domnica?
columns: - name: elector type: VARCHAR - name: title type: VARCHAR table: table_name_62
SELECT elector FROM table_name_62 WHERE title = "deacon of s. maria in domnica"
What is the muslim percentage of the 49634 population of england and wales 000?
columns: - name: muslim___percentage_of_total_population_ type: VARCHAR - name: population_of_england_and_wales_000 type: VARCHAR table: table_1532779_1
SELECT muslim___percentage_of_total_population_ FROM table_1532779_1 WHERE population_of_england_and_wales_000 = 49634
What amount of prize money was there when the rank was less than 7, there were more than 6 events, and the country was Fiji?
columns: - name: prize_money___$__ type: VARCHAR - name: country type: VARCHAR - name: rank type: VARCHAR - name: events type: VARCHAR table: table_name_94
SELECT prize_money___$__ FROM table_name_94 WHERE rank < 7 AND events > 6 AND country = "fiji"
For the team whose shirt sponsor is Krombacher, who is the team captain?
columns: - name: team type: VARCHAR - name: shirt_sponsor type: VARCHAR table: table_name_12
SELECT team AS Captain FROM table_name_12 WHERE shirt_sponsor = "krombacher"
Who was the manager for the team with captain Neil Redfearn?
columns: - name: manager_1 type: VARCHAR - name: captain type: VARCHAR table: table_name_24
SELECT manager_1 FROM table_name_24 WHERE captain = "neil redfearn"
Which Round is the highest one that has an Overall of 32, and a Pick # smaller than 4?
columns: - name: round type: INTEGER - name: overall type: VARCHAR - name: pick__number type: VARCHAR table: table_name_85
SELECT MAX(round) FROM table_name_85 WHERE overall = 32 AND pick__number < 4
Displacement of 4.4l (4423cc/269in³) and a Power of 220kw (299hp) @ 4000 belongs to what engine?
columns: - name: engine type: VARCHAR - name: displacement type: VARCHAR - name: power type: VARCHAR table: table_name_21
SELECT engine FROM table_name_21 WHERE displacement = "4.4l (4423cc/269in³)" AND power = "220kw (299hp) @ 4000"
What was the outcome for the game that was played on 07-Jun-2010?
columns: - name: outcome type: VARCHAR - name: date type: VARCHAR table: table_name_8
SELECT outcome FROM table_name_8 WHERE date = "07-jun-2010"
What is the position earlier than 1907, with a cross-code debut of inaugural rl test v new zealand, and a test debut of inaugural ru test v new zealand?
columns: - name: position type: VARCHAR - name: test_debut type: VARCHAR - name: year type: VARCHAR - name: cross_code_debut type: VARCHAR table: table_name_92
SELECT position FROM table_name_92 WHERE year < 1907 AND cross_code_debut = "inaugural rl test v new zealand" AND test_debut = "inaugural ru test v new zealand"
What was the high assists on April 7?
columns: - name: high_assists type: VARCHAR - name: date type: VARCHAR table: table_17288825_10
SELECT high_assists FROM table_17288825_10 WHERE date = "April 7"
What is the week with a record of 2-1?
columns: - name: week type: VARCHAR - name: record type: VARCHAR table: table_name_56
SELECT COUNT(week) FROM table_name_56 WHERE record = "2-1"
What date did the Chicago Bears beat the Green bay Packers 31-20?
columns: - name: date type: VARCHAR - name: loser type: VARCHAR - name: location type: VARCHAR table: table_name_32
SELECT date FROM table_name_32 WHERE loser = "green bay packers" AND location = "green bay"
What year did the San Agustin gym open?
columns: - name: year_opened type: VARCHAR - name: arena_venue type: VARCHAR table: table_name_44
SELECT year_opened FROM table_name_44 WHERE arena_venue = "san agustin gym"
When the points scored was over 110.25%, what's the average amount lost?
columns: - name: lost type: INTEGER - name: _percentage_pts type: INTEGER table: table_name_69
SELECT AVG(lost) FROM table_name_69 WHERE _percentage_pts > 110.25
What score in the final has hard as the surface, and june 13, 2011 as the date?
columns: - name: score_in_the_final type: VARCHAR - name: surface type: VARCHAR - name: date type: VARCHAR table: table_name_57
SELECT score_in_the_final FROM table_name_57 WHERE surface = "hard" AND date = "june 13, 2011"
What is the highest GA when GF is 39?
columns: - name: ga type: INTEGER - name: gf type: VARCHAR table: table_1888157_1
SELECT MAX(ga) FROM table_1888157_1 WHERE gf = 39
What is Colorado College's lowest pick number?
columns: - name: pick__number type: INTEGER - name: college type: VARCHAR table: table_name_9
SELECT MIN(pick__number) FROM table_name_9 WHERE college = "colorado"
Name the total number of rank for east midnapore
columns: - name: rank type: VARCHAR - name: district type: VARCHAR table: table_2527063_3
SELECT COUNT(rank) FROM table_2527063_3 WHERE district = "East Midnapore"
How many stages are there?
columns: - name: stage type: INTEGER table: table_25655781_17
SELECT MAX(stage) FROM table_25655781_17
Which DOB has Throws of r, and a Position of c, and a First of torey?
columns: - name: dob type: VARCHAR - name: first type: VARCHAR - name: throws type: VARCHAR - name: position type: VARCHAR table: table_name_25
SELECT dob FROM table_name_25 WHERE throws = "r" AND position = "c" AND first = "torey"
What is the away team where the home team is Coventry City?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR table: table_name_73
SELECT away_team FROM table_name_73 WHERE home_team = "coventry city"
What is the lowest pick number where the overall pick number was 38?
columns: - name: pick type: INTEGER - name: overall type: VARCHAR table: table_name_73
SELECT MIN(pick) FROM table_name_73 WHERE overall = 38
What is the 2005 that has a grand slam tournaments in 2007?
columns: - name: Id type: VARCHAR table: table_name_52
SELECT 2005 FROM table_name_52 WHERE 2007 = "grand slam tournaments"
What trips are operated by Atlantic coast charters?
columns: - name: total_trips__am_pm_ type: VARCHAR - name: operated_by type: VARCHAR table: table_name_47
SELECT total_trips__am_pm_ FROM table_name_47 WHERE operated_by = "atlantic coast charters"