question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is Number Of Episodes, when Notes is "Moved to run a farm with boyfriend Jake."?
CREATE TABLE table_name_74 (number_of_episodes VARCHAR, notes VARCHAR)
SELECT number_of_episodes FROM table_name_74 WHERE notes = "moved to run a farm with boyfriend jake."
What day did they play on week 4?
CREATE TABLE table_name_25 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_25 WHERE week = 4
Which year in novel has a Published as serial of november 1934-april 1935, blue book?
CREATE TABLE table_name_18 (year_in_novel VARCHAR, published_as_serial VARCHAR)
SELECT year_in_novel FROM table_name_18 WHERE published_as_serial = "november 1934-april 1935, blue book"
What is Time/Retired, when Team is "Team Vodafone", and when Grid is greater than 4?
CREATE TABLE table_name_16 (time_retired VARCHAR, team VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_16 WHERE team = "team vodafone" AND grid > 4
Can you tell me the Year(s) Won that has the Country of united states, and the Total larger than 152?
CREATE TABLE table_name_62 (year_s__won VARCHAR, country VARCHAR, total VARCHAR)
SELECT year_s__won FROM table_name_62 WHERE country = "united states" AND total > 152
What is the city when the Television network was the NFL Network?
CREATE TABLE table_20996923_20 (city VARCHAR, television VARCHAR)
SELECT city FROM table_20996923_20 WHERE television = "NFL Network"
What is cork's rank?
CREATE TABLE table_name_4 (rank VARCHAR, county VARCHAR)
SELECT rank FROM table_name_4 WHERE county = "cork"
Which Case length has a Rim diameter of 13.20 (.518)?
CREATE TABLE table_name_90 (case_length VARCHAR, rim_diameter VARCHAR)
SELECT case_length FROM table_name_90 WHERE rim_diameter = "13.20 (.518)"
How many values for attendance correspond to the 1986 Peach Bowl?
CREATE TABLE table_15647838_3 (attendance VARCHAR, bowl_game VARCHAR)
SELECT COUNT(attendance) FROM table_15647838_3 WHERE bowl_game = "1986 Peach Bowl"
What is Game, when Road Team is "Syracuse", and when Result is "96-89"?
CREATE TABLE table_name_47 (game VARCHAR, road_team VARCHAR, result VARCHAR)
SELECT game FROM table_name_47 WHERE road_team = "syracuse" AND result = "96-89"
What was the rank of the player who had 13 assists?
CREATE TABLE table_name_14 (rank VARCHAR, assists VARCHAR)
SELECT rank FROM table_name_14 WHERE assists = "13"
Which service does the network of atn urdu offer?
CREATE TABLE table_name_74 (service VARCHAR, network VARCHAR)
SELECT service FROM table_name_74 WHERE network = "atn urdu"
What is the current venue for the Miami Masters tournament?
CREATE TABLE table_14903081_1 (current_venue VARCHAR, tournament VARCHAR)
SELECT current_venue FROM table_14903081_1 WHERE tournament = "Miami Masters"
In how many districts was the incumbent Estes Kefauver?
CREATE TABLE table_1342270_42 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(district) FROM table_1342270_42 WHERE incumbent = "Estes Kefauver"
Opponent of @ edmonton oilers, and a Game larger than 1, and a Series of oilers lead 3–2 had what score?
CREATE TABLE table_name_30 (score VARCHAR, series VARCHAR, opponent VARCHAR, game VARCHAR)
SELECT score FROM table_name_30 WHERE opponent = "@ edmonton oilers" AND game > 1 AND series = "oilers lead 3–2"
What nation is Marion Buisson playing for?
CREATE TABLE table_name_49 (nationality VARCHAR, name VARCHAR)
SELECT nationality FROM table_name_49 WHERE name = "marion buisson"
How many Goals for were recorded when there was a percentage smaller than 0.519 and points greater than 65?
CREATE TABLE table_name_62 (goals_for VARCHAR, pct__percentage VARCHAR, points VARCHAR)
SELECT COUNT(goals_for) FROM table_name_62 WHERE pct__percentage < 0.519 AND points > 65
What is the Tie no at the Hull City Home game with a Score of 1–1?
CREATE TABLE table_name_80 (tie_no VARCHAR, score VARCHAR, home_team VARCHAR)
SELECT tie_no FROM table_name_80 WHERE score = "1–1" AND home_team = "hull city"
What identities have more than 5 DVD volumes?
CREATE TABLE table_name_93 (identity_ies_ VARCHAR, dvd_volume INTEGER)
SELECT identity_ies_ FROM table_name_93 WHERE dvd_volume > 5
What are the email addresses of the drama workshop groups with address in Alaska state?
CREATE TABLE Drama_Workshop_Groups (Store_Email_Address VARCHAR, Address_ID VARCHAR); CREATE TABLE Addresses (Address_ID VARCHAR, State_County VARCHAR)
SELECT T2.Store_Email_Address FROM Addresses AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Address_ID = T2.Address_ID WHERE T1.State_County = "Alaska"
What is the rank of the player with less than 34 points?
CREATE TABLE table_name_95 (rank INTEGER, points INTEGER)
SELECT SUM(rank) FROM table_name_95 WHERE points < 34
For the teams that had fewer than 4 Losses, and less than 16 Wins, what was the total number of Draws?
CREATE TABLE table_name_21 (draws VARCHAR, losses VARCHAR, wins VARCHAR)
SELECT COUNT(draws) FROM table_name_21 WHERE losses < 4 AND wins < 16
Show the date and venue of each workshop in ascending alphabetical order of the venue.
CREATE TABLE workshop (Date VARCHAR, Venue VARCHAR)
SELECT Date, Venue FROM workshop ORDER BY Venue
Wht years did truck robinson play?
CREATE TABLE table_11545282_17 (years_for_jazz VARCHAR, player VARCHAR)
SELECT years_for_jazz FROM table_11545282_17 WHERE player = "Truck Robinson"
What team was 2 when Tatung was team 1 at National Pei Men Senior High School?
CREATE TABLE table_name_32 (team_2 VARCHAR, team_1 VARCHAR, ground VARCHAR)
SELECT team_2 FROM table_name_32 WHERE team_1 = "tatung" AND ground = "national pei men senior high school"
What is the rank for bob murphy with under 4 wins?
CREATE TABLE table_name_62 (rank VARCHAR, player VARCHAR, wins VARCHAR)
SELECT COUNT(rank) FROM table_name_62 WHERE player = "bob murphy" AND wins < 4
Who is the home team when the san francisco 49ers are visiting with a result of 42-14?
CREATE TABLE table_name_92 (home_team VARCHAR, visiting_team VARCHAR, result VARCHAR)
SELECT home_team FROM table_name_92 WHERE visiting_team = "san francisco 49ers" AND result = "42-14"
What is the home side's score at western oval?
CREATE TABLE table_name_23 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_23 WHERE venue = "western oval"
How many points against did the team that allowed 42 tries against allow?
CREATE TABLE table_name_65 (points_against VARCHAR, tries_against VARCHAR)
SELECT points_against FROM table_name_65 WHERE tries_against = "42"
Which partnership has a run number of 27?
CREATE TABLE table_name_70 (partnerships VARCHAR, runs VARCHAR)
SELECT partnerships FROM table_name_70 WHERE runs = "27"
What is the Catalog number of the CD Reissue Universal release?
CREATE TABLE table_name_79 (catalog VARCHAR, format VARCHAR, label VARCHAR)
SELECT catalog FROM table_name_79 WHERE format = "cd reissue" AND label = "universal"
Name the points against for porthcawl rfc
CREATE TABLE table_name_87 (points_against VARCHAR, club VARCHAR)
SELECT points_against FROM table_name_87 WHERE club = "porthcawl rfc"
Name the deceased spouse for length of marriage being 24 years
CREATE TABLE table_24143253_1 (deceased_spouse VARCHAR, length_of_marriage VARCHAR)
SELECT deceased_spouse FROM table_24143253_1 WHERE length_of_marriage = "24 years"
Which player has 69 as the score?
CREATE TABLE table_name_52 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_52 WHERE score = 69
What notes did the creature comforts film have?
CREATE TABLE table_name_31 (notes VARCHAR, title VARCHAR)
SELECT notes FROM table_name_31 WHERE title = "creature comforts"
WHAT IS THE DECISION FOR NOVEMBER 28?
CREATE TABLE table_name_10 (decision VARCHAR, date VARCHAR)
SELECT decision FROM table_name_10 WHERE date = "november 28"
Which Notes have a Date of 2008-01-27?
CREATE TABLE table_name_21 (notes VARCHAR, date VARCHAR)
SELECT notes FROM table_name_21 WHERE date = "2008-01-27"
Which player is 6-2?
CREATE TABLE table_name_9 (player VARCHAR, height VARCHAR)
SELECT player FROM table_name_9 WHERE height = "6-2"
When is the appointment date for outgoing manager Petrik Sander?
CREATE TABLE table_name_60 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT date_of_appointment FROM table_name_60 WHERE outgoing_manager = "petrik sander"
what is the competition in a year after 1911 with the position of 1st for the rings?
CREATE TABLE table_name_78 (competition VARCHAR, event VARCHAR, year VARCHAR, position VARCHAR)
SELECT competition FROM table_name_78 WHERE year > 1911 AND position = "1st" AND event = "rings"
Who played in the series that resulted in matches with the following scores: 0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5?
CREATE TABLE table_14263158_3 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_14263158_3 WHERE result = "0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5"
Where did Richmond play?
CREATE TABLE table_name_10 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_10 WHERE away_team = "richmond"
Name the location for trenton 300
CREATE TABLE table_22669375_1 (location VARCHAR, race_name VARCHAR)
SELECT location FROM table_22669375_1 WHERE race_name = "Trenton 300"
what is the highest % hydropower when the % oil is less than 24.5, country is united arab emirates and the % nuclear power is 0?
CREATE TABLE table_name_80 (_percentage_hydropower INTEGER, _percentage_nuclear_power VARCHAR, _percentage_oil VARCHAR, country VARCHAR)
SELECT MAX(_percentage_hydropower) FROM table_name_80 WHERE _percentage_oil < 24.5 AND country = "united arab emirates" AND _percentage_nuclear_power < 0
Which Number has a Name of cooper, c. kenneth, and a Year End larger than 1984?
CREATE TABLE table_name_90 (number INTEGER, name VARCHAR, year_end VARCHAR)
SELECT AVG(number) FROM table_name_90 WHERE name = "cooper, c. kenneth" AND year_end > 1984
What is the purpose for Frequency of 102.3?
CREATE TABLE table_name_65 (purpose VARCHAR, frequency VARCHAR)
SELECT purpose FROM table_name_65 WHERE frequency = "102.3"
What is the Office when spencer c. young is on the liberal ticket??
CREATE TABLE table_name_74 (office VARCHAR, liberal_ticket VARCHAR)
SELECT office FROM table_name_74 WHERE liberal_ticket = "spencer c. young"
What was segment A when segment B was snowboards?
CREATE TABLE table_15187735_1 (segment_a VARCHAR, segment_b VARCHAR)
SELECT segment_a FROM table_15187735_1 WHERE segment_b = "Snowboards"
Which Run 4 has Athletes of alexandru frimu & costel rădulescu?
CREATE TABLE table_name_37 (run_4 VARCHAR, athletes VARCHAR)
SELECT run_4 FROM table_name_37 WHERE athletes = "alexandru frimu & costel rădulescu"
What was the record on june 29?
CREATE TABLE table_name_25 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_25 WHERE date = "june 29"
How many founded years had a final af2 season prior to 2009 where the arena was the bi-lo center and the first af2 season was prior to 2000?
CREATE TABLE table_name_73 (founded VARCHAR, first_af2_season VARCHAR, final_af2_season VARCHAR, arena VARCHAR)
SELECT COUNT(founded) FROM table_name_73 WHERE final_af2_season < 2009 AND arena = "bi-lo center" AND first_af2_season < 2000
How many bronzes have a total less than 11, with 11 as the rank, and a gold less than 1?
CREATE TABLE table_name_81 (bronze VARCHAR, gold VARCHAR, total VARCHAR, rank VARCHAR)
SELECT COUNT(bronze) FROM table_name_81 WHERE total < "11" AND rank = "11" AND gold < 1
What is the date of the game where the line judge was Bob Beeks, the head linesman was Jerry Bergman, and Paul Baetz was the back judge?
CREATE TABLE table_name_61 (date VARCHAR, back_judge VARCHAR, line_judge VARCHAR, head_linesman VARCHAR)
SELECT date FROM table_name_61 WHERE line_judge = "bob beeks" AND head_linesman = "jerry bergman" AND back_judge = "paul baetz"
who is the the president with date of inauguration being 4june1979
CREATE TABLE table_12134383_1 (president VARCHAR, date_of_inauguration VARCHAR)
SELECT president FROM table_12134383_1 WHERE date_of_inauguration = "4June1979"
Name the most losses for leslie mann
CREATE TABLE table_16512618_1 (losses INTEGER, manager VARCHAR)
SELECT MAX(losses) FROM table_16512618_1 WHERE manager = "Leslie Mann"
What is the total number of offensive rebounds for players with under 65 total rebounds, 5 defensive rebounds, and under 7 assists?
CREATE TABLE table_name_8 (off_reb VARCHAR, asst VARCHAR, total_reb VARCHAR, def_reb VARCHAR)
SELECT COUNT(off_reb) FROM table_name_8 WHERE total_reb < 65 AND def_reb = 5 AND asst < 7
Who was the partner at the Australian Open, Melbourne when the score was 2–6, 7–5, 6–2, 4–6, 3–6?
CREATE TABLE table_name_6 (partner VARCHAR, championship VARCHAR, score VARCHAR)
SELECT partner FROM table_name_6 WHERE championship = "australian open, melbourne" AND score = "2–6, 7–5, 6–2, 4–6, 3–6"
Which of the chassis had a total of 7 points?
CREATE TABLE table_name_60 (chassis VARCHAR, points VARCHAR)
SELECT chassis FROM table_name_60 WHERE points = 7
For a goal difference greater than 3 and fewer than 8 losses, what is the most draws scored?
CREATE TABLE table_name_94 (draws INTEGER, goal_difference VARCHAR, losses VARCHAR)
SELECT MAX(draws) FROM table_name_94 WHERE goal_difference > 3 AND losses < 8
Name the game cost for merged with new york central to form penn central
CREATE TABLE table_243664_1 (game_cost VARCHAR, real_life_eventual_outcome VARCHAR)
SELECT game_cost FROM table_243664_1 WHERE real_life_eventual_outcome = "Merged with New York Central to form Penn Central"
On what Date was the Opponent the Tennessee Titans?
CREATE TABLE table_name_47 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_47 WHERE opponent = "tennessee titans"
What is the average game number when the record is 4-1?
CREATE TABLE table_name_18 (game INTEGER, record VARCHAR)
SELECT AVG(game) FROM table_name_18 WHERE record = "4-1"
What is the Departure time at Rajendranagar Terminal?
CREATE TABLE table_name_66 (departure VARCHAR, station_name VARCHAR)
SELECT departure FROM table_name_66 WHERE station_name = "rajendranagar terminal"
What is the area code in which the most voters voted?
CREATE TABLE area_code_state (area_code VARCHAR, state VARCHAR); CREATE TABLE votes (state VARCHAR)
SELECT T1.area_code FROM area_code_state AS T1 JOIN votes AS T2 ON T1.state = T2.state GROUP BY T1.area_code ORDER BY COUNT(*) DESC LIMIT 1
What is the average speed of roller coasters?
CREATE TABLE roller_coaster (Speed INTEGER)
SELECT AVG(Speed) FROM roller_coaster
Which Tie has a Score of 5–1?
CREATE TABLE table_name_98 (tie_no VARCHAR, score VARCHAR)
SELECT tie_no FROM table_name_98 WHERE score = "5–1"
What date was the surface hard and Eva Hrdinová was the opponent?
CREATE TABLE table_name_40 (date VARCHAR, surface VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_40 WHERE surface = "hard" AND opponent = "eva hrdinová"
Name the most # of seats won
CREATE TABLE table_19769687_3 (_number_of_seats_won INTEGER)
SELECT MAX(_number_of_seats_won) FROM table_19769687_3
How many days with frost were there in the City/Town of Lugo have?
CREATE TABLE table_name_22 (days_with_frost INTEGER, city_town VARCHAR)
SELECT SUM(days_with_frost) FROM table_name_22 WHERE city_town = "lugo"
How many Vacators were listed when the district was North Carolina 3rd?
CREATE TABLE table_225095_4 (vacator VARCHAR, district VARCHAR)
SELECT COUNT(vacator) FROM table_225095_4 WHERE district = "North Carolina 3rd"
What is the ICAO for the IATA bvc?
CREATE TABLE table_name_88 (icao VARCHAR, iata VARCHAR)
SELECT icao FROM table_name_88 WHERE iata = "bvc"
How many carries have an average under 8.7 and touchdowns of 72?
CREATE TABLE table_name_37 (carries VARCHAR, average VARCHAR, touchdowns VARCHAR)
SELECT COUNT(carries) FROM table_name_37 WHERE average < 8.7 AND touchdowns = 72
Name the played with losing bonus of 3 and points against of 426
CREATE TABLE table_name_37 (played VARCHAR, losing_bonus VARCHAR, points_against VARCHAR)
SELECT played FROM table_name_37 WHERE losing_bonus = "3" AND points_against = "426"
How many teams came in fourth when Otsuka Pharmaceuticals won?
CREATE TABLE table_29446183_2 (fourth_place VARCHAR, winner VARCHAR)
SELECT COUNT(fourth_place) FROM table_29446183_2 WHERE winner = "Otsuka Pharmaceuticals"
Who is in heat 5 from Guyana?
CREATE TABLE table_name_64 (name VARCHAR, heat VARCHAR, country VARCHAR)
SELECT name FROM table_name_64 WHERE heat = 5 AND country = "guyana"
What is the Wheelbase for Model 97300?
CREATE TABLE table_20866024_4 (wheelbase__mm_inch_ VARCHAR, model_designation VARCHAR)
SELECT wheelbase__mm_inch_ FROM table_20866024_4 WHERE model_designation = "97300"
Which catalog had a date year of 1984?
CREATE TABLE table_name_66 (catalog VARCHAR, date VARCHAR)
SELECT catalog FROM table_name_66 WHERE date = "1984"
What is Paul Coward 492cc nourish Weslake's lowest rank?
CREATE TABLE table_26986076_3 (rank INTEGER, rider VARCHAR)
SELECT MIN(rank) FROM table_26986076_3 WHERE rider = "Paul Coward 492cc Nourish Weslake"
What day did they play the phoenix suns?
CREATE TABLE table_27902171_4 (date VARCHAR, team VARCHAR)
SELECT date FROM table_27902171_4 WHERE team = "Phoenix Suns"
How many laps were done in 2012?
CREATE TABLE table_name_26 (laps INTEGER, year VARCHAR)
SELECT SUM(laps) FROM table_name_26 WHERE year = 2012
What was the smallest population figure for Mareeba?
CREATE TABLE table_12555835_1 (population__mareeba_ INTEGER)
SELECT MIN(population__mareeba_) FROM table_12555835_1
Srdjan Dragojevic worked on a film which earned what nomination?
CREATE TABLE table_10236830_4 (nomination VARCHAR, director VARCHAR)
SELECT nomination FROM table_10236830_4 WHERE director = "Srdjan Dragojevic"
For the station opened after 1876 at 604.53km from Wellington, what is the height above sea level?
CREATE TABLE table_name_22 (height_above_sea_level__m_ VARCHAR, opened VARCHAR, distance_from_wellington VARCHAR)
SELECT height_above_sea_level__m_ FROM table_name_22 WHERE opened > 1876 AND distance_from_wellington = "604.53km"
Who was the away team at the home game of north melbourne?
CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_63 WHERE home_team = "north melbourne"
Which Points have a Game smaller than 8, and a Record of 1–0–0?
CREATE TABLE table_name_73 (points INTEGER, game VARCHAR, record VARCHAR)
SELECT SUM(points) FROM table_name_73 WHERE game < 8 AND record = "1–0–0"
Which Date has a Winning score of –14 (66-64-68-68=266)?
CREATE TABLE table_name_93 (date VARCHAR, winning_score VARCHAR)
SELECT date FROM table_name_93 WHERE winning_score = –14(66 - 64 - 68 - 68 = 266)
Who did the Giants play before week 7 in Tulane Stadium?
CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)
SELECT opponent FROM table_name_25 WHERE week < 7 AND game_site = "tulane stadium"
Which average match has a lost greater than 0, points greater than 6, legia warszawa as the team, and a draw less than 0?
CREATE TABLE table_name_55 (match INTEGER, draw VARCHAR, team VARCHAR, lost VARCHAR, points VARCHAR)
SELECT AVG(match) FROM table_name_55 WHERE lost > 0 AND points > 6 AND team = "legia warszawa" AND draw < 0
Which district had a first elected in 1882 with a result of re-elected?
CREATE TABLE table_name_7 (district VARCHAR, first_elected VARCHAR, result VARCHAR)
SELECT district FROM table_name_7 WHERE first_elected = 1882 AND result = "re-elected"
What are the comments when the implementation is software running on central processor module?
CREATE TABLE table_1206114_2 (comments VARCHAR, implementation VARCHAR)
SELECT comments FROM table_1206114_2 WHERE implementation = "Software running on Central Processor Module"
what is the glos & wilts where the bristol & somerset is lansdown?
CREATE TABLE table_12043148_2 (glos_ VARCHAR, _wilts VARCHAR, bristol_ VARCHAR, _somerset VARCHAR)
SELECT glos_ & _wilts FROM table_12043148_2 WHERE bristol_ & _somerset = "Lansdown"
Where are the Alexandria enrollment locations?
CREATE TABLE table_2076608_3 (enrollment VARCHAR, location_s_ VARCHAR)
SELECT enrollment FROM table_2076608_3 WHERE location_s_ = "Alexandria"
How many Class AAAA winners where in 2002-03?
CREATE TABLE table_14603057_2 (class_aAAA VARCHAR, school_year VARCHAR)
SELECT COUNT(class_aAAA) FROM table_14603057_2 WHERE school_year = "2002-03"
Who was the winner at Rest Day course?
CREATE TABLE table_name_67 (winner VARCHAR, course VARCHAR)
SELECT winner FROM table_name_67 WHERE course = "rest day"
What is the score of T7 place?
CREATE TABLE table_name_69 (score VARCHAR, place VARCHAR)
SELECT score FROM table_name_69 WHERE place = "t7"
What's the HP -hr/gal of the fuel whose GGE is 0.9000?
CREATE TABLE table_2224692_1 (hp__hr_gal VARCHAR, gge VARCHAR)
SELECT hp__hr_gal FROM table_2224692_1 WHERE gge = "0.9000"
WHAT IS THE WEEK WITH AN ATTENDANCE OF 75,555?
CREATE TABLE table_name_23 (week INTEGER, attendance VARCHAR)
SELECT SUM(week) FROM table_name_23 WHERE attendance = "75,555"
How many times was the opponent country India?
CREATE TABLE table_21907770_4 (country VARCHAR, versus VARCHAR)
SELECT COUNT(country) FROM table_21907770_4 WHERE versus = "India"
Tell me the sum of bronze for gold being 27 and silver more than 30
CREATE TABLE table_name_35 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
SELECT SUM(bronze) FROM table_name_35 WHERE gold = 27 AND silver > 30
Who finished 3rd in Oslo?
CREATE TABLE table_name_74 (third VARCHAR, venue VARCHAR)
SELECT third FROM table_name_74 WHERE venue = "oslo"