question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the lowest value for apps in 2009 season in a division less than 1?
columns: - name: apps type: INTEGER - name: season type: VARCHAR - name: division type: VARCHAR table: table_name_86
SELECT MIN(apps) FROM table_name_86 WHERE season = "2009" AND division < 1
What is Rank, when Headquarters is United Kingdom, and when Sales (billion $) is 370.9?
columns: - name: rank type: VARCHAR - name: headquarters type: VARCHAR - name: sales__billion_$_ type: VARCHAR table: table_name_14
SELECT rank FROM table_name_14 WHERE headquarters = "united kingdom" AND sales__billion_$_ = 370.9
What is the release in Germany?
columns: - name: release_date type: VARCHAR - name: location type: VARCHAR table: table_name_96
SELECT release_date FROM table_name_96 WHERE location = "germany"
What is Fuzzy Zoeller's To par?
columns: - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_29
SELECT to_par FROM table_name_29 WHERE player = "fuzzy zoeller"
Tell me the opponent for attendance of 68,264
columns: - name: opponent type: VARCHAR - name: attendance type: VARCHAR table: table_name_74
SELECT opponent FROM table_name_74 WHERE attendance = "68,264"
Please name the Losses that has a Played smaller than 5?
columns: - name: losses type: INTEGER - name: played type: INTEGER table: table_name_57
SELECT MAX(losses) FROM table_name_57 WHERE played < 5
What is the highest pick for a year after 2010 and a round larger than 1?
columns: - name: pick type: INTEGER - name: year type: VARCHAR - name: round type: VARCHAR table: table_name_41
SELECT MAX(pick) FROM table_name_41 WHERE year > 2010 AND round > 1
What was the yield for a blast that was in nts area 3s?
columns: - name: yield type: VARCHAR - name: location type: VARCHAR table: table_name_39
SELECT yield FROM table_name_39 WHERE location = "nts area 3s"
What is the total Gold with a Bronze smaller than 7, a Total of 1, a Nation of cape verde, and a Silver smaller than 0?
columns: - name: gold type: INTEGER - name: silver type: VARCHAR - name: nation type: VARCHAR - name: bronze type: VARCHAR - name: total type: VARCHAR table: table_name_48
SELECT SUM(gold) FROM table_name_48 WHERE bronze < 7 AND total = 1 AND nation = "cape verde" AND silver < 0
What was Phil Mickelson's score to par?
columns: - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_28
SELECT to_par FROM table_name_28 WHERE player = "phil mickelson"
What score does Vasil Levski National Stadium, Sofia earn?
columns: - name: score type: VARCHAR - name: venue type: VARCHAR table: table_name_62
SELECT score FROM table_name_62 WHERE venue = "vasil levski national stadium, sofia"
what is the record when the year is after 1992, manager is tom kotchman and finish is 2nd?
columns: - name: record type: VARCHAR - name: finish type: VARCHAR - name: year type: VARCHAR - name: manager type: VARCHAR table: table_name_51
SELECT record FROM table_name_51 WHERE year > 1992 AND manager = "tom kotchman" AND finish = "2nd"
Who did they play at sec tournament?
columns: - name: opponent type: VARCHAR - name: location type: VARCHAR table: table_name_17
SELECT opponent FROM table_name_17 WHERE location = "sec tournament"
What is the highest Poles, when Series is Ginetta Championship, and when Season is before 2007?
columns: - name: poles type: INTEGER - name: series type: VARCHAR - name: season type: VARCHAR table: table_name_56
SELECT MAX(poles) FROM table_name_56 WHERE series = "ginetta championship" AND season < 2007
Who was the jockey with opening odds of 4-1?
columns: - name: jockey type: VARCHAR - name: opening_odds type: VARCHAR table: table_22517564_3
SELECT jockey FROM table_22517564_3 WHERE opening_odds = "4-1"
Who was the (M) Best & Fairest when ray kaduck was president and richard keane was coach?
columns: - name: _m__best_ type: VARCHAR - name: _fairest type: VARCHAR - name: president type: VARCHAR - name: _m__coach type: VARCHAR table: table_name_2
SELECT _m__best_ & _fairest FROM table_name_2 WHERE president = "ray kaduck" AND _m__coach = "richard keane"
How many incumbents were first elected in 1930?
columns: - name: party type: VARCHAR - name: first_elected type: VARCHAR table: table_1342292_45
SELECT COUNT(party) FROM table_1342292_45 WHERE first_elected = 1930
The KTRH.com website includes which type of webcast?
columns: - name: webcast type: VARCHAR - name: website type: VARCHAR table: table_name_54
SELECT webcast FROM table_name_54 WHERE website = "ktrh.com"
What is the total points when the horse is Chippison?
columns: - name: points type: VARCHAR - name: horse type: VARCHAR table: table_name_96
SELECT COUNT(points) FROM table_name_96 WHERE horse = "chippison"
Who was the incumbent from the Ohio 13 district?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_name_50
SELECT incumbent FROM table_name_50 WHERE district = "ohio 13"
What is the total number of bronze medals the U.S. Virgin Islands, which has less than 0 golds, has?
columns: - name: bronze type: VARCHAR - name: nation type: VARCHAR - name: gold type: VARCHAR table: table_name_45
SELECT COUNT(bronze) FROM table_name_45 WHERE nation = "u.s. virgin islands" AND gold < 0
Which number has 11 males?
columns: - name: number type: VARCHAR - name: males type: VARCHAR table: table_name_41
SELECT number FROM table_name_41 WHERE males = "11"
What winning score has in-kyung kim as the runner(s)-up?
columns: - name: winning_score type: VARCHAR - name: runner_s__up type: VARCHAR table: table_name_64
SELECT winning_score FROM table_name_64 WHERE runner_s__up = "in-kyung kim"
What is the Traditional Chinese of 国殇 which is over 9?
columns: - name: traditional_chinese type: VARCHAR - name: standard_order type: VARCHAR - name: simplified_chinese type: VARCHAR table: table_name_14
SELECT traditional_chinese FROM table_name_14 WHERE standard_order > 9 AND simplified_chinese = "国殇"
Tell me the result for green bay packers
columns: - name: result type: VARCHAR - name: opponent type: VARCHAR table: table_name_77
SELECT result FROM table_name_77 WHERE opponent = "green bay packers"
Which road team has a result of 117-114?
columns: - name: road_team type: VARCHAR - name: result type: VARCHAR table: table_name_61
SELECT road_team FROM table_name_61 WHERE result = "117-114"
How many Drawn did Coach Francis Cummins have with less than 4 Lost?
columns: - name: drawn type: INTEGER - name: lost type: VARCHAR - name: coach type: VARCHAR table: table_name_99
SELECT SUM(drawn) FROM table_name_99 WHERE lost < 4 AND coach = "francis cummins"
What was the total attendance in week 8?
columns: - name: attendance type: VARCHAR - name: week type: VARCHAR table: table_name_96
SELECT COUNT(attendance) FROM table_name_96 WHERE week = 8
What is the truck used by Brett Moffitt, from Hattori Racing Enterprises?
columns: - name: truck_s_ type: VARCHAR - name: driver_s_ type: VARCHAR - name: team type: VARCHAR table: table_name_23
SELECT truck_s_ FROM table_name_23 WHERE driver_s_ = "brett moffitt" AND team = "hattori racing enterprises"
What game in the season does this list start?
columns: - name: game type: INTEGER table: table_27713030_7
SELECT MIN(game) FROM table_27713030_7
Which Week has a Date of december 3, 2001?
columns: - name: week type: VARCHAR - name: date type: VARCHAR table: table_name_56
SELECT week FROM table_name_56 WHERE date = "december 3, 2001"
What is the average round for Wisconsin when the overall is larger than 238 and there is a defensive end?
columns: - name: round type: INTEGER - name: school_club_team type: VARCHAR - name: overall type: VARCHAR - name: position type: VARCHAR table: table_name_87
SELECT AVG(round) FROM table_name_87 WHERE overall > 238 AND position = "defensive end" AND school_club_team = "wisconsin"
What Location Attendance has an Opponent of at denver nuggets?
columns: - name: location_attendance type: VARCHAR - name: opponent type: VARCHAR table: table_name_66
SELECT location_attendance FROM table_name_66 WHERE opponent = "at denver nuggets"
What's the shortest length from north klondike highway that has a length less than 326?
columns: - name: length__km_ type: INTEGER - name: name type: VARCHAR - name: length__mi_ type: VARCHAR table: table_name_38
SELECT MIN(length__km_) FROM table_name_38 WHERE name = "north klondike highway" AND length__mi_ < 326
Where was the game against the away team Footscray held?
columns: - name: venue type: VARCHAR - name: away_team type: VARCHAR table: table_name_49
SELECT venue FROM table_name_49 WHERE away_team = "footscray"
What Torque has a Power of HP (KW)?
columns: - name: torque type: VARCHAR - name: power type: VARCHAR table: table_name_21
SELECT torque FROM table_name_21 WHERE power = "hp (kw)"
I want the constellation for declination for °45′ and right ascension of 07h58m
columns: - name: constellation type: VARCHAR - name: declination___j2000__ type: VARCHAR - name: right_ascension___j2000__ type: VARCHAR table: table_name_56
SELECT constellation FROM table_name_56 WHERE declination___j2000__ = "°45′" AND right_ascension___j2000__ = "07h58m"
How many gold medals did the team that won a total of 10 medals and 3 silver medals win?
columns: - name: gold type: VARCHAR - name: silver type: VARCHAR - name: total type: VARCHAR table: table_name_44
SELECT gold FROM table_name_44 WHERE silver = 3 AND total = 10
What is the lowest draft pick number for mark doak who had an overall pick smaller than 147?
columns: - name: pick type: INTEGER - name: name type: VARCHAR - name: overall type: VARCHAR table: table_name_30
SELECT MIN(pick) FROM table_name_30 WHERE name = "mark doak" AND overall < 147
What country has a compulsory deduction of 29.3%?
columns: - name: country type: VARCHAR - name: compulsory_deduction type: VARCHAR table: table_24486462_1
SELECT country FROM table_24486462_1 WHERE compulsory_deduction = "29.3%"
Championship larger than 3, and a FA Cup smaller than 3, and a Total smaller than 6 involves what highest league cup?
columns: - name: league_cup type: INTEGER - name: total type: VARCHAR - name: championship type: VARCHAR - name: fa_cup type: VARCHAR table: table_name_27
SELECT MAX(league_cup) FROM table_name_27 WHERE championship > 3 AND fa_cup < 3 AND total < 6
What losses consist of the team of japan?
columns: - name: losses type: VARCHAR - name: team type: VARCHAR table: table_name_13
SELECT losses FROM table_name_13 WHERE team = "japan"
What was the vacancy date of the manager appointed on 11 March 2010?
columns: - name: date_of_vacancy type: VARCHAR - name: date_of_appointment type: VARCHAR table: table_name_45
SELECT date_of_vacancy FROM table_name_45 WHERE date_of_appointment = "11 march 2010"
What district has 98 constituencies?
columns: - name: district type: VARCHAR - name: constituency_number type: VARCHAR table: table_name_54
SELECT district FROM table_name_54 WHERE constituency_number = "98"
What is the zodiac sign for the English March?
columns: - name: zodiac_sign type: VARCHAR - name: english_name type: VARCHAR table: table_name_81
SELECT zodiac_sign FROM table_name_81 WHERE english_name = "march"
Who trained the horse with time of 1:09.40?
columns: - name: trainer type: VARCHAR - name: time type: VARCHAR table: table_name_24
SELECT trainer FROM table_name_24 WHERE time = "1:09.40"
What is the score of the Devil Rays on April 24?
columns: - name: score type: VARCHAR - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_28
SELECT score FROM table_name_28 WHERE opponent = "devil rays" AND date = "april 24"
what is the result when the opponent is at dallas cowboys?
columns: - name: result type: VARCHAR - name: opponent type: VARCHAR table: table_name_12
SELECT result FROM table_name_12 WHERE opponent = "at dallas cowboys"
What is the total number of assists of the player with 0 goals, more than 1 points, and more than 0 pims?
columns: - name: assists type: VARCHAR - name: pims type: VARCHAR - name: goals type: VARCHAR - name: points type: VARCHAR table: table_name_85
SELECT COUNT(assists) FROM table_name_85 WHERE goals = 0 AND points > 1 AND pims > 0
How many laps had a grid of greater than 17 and retired due to collision?
columns: - name: laps type: INTEGER - name: grid type: VARCHAR - name: time_retired type: VARCHAR table: table_name_99
SELECT SUM(laps) FROM table_name_99 WHERE grid > 17 AND time_retired = "collision"
What is the name of the school with a decile of 1, a state authority, and located in Otahuhu?
columns: - name: name type: VARCHAR - name: area type: VARCHAR - name: decile type: VARCHAR - name: authority type: VARCHAR table: table_name_41
SELECT name FROM table_name_41 WHERE decile = "1" AND authority = "state" AND area = "otahuhu"
What is the Tie number for the match that had away team of Scunthorpe & Lindsey United?
columns: - name: tie_no type: VARCHAR - name: away_team type: VARCHAR table: table_name_61
SELECT tie_no FROM table_name_61 WHERE away_team = "scunthorpe & lindsey united"
WHAT IS THE 2011 PERFORMANCE AT THE MIAMI MASTERS?
columns: - name: tournament type: VARCHAR table: table_name_74
SELECT 2011 FROM table_name_74 WHERE tournament = "miami masters"
Who was Dainty June when Boyd Gaines was Herbie?
columns: - name: dainty_june type: VARCHAR - name: herbie type: VARCHAR table: table_name_27
SELECT dainty_june FROM table_name_27 WHERE herbie = "boyd gaines"
Which player was at position left tackle?
columns: - name: player type: VARCHAR - name: position type: VARCHAR table: table_25711913_8
SELECT player FROM table_25711913_8 WHERE position = "Left tackle"
What position did the MLS team metrostars pick?
columns: - name: position type: VARCHAR - name: mls_team type: VARCHAR table: table_name_84
SELECT position FROM table_name_84 WHERE mls_team = "metrostars"
What is the show's time slot during season 3?
columns: - name: timeslot type: VARCHAR - name: season type: VARCHAR table: table_15358729_6
SELECT timeslot FROM table_15358729_6 WHERE season = 3
How much Overall has a Position of ot, and a Round larger than 5?
columns: - name: overall type: VARCHAR - name: position type: VARCHAR - name: round type: VARCHAR table: table_name_76
SELECT COUNT(overall) FROM table_name_76 WHERE position = "ot" AND round > 5
Which Location has a Method of decision (unanimous), and Res of win x?
columns: - name: location type: VARCHAR - name: method type: VARCHAR - name: res type: VARCHAR table: table_name_99
SELECT location FROM table_name_99 WHERE method = "decision (unanimous)" AND res = "win x"
What are the grades served at Manchester Junior-Senior High School?
columns: - name: grades type: VARCHAR - name: school type: VARCHAR table: table_1984697_85
SELECT grades FROM table_1984697_85 WHERE school = "Manchester Junior-Senior High school"
What is the Score when Set 2 shows 25-20, and a Total of 75 - 49?
columns: - name: score type: VARCHAR - name: set_2 type: VARCHAR - name: total type: VARCHAR table: table_name_27
SELECT score FROM table_name_27 WHERE set_2 = "25-20" AND total = "75 - 49"
What is the Place of the Player with a Score of 73-68-71=212?
columns: - name: place type: VARCHAR - name: score type: VARCHAR table: table_name_16
SELECT place FROM table_name_16 WHERE score = 73 - 68 - 71 = 212
Who is the director of Little Beau Porky?
columns: - name: director type: VARCHAR - name: title type: VARCHAR table: table_name_31
SELECT director FROM table_name_31 WHERE title = "little beau porky"
How many schools won their last occ championship in 2006?
columns: - name: school type: VARCHAR - name: last_occ_championship type: VARCHAR table: table_17429402_7
SELECT COUNT(school) FROM table_17429402_7 WHERE last_occ_championship = "2006"
What is the result of Chris Gratton and Philadelphia Flyers as the Offer Team?
columns: - name: result type: VARCHAR - name: offer_team type: VARCHAR - name: player type: VARCHAR table: table_name_73
SELECT result FROM table_name_73 WHERE offer_team = "philadelphia flyers" AND player = "chris gratton"
What is the average number of goals for entries with more than 12 losses, more than 10 wins, more than 3 draws, and fewer than 29 points?
columns: - name: goals_for type: INTEGER - name: draws type: VARCHAR - name: points type: VARCHAR - name: losses type: VARCHAR - name: wins type: VARCHAR table: table_name_99
SELECT AVG(goals_for) FROM table_name_99 WHERE losses > 12 AND wins > 10 AND points < 29 AND draws > 3
Which Athlete has a Rank larger than 1, and a Lane larger than 7, and a Nationality of china?
columns: - name: athlete type: VARCHAR - name: nationality type: VARCHAR - name: rank type: VARCHAR - name: lane type: VARCHAR table: table_name_97
SELECT athlete FROM table_name_97 WHERE rank > 1 AND lane > 7 AND nationality = "china"
Name the guest for 1.64m ratings
columns: - name: guest_s_ type: VARCHAR - name: ratings type: VARCHAR table: table_29135051_2
SELECT guest_s_ FROM table_29135051_2 WHERE ratings = "1.64m"
What is the width for the year of the 1970?
columns: - name: width type: VARCHAR - name: year type: VARCHAR table: table_name_38
SELECT width FROM table_name_38 WHERE year = "1970"
How many Weeks are on september 8, 1980 and Attendances larger than 55,045? Question 4
columns: - name: week type: VARCHAR - name: date type: VARCHAR - name: attendance type: VARCHAR table: table_name_22
SELECT COUNT(week) FROM table_name_22 WHERE date = "september 8, 1980" AND attendance > 55 OFFSET 045
Who has rank 5?
columns: - name: name type: VARCHAR - name: rank type: VARCHAR table: table_name_23
SELECT name FROM table_name_23 WHERE rank = 5
How many ships are named Monge?
columns: - name: ordered type: VARCHAR - name: name type: VARCHAR table: table_name_10
SELECT COUNT(ordered) FROM table_name_10 WHERE name = "monge"
What is the Area with 26 in Roll
columns: - name: area type: VARCHAR - name: roll type: VARCHAR table: table_name_63
SELECT area FROM table_name_63 WHERE roll = 26
what is the average league cup goals when the position is df and total goals is more than 4?
columns: - name: league_cup_goals type: INTEGER - name: position type: VARCHAR - name: total_goals type: VARCHAR table: table_name_78
SELECT AVG(league_cup_goals) FROM table_name_78 WHERE position = "df" AND total_goals > 4
What is the highest year premiered for the TV2 network when main present is øyvind mund?
columns: - name: year_premiered type: INTEGER - name: network type: VARCHAR - name: main_presenter type: VARCHAR table: table_24224647_2
SELECT MAX(year_premiered) FROM table_24224647_2 WHERE network = "TV2" AND main_presenter = "Øyvind Mund"
Who was the away captain with a result of Eng by 1 wkt?
columns: - name: away_captain type: VARCHAR - name: result type: VARCHAR table: table_name_43
SELECT away_captain FROM table_name_43 WHERE result = "eng by 1 wkt"
What was the highest amount of episodes for the season with 5.74 million viewers?
columns: - name: episodes type: INTEGER - name: viewers__in_millions_ type: VARCHAR table: table_22837363_1
SELECT MAX(episodes) FROM table_22837363_1 WHERE viewers__in_millions_ = "5.74"
What is the highest pick number of a defensive back with less than 136 overall points?
columns: - name: pick__number type: INTEGER - name: overall type: VARCHAR - name: position type: VARCHAR table: table_name_99
SELECT MAX(pick__number) FROM table_name_99 WHERE overall < 136 AND position = "defensive back"
What is Fiji's lowest total?
columns: - name: total type: INTEGER - name: country type: VARCHAR table: table_name_63
SELECT MIN(total) FROM table_name_63 WHERE country = "fiji"
What is Player, when Place is "1"?
columns: - name: player type: VARCHAR - name: place type: VARCHAR table: table_name_43
SELECT player FROM table_name_43 WHERE place = "1"
How many districts have Mac Sweeney as incumbent?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341586_44
SELECT COUNT(candidates) FROM table_1341586_44 WHERE incumbent = "Mac Sweeney"
What Opponent has an Attendance of 74,246?
columns: - name: opponent type: VARCHAR - name: attendance type: VARCHAR table: table_name_49
SELECT opponent FROM table_name_49 WHERE attendance = "74,246"
What was Nick Faldo's score?
columns: - name: score type: VARCHAR - name: player type: VARCHAR table: table_name_73
SELECT score FROM table_name_73 WHERE player = "nick faldo"
When the Sn/Sb (%) of 13/17, and a Liquidat (c) bigger than 283 what's the solidat (c)?
columns: - name: solidat__ type: INTEGER - name: sn_sb___percentage_ type: VARCHAR - name: "liquidat__\xB0c_" type: VARCHAR table: table_name_46
SELECT SUM(solidat__) AS °c_ FROM table_name_46 WHERE sn_sb___percentage_ = "13/17" AND liquidat__°c_ > 283
Which Score has a To par of +1, and a Player of masashi ozaki?
columns: - name: score type: VARCHAR - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_94
SELECT score FROM table_name_94 WHERE to_par = "+1" AND player = "masashi ozaki"
What location has tatsuhito takaiwa as the wrestler?
columns: - name: location type: VARCHAR - name: wrestler type: VARCHAR table: table_name_14
SELECT location FROM table_name_14 WHERE wrestler = "tatsuhito takaiwa"
What is the mean pick number for the cornerback position when the overall is less than 134?
columns: - name: pick__number type: INTEGER - name: position type: VARCHAR - name: overall type: VARCHAR table: table_name_60
SELECT AVG(pick__number) FROM table_name_60 WHERE position = "cornerback" AND overall < 134
What is the high total for players with over 15 solo tackles?
columns: - name: total type: INTEGER - name: solo type: INTEGER table: table_name_31
SELECT MAX(total) FROM table_name_31 WHERE solo > 15
Which name has a License of gpl, and a Platform of windows?
columns: - name: name type: VARCHAR - name: license type: VARCHAR - name: platform type: VARCHAR table: table_name_47
SELECT name FROM table_name_47 WHERE license = "gpl" AND platform = "windows"
Name the production code for 4.92 million viewers
columns: - name: prod_code type: VARCHAR - name: viewers__millions_ type: VARCHAR table: table_23117208_4
SELECT prod_code FROM table_23117208_4 WHERE viewers__millions_ = "4.92"
Which arranger worked with composer Imad Shams Eldeen at 4:03?
columns: - name: arranger type: VARCHAR - name: composer type: VARCHAR - name: length type: VARCHAR table: table_name_19
SELECT arranger FROM table_name_19 WHERE composer = "imad shams eldeen" AND length = "4:03"
What is the result for the Toscane Horse in the freestyle test?
columns: - name: result type: VARCHAR - name: horse type: VARCHAR - name: event type: VARCHAR table: table_name_60
SELECT result FROM table_name_60 WHERE horse = "toscane" AND event = "freestyle test"
Which Track time has a Disc larger than 2, a Track smaller than 22, and an English title of younger girl?
columns: - name: track type: VARCHAR - name: english_title type: VARCHAR - name: disc type: VARCHAR table: table_name_80
SELECT track AS time FROM table_name_80 WHERE disc > 2 AND track < 22 AND english_title = "younger girl"
How many episodes have a segment d that is goalie masks (part 2)?
columns: - name: episode type: VARCHAR - name: segment_d type: VARCHAR table: table_name_53
SELECT COUNT(episode) FROM table_name_53 WHERE segment_d = "goalie masks (part 2)"
What's Steve Langdon's naitionality?
columns: - name: nationality type: VARCHAR - name: player type: VARCHAR table: table_1965650_4
SELECT nationality FROM table_1965650_4 WHERE player = "Steve Langdon"
Who was the second when Ilian Kirilov was the lead?
columns: - name: second type: VARCHAR - name: lead type: VARCHAR table: table_name_2
SELECT second FROM table_name_2 WHERE lead = "ilian kirilov"
How many scores are listed for the game against Houston
columns: - name: score type: VARCHAR - name: team type: VARCHAR table: table_17323042_7
SELECT COUNT(score) FROM table_17323042_7 WHERE team = "Houston"
Which 2004 has a Tournament of french open?
columns: - name: tournament type: VARCHAR table: table_name_41
SELECT 2004 FROM table_name_41 WHERE tournament = "french open"
In what laguage was Contotv 5?
columns: - name: language type: VARCHAR - name: television_service type: VARCHAR table: table_15887683_19
SELECT language FROM table_15887683_19 WHERE television_service = "ContoTV 5"
How many people were in the crowd when the away team was north melbourne?
columns: - name: crowd type: INTEGER - name: away_team type: VARCHAR table: table_name_27
SELECT SUM(crowd) FROM table_name_27 WHERE away_team = "north melbourne"