question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the highest w plyf with a first yr before 1960, a G plyf greater than 0, a G > .500 less than 43, and a w-l% less than 0.578?
columns: - name: w_plyf type: INTEGER - name: w_l_percentage type: VARCHAR - name: first_yr type: VARCHAR - name: g_plyf type: VARCHAR - name: g_ type: VARCHAR - name: _500 type: VARCHAR table: table_name_99
SELECT MAX(w_plyf) FROM table_name_99 WHERE first_yr < 1960 AND g_plyf > 0 AND g_ > _500 < 43 AND w_l_percentage < 0.578
how mant different day names in old English were coined from the Latin day name "dies iovis"?
columns: - name: old_english_day_name type: VARCHAR - name: glossed_from_latin_day_name type: VARCHAR table: table_2624098_1
SELECT COUNT(old_english_day_name) FROM table_2624098_1 WHERE glossed_from_latin_day_name = "Dies Iovis"
What is the average number of yards on a red tee that has a hole of 1 and a par above 4?
columns: - name: yards__red_tees_ type: INTEGER - name: hole type: VARCHAR - name: par__white_tees_ type: VARCHAR table: table_name_27
SELECT AVG(yards__red_tees_) FROM table_name_27 WHERE hole = "1" AND par__white_tees_ > 4
What To par has a Score of 68-66=134?
columns: - name: to_par type: VARCHAR - name: score type: VARCHAR table: table_name_15
SELECT to_par FROM table_name_15 WHERE score = 68 - 66 = 134
What are the lowest points with 2013 as the year, and goals less than 0?
columns: - name: points type: INTEGER - name: year type: VARCHAR - name: goals type: VARCHAR table: table_name_48
SELECT MIN(points) FROM table_name_48 WHERE year = "2013" AND goals < 0
What rank is Miller Barber with more than 11 wins?
columns: - name: rank type: VARCHAR - name: wins type: VARCHAR - name: player type: VARCHAR table: table_name_35
SELECT rank FROM table_name_35 WHERE wins > 11 AND player = "miller barber"
What was the dominant religion in 2002 in lokve?
columns: - name: dominant_religion__2002_ type: VARCHAR - name: settlement type: VARCHAR table: table_2562572_44
SELECT dominant_religion__2002_ FROM table_2562572_44 WHERE settlement = "Lokve"
who is the the womens singles with mixed doubles being bernd frohnwieser hilde themel and year being smaller than 1959.0
columns: - name: womens_singles type: VARCHAR - name: mixed_doubles type: VARCHAR - name: year type: VARCHAR table: table_15002265_1
SELECT womens_singles FROM table_15002265_1 WHERE mixed_doubles = "Bernd Frohnwieser Hilde Themel" AND year < 1959.0
In 1912 when the U.S used sapphire, what was the Hindu birthstone?
columns: - name: hindu type: VARCHAR - name: us__1912_ type: VARCHAR table: table_name_77
SELECT hindu FROM table_name_77 WHERE us__1912_ = "sapphire"
What is the time for Sheffield?
columns: - name: time type: VARCHAR - name: city type: VARCHAR table: table_name_15
SELECT time FROM table_name_15 WHERE city = "sheffield"
If the language is only native, what is the percentage of the San Antonio de Lomerio municipality?
columns: - name: "san_antonio_de_lomer\xEDo_municipality___percentage_" type: VARCHAR - name: language type: VARCHAR table: table_19998428_3
SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE language = "Only native"
What is the mean Fall 09 number where fall 05 is less than 3?
columns: - name: fall_09 type: INTEGER - name: fall_05 type: INTEGER table: table_name_34
SELECT AVG(fall_09) FROM table_name_34 WHERE fall_05 < 3
What was week 2's opponent?
columns: - name: opponent type: VARCHAR - name: week type: VARCHAR table: table_name_47
SELECT opponent FROM table_name_47 WHERE week = 2
What is the Result when the Theme was by Dolly Parton?
columns: - name: result type: VARCHAR - name: theme type: VARCHAR table: table_name_42
SELECT result FROM table_name_42 WHERE theme = "dolly parton"
Which English has Dutch of tong?
columns: - name: english type: VARCHAR - name: dutch type: VARCHAR table: table_name_26
SELECT english FROM table_name_26 WHERE dutch = "tong"
What is the area of the nation with GDP per capita (US$) of 11,929?
columns: - name: "area__km\xB2_" type: VARCHAR - name: gdp_per_capita__us$_ type: VARCHAR table: table_name_11
SELECT area__km²_ FROM table_name_11 WHERE gdp_per_capita__us$_ = "11,929"
What is the grid for Jack Brabham with more than 65 laps?
columns: - name: grid type: INTEGER - name: driver type: VARCHAR - name: laps type: VARCHAR table: table_name_34
SELECT SUM(grid) FROM table_name_34 WHERE driver = "jack brabham" AND laps > 65
what is the current streak when the last 5 meetings is osu, 4-1?
columns: - name: current_streak type: VARCHAR - name: last_5_meetings type: VARCHAR table: table_name_27
SELECT current_streak FROM table_name_27 WHERE last_5_meetings = "osu, 4-1"
Which Overall is the average one that has a Pick # larger than 7, and a Round larger than 4, and a Name of glen howe?
columns: - name: overall type: INTEGER - name: name type: VARCHAR - name: pick__number type: VARCHAR - name: round type: VARCHAR table: table_name_30
SELECT AVG(overall) FROM table_name_30 WHERE pick__number > 7 AND round > 4 AND name = "glen howe"
What is the Website of Head Coach Yuriy Korotkevich?
columns: - name: website type: VARCHAR - name: head_coach type: VARCHAR table: table_name_49
SELECT website FROM table_name_49 WHERE head_coach = "yuriy korotkevich"
Who trained the representative whose presentation of credentials happened on February 24, 1950?
columns: - name: training type: VARCHAR - name: presentation_of_credentials type: VARCHAR table: table_20065425_1
SELECT training FROM table_20065425_1 WHERE presentation_of_credentials = "February 24, 1950"
What is the nationality for the player with over 64 goals?
columns: - name: nat type: VARCHAR - name: goals type: INTEGER table: table_name_56
SELECT nat FROM table_name_56 WHERE goals > 64
What royal house did Shaokang belong to?
columns: - name: royal_house type: VARCHAR - name: name type: VARCHAR table: table_name_94
SELECT royal_house FROM table_name_94 WHERE name = "shaokang"
What was the depravitiy of earnings where international sales was 2470?
columns: - name: income_poverty_f type: VARCHAR - name: exports__usd_mn__2011 type: VARCHAR table: table_13618358_1
SELECT income_poverty_f FROM table_13618358_1 WHERE exports__usd_mn__2011 = 2470
Name the team classification for stage of 20
columns: - name: team_classification type: VARCHAR - name: stage type: VARCHAR table: table_name_92
SELECT team_classification FROM table_name_92 WHERE stage = "20"
Which Week 2 Sept 7 has a Week 6 Oct 5 of wake forest (3-1)?
columns: - name: week_2_sept_7 type: VARCHAR - name: week_6_oct_5 type: VARCHAR table: table_name_84
SELECT week_2_sept_7 FROM table_name_84 WHERE week_6_oct_5 = "wake forest (3-1)"
What was the Bhofen #2 score and rank for the player whose GA-PA score and rank was 233.4 (16)?
columns: - name: bhofen_number2__rk_ type: VARCHAR - name: ga_pa__rk_ type: VARCHAR table: table_14948647_1
SELECT bhofen_number2__rk_ FROM table_14948647_1 WHERE ga_pa__rk_ = "233.4 (16)"
If the 2011 population is 3685681, what is the name of the headquarters?
columns: - name: headquarters type: VARCHAR - name: population__2011_ type: VARCHAR table: table_2168295_1
SELECT headquarters FROM table_2168295_1 WHERE population__2011_ = 3685681
Where did the Oakland Raiders play in week 12 of their 1976 season?
columns: - name: game_site type: VARCHAR - name: week type: VARCHAR table: table_name_90
SELECT game_site FROM table_name_90 WHERE week = 12
What is the Republican seat plurality of North Carolina?
columns: - name: republican_seat_plurality type: VARCHAR - name: state_ranked_in_partisan_order type: VARCHAR table: table_name_18
SELECT republican_seat_plurality FROM table_name_18 WHERE state_ranked_in_partisan_order = "north carolina"
What are the years for Kawerau Putauaki School?
columns: - name: years type: VARCHAR - name: name type: VARCHAR table: table_name_98
SELECT years FROM table_name_98 WHERE name = "kawerau putauaki school"
Which City has a Series of Tamra's oc wedding?
columns: - name: city type: VARCHAR - name: series type: VARCHAR table: table_name_23
SELECT city FROM table_name_23 WHERE series = "tamra's oc wedding"
How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones?
columns: - name: mens_u20 type: VARCHAR - name: womens_40 type: VARCHAR table: table_16724844_1
SELECT COUNT(mens_u20) FROM table_16724844_1 WHERE womens_40 = "Sydney Scorpions def North Queensland Cyclones"
What is the release date by Virgin?
columns: - name: release_date type: INTEGER - name: music_label type: VARCHAR table: table_name_86
SELECT AVG(release_date) FROM table_name_86 WHERE music_label = "virgin"
Who was the visitor on October 31?
columns: - name: visitor type: VARCHAR - name: date type: VARCHAR table: table_name_75
SELECT visitor FROM table_name_75 WHERE date = "october 31"
Which episodein season 3 had 175020 for a production code?
columns: - name: _number type: VARCHAR - name: prod_code type: VARCHAR table: table_2602958_4
SELECT _number FROM table_2602958_4 WHERE prod_code = 175020
With U.S. viewers of 9.32 million, what is the production code?
columns: - name: production_code type: VARCHAR - name: us_viewers__millions_ type: VARCHAR table: table_19266557_1
SELECT production_code FROM table_19266557_1 WHERE us_viewers__millions_ = "9.32"
What is the Singapore League Cup when rank is more than 4, and the S-League is 2 (12)?
columns: - name: singapore_league_cup type: VARCHAR - name: rank type: VARCHAR - name: s_league type: VARCHAR table: table_name_50
SELECT singapore_league_cup FROM table_name_50 WHERE rank > 4 AND s_league = "2 (12)"
Name the candidates for felix walker
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_2668329_18
SELECT candidates FROM table_2668329_18 WHERE incumbent = "Felix Walker"
Can you tell me the Total number of Rankthat has the Lane of 4?
columns: - name: rank type: VARCHAR - name: lane type: VARCHAR table: table_name_67
SELECT COUNT(rank) FROM table_name_67 WHERE lane = 4
Name the 2013 profit for assets being 11.2
columns: - name: assets_2013__bil$_ type: VARCHAR table: table_24307126_3
SELECT 2013 AS _profit__mil_usd__ FROM table_24307126_3 WHERE assets_2013__bil$_ = "11.2"
What time does lane 7 have?
columns: - name: time type: VARCHAR - name: lane type: VARCHAR table: table_name_56
SELECT time FROM table_name_56 WHERE lane = 7
What is the latest stable release date for Crawltrack?
columns: - name: latest_stable_release type: VARCHAR - name: name type: VARCHAR table: table_name_83
SELECT latest_stable_release FROM table_name_83 WHERE name = "crawltrack"
Which Competition has a Year larger than 2000?
columns: - name: competition type: VARCHAR - name: year type: INTEGER table: table_name_45
SELECT competition FROM table_name_45 WHERE year > 2000
what is the total number of high rebounds for minnesota?
columns: - name: high_rebounds type: VARCHAR - name: team type: VARCHAR table: table_22879262_7
SELECT COUNT(high_rebounds) FROM table_22879262_7 WHERE team = "Minnesota"
Which Tournament has a Partner of martín rodríguez?
columns: - name: tournament type: VARCHAR - name: partner type: VARCHAR table: table_name_19
SELECT tournament FROM table_name_19 WHERE partner = "martín rodríguez"
What is the highest overall pick that has c as the position, with an NFL Draft greater than 1977?
columns: - name: overall_pick type: INTEGER - name: position type: VARCHAR - name: nfl_draft type: VARCHAR table: table_name_27
SELECT MAX(overall_pick) FROM table_name_27 WHERE position = "c" AND nfl_draft > 1977
Who was the play by play commentator for ABC after 1998?
columns: - name: play_by_play type: VARCHAR - name: network type: VARCHAR - name: year type: VARCHAR table: table_name_61
SELECT play_by_play FROM table_name_61 WHERE network = "abc" AND year > 1998
What is the position for the austria formel 3 cup series?
columns: - name: position type: VARCHAR - name: series type: VARCHAR table: table_27631002_1
SELECT position FROM table_27631002_1 WHERE series = "Austria Formel 3 Cup"
What earpads do the headphones with driver-matched dB over 0.05 and MSRP of $79 have?
columns: - name: earpads type: VARCHAR - name: driver_matched_db type: VARCHAR - name: us_msrp type: VARCHAR table: table_name_49
SELECT earpads FROM table_name_49 WHERE driver_matched_db > 0.05 AND us_msrp = "$79"
How many team songs does fremantle have?
columns: - name: basis_for_team_song type: VARCHAR - name: club_name type: VARCHAR table: table_28243323_1
SELECT COUNT(basis_for_team_song) FROM table_28243323_1 WHERE club_name = "Fremantle"
Who held the title of Ruler?
columns: - name: name type: VARCHAR - name: title type: VARCHAR table: table_name_31
SELECT name FROM table_name_31 WHERE title = "ruler"
What is the average number of silver medals of the nation with 3 bronzes and more than 4 total medals?
columns: - name: silver type: INTEGER - name: bronze type: VARCHAR - name: total type: VARCHAR table: table_name_79
SELECT AVG(silver) FROM table_name_79 WHERE bronze = 3 AND total > 4
What is Opposing Teams, when Against is "20", and when Venue is "Twickenham , London"?
columns: - name: opposing_teams type: VARCHAR - name: against type: VARCHAR - name: venue type: VARCHAR table: table_name_35
SELECT opposing_teams FROM table_name_35 WHERE against = 20 AND venue = "twickenham , london"
What is the Location of the Event in Round 1 with a Time of 1:25?
columns: - name: location type: VARCHAR - name: round type: VARCHAR - name: time type: VARCHAR table: table_name_21
SELECT location FROM table_name_21 WHERE round = 1 AND time = "1:25"
What is the M60A3 that has 40 rounds as Leclerc?
columns: - name: m60a3_patton type: VARCHAR - name: leclerc type: VARCHAR table: table_name_28
SELECT m60a3_patton FROM table_name_28 WHERE leclerc = "40 rounds"
Name the college for nate binder
columns: - name: college type: VARCHAR - name: player type: VARCHAR table: table_25017530_5
SELECT college FROM table_25017530_5 WHERE player = "Nate Binder"
What is the sum of Total, when Year(s) Won is "1966 , 1970 , 1978", and when To par is less than 4?
columns: - name: total type: INTEGER - name: year_s__won type: VARCHAR - name: to_par type: VARCHAR table: table_name_81
SELECT SUM(total) FROM table_name_81 WHERE year_s__won = "1966 , 1970 , 1978" AND to_par < 4
How many overs did Oliver Hannon-Dalby have?
columns: - name: overs type: VARCHAR - name: player type: VARCHAR table: table_15893020_2
SELECT overs FROM table_15893020_2 WHERE player = "Oliver Hannon-Dalby"
What is the name of the player with t6 as his place and a country of United states?
columns: - name: player type: VARCHAR - name: place type: VARCHAR - name: country type: VARCHAR table: table_name_85
SELECT player FROM table_name_85 WHERE place = "t6" AND country = "united states"
Which Tournament has a Score of 6–4, 6–4?
columns: - name: tournament type: VARCHAR - name: score type: VARCHAR table: table_name_75
SELECT tournament FROM table_name_75 WHERE score = "6–4, 6–4"
What is the Established date of the Ontario Provincial Junior A Hockey League with more than 1 Championship?
columns: - name: established type: VARCHAR - name: league type: VARCHAR - name: championships type: VARCHAR table: table_name_58
SELECT COUNT(established) FROM table_name_58 WHERE league = "ontario provincial junior a hockey" AND championships > 1
What is the original air date of the episode that was written by Rama Stagner?
columns: - name: original_air_date type: VARCHAR - name: written_by type: VARCHAR table: table_27389024_2
SELECT original_air_date FROM table_27389024_2 WHERE written_by = "Rama Stagner"
What is the lowest number of losses for Nottingham City with fewer than 0 wins?
columns: - name: losses type: INTEGER - name: team type: VARCHAR - name: wins type: VARCHAR table: table_name_28
SELECT MIN(losses) FROM table_name_28 WHERE team = "nottingham city" AND wins < 0
How many positions have a played greater than 12?
columns: - name: position type: VARCHAR - name: played type: INTEGER table: table_name_26
SELECT COUNT(position) FROM table_name_26 WHERE played > 12
What City had Results¹ of 1:2?
columns: - name: city type: VARCHAR - name: "results\xB9" type: VARCHAR table: table_name_39
SELECT city FROM table_name_39 WHERE results¹ = "1:2"
Name the team of vitali yeremeyev
columns: - name: nhl_team type: VARCHAR - name: player type: VARCHAR table: table_name_97
SELECT nhl_team FROM table_name_97 WHERE player = "vitali yeremeyev"
What is the Borough for the Seward listing on 1977-11-23?
columns: - name: borough type: VARCHAR - name: location type: VARCHAR - name: listed type: VARCHAR table: table_name_54
SELECT borough FROM table_name_54 WHERE location = "seward" AND listed = "1977-11-23"
How many laps were driven in 2:54:23.8?
columns: - name: laps type: INTEGER - name: time_retired type: VARCHAR table: table_name_45
SELECT SUM(laps) FROM table_name_45 WHERE time_retired = "2:54:23.8"
Which institution is located in Reading, PA?
columns: - name: institution type: VARCHAR - name: location type: VARCHAR table: table_name_44
SELECT institution FROM table_name_44 WHERE location = "reading, pa"
what is the highest rank when the nation is united states (usa) and bronze is more than 1?
columns: - name: rank type: INTEGER - name: nation type: VARCHAR - name: bronze type: VARCHAR table: table_name_23
SELECT MAX(rank) FROM table_name_23 WHERE nation = "united states (usa)" AND bronze > 1
On what date did Aymo Maggi win the Rome Grand Prix ?
columns: - name: date type: VARCHAR - name: winning_driver type: VARCHAR - name: name type: VARCHAR table: table_name_6
SELECT date FROM table_name_6 WHERE winning_driver = "aymo maggi" AND name = "rome grand prix"
If the team is Rubio ñú, what is the 08 points?
columns: - name: team type: VARCHAR table: table_22011138_7
SELECT 08 AS _pts FROM table_22011138_7 WHERE team = "Rubio Ñú"
What is the percentage of yes when there were 218846 yes votes
columns: - name: _percentage_yes type: VARCHAR - name: yes_votes type: VARCHAR table: table_256286_61
SELECT _percentage_yes FROM table_256286_61 WHERE yes_votes = 218846
Which album had the note tape [tape echo]?
columns: - name: album type: VARCHAR - name: note type: VARCHAR table: table_name_95
SELECT album FROM table_name_95 WHERE note = "tape [tape echo]"
When rank is 5, what is the rowers?
columns: - name: rowers type: VARCHAR - name: rank type: VARCHAR table: table_name_32
SELECT rowers FROM table_name_32 WHERE rank = 5
What are the losses where the award is Mike Miller (Smoy)?
columns: - name: losses type: VARCHAR - name: awards type: VARCHAR table: table_name_34
SELECT losses FROM table_name_34 WHERE awards = "mike miller (smoy)"
The University of Colorado hosted what region?
columns: - name: region type: VARCHAR - name: host type: VARCHAR table: table_name_4
SELECT region FROM table_name_4 WHERE host = "university of colorado"
Who was the director when the writer(s) was John W. Bloch?
columns: - name: director type: VARCHAR - name: writer_s_ type: VARCHAR table: table_21146729_6
SELECT director FROM table_21146729_6 WHERE writer_s_ = "John W. Bloch"
If the amount of passengers is 15,505,566, what is the %/chg. for 2009/10?
columns: - name: _percentage_chg_2009_10 type: VARCHAR - name: passengers type: VARCHAR table: table_18047346_4
SELECT _percentage_chg_2009_10 FROM table_18047346_4 WHERE passengers = "15,505,566"
Who was the opponent when the Maroons record was 11–4–1?
columns: - name: opponent type: VARCHAR - name: record type: VARCHAR table: table_name_37
SELECT opponent FROM table_name_37 WHERE record = "11–4–1"
what is the country when the score is 72-68-67=207?
columns: - name: country type: VARCHAR - name: score type: VARCHAR table: table_name_79
SELECT country FROM table_name_79 WHERE score = 72 - 68 - 67 = 207
What is the varsity name of the university of mcgill university?
columns: - name: varsity_name type: VARCHAR - name: university type: VARCHAR table: table_27369069_4
SELECT varsity_name FROM table_27369069_4 WHERE university = "McGill university"
How many fatalities were there in the crash described as crashed at take-off due to engine failure?
columns: - name: fatalities type: VARCHAR - name: brief_description type: VARCHAR table: table_229917_2
SELECT fatalities FROM table_229917_2 WHERE brief_description = "Crashed at take-off due to engine failure"
How many Losses have South West DFL of coleraine, and an Against smaller than 891?
columns: - name: losses type: VARCHAR - name: south_west_dfl type: VARCHAR - name: against type: VARCHAR table: table_name_51
SELECT COUNT(losses) FROM table_name_51 WHERE south_west_dfl = "coleraine" AND against < 891
What year was someone first elected?
columns: - name: first_elected type: INTEGER table: table_1342379_45
SELECT MIN(first_elected) FROM table_1342379_45
What was the domestic box office for "House on Haunted Hill"?
columns: - name: domestic_box_office type: VARCHAR - name: film type: VARCHAR table: table_2203760_4
SELECT domestic_box_office FROM table_2203760_4 WHERE film = "House on Haunted Hill"
Who lost to moyer (9–4)?
columns: - name: opponent type: VARCHAR - name: loss type: VARCHAR table: table_name_26
SELECT opponent FROM table_name_26 WHERE loss = "moyer (9–4)"
Which year is the lowest for genre of action-adventure?
columns: - name: year type: INTEGER - name: genre type: VARCHAR table: table_name_36
SELECT MIN(year) FROM table_name_36 WHERE genre = "action-adventure"
What was the Result on the Date of 25th?
columns: - name: result type: VARCHAR - name: date type: VARCHAR table: table_name_82
SELECT result FROM table_name_82 WHERE date = "25th"
What year had a league position of 8/12?
columns: - name: year type: VARCHAR - name: league_position type: VARCHAR table: table_name_63
SELECT year FROM table_name_63 WHERE league_position = "8/12"
What was the name of the team in 1965 driving the Ferrari 158?
columns: - name: entrant type: VARCHAR - name: year type: VARCHAR - name: chassis type: VARCHAR table: table_name_3
SELECT entrant FROM table_name_3 WHERE year = 1965 AND chassis = "ferrari 158"
Which home team played against Hawthorn?
columns: - name: home_team type: VARCHAR - name: away_team type: VARCHAR table: table_name_49
SELECT home_team AS score FROM table_name_49 WHERE away_team = "hawthorn"
What is the smallest Pick with Overall of 244?
columns: - name: pick type: INTEGER - name: overall type: VARCHAR table: table_name_33
SELECT MIN(pick) FROM table_name_33 WHERE overall = 244
What is the total number of medals by the Czech republic?
columns: - name: total type: VARCHAR - name: nation type: VARCHAR table: table_name_70
SELECT total FROM table_name_70 WHERE nation = "czech republic"
What school or team has round of 2 with less than 42 picks?
columns: - name: school_club_team type: VARCHAR - name: round type: VARCHAR - name: pick type: VARCHAR table: table_name_50
SELECT school_club_team FROM table_name_50 WHERE round = 2 AND pick < 42
What place is South Africa?
columns: - name: place type: VARCHAR - name: country type: VARCHAR table: table_name_99
SELECT place FROM table_name_99 WHERE country = "south africa"
Where is Dynamo-2 located?
columns: - name: location type: VARCHAR - name: team type: VARCHAR table: table_name_38
SELECT location FROM table_name_38 WHERE team = "dynamo-2"
what is 2011 when the rank is less than 8 and the water park is ocean world?
columns: - name: rank type: VARCHAR - name: water_park type: VARCHAR table: table_name_58
SELECT SUM(2011) FROM table_name_58 WHERE rank < 8 AND water_park = "ocean world"
What is the Tournament, when 2012 is 3R?
columns: - name: tournament type: VARCHAR table: table_name_66
SELECT tournament FROM table_name_66 WHERE 2012 = "3r"