answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT comp FROM table_name_1 WHERE date = "1998-04-22"
CREATE TABLE table_name_1 (comp VARCHAR, date VARCHAR)
What's the comp for 1998-04-22?
SELECT score FROM table_name_49 WHERE venue = "olympic stadium tokyo, japan"
CREATE TABLE table_name_49 (score VARCHAR, venue VARCHAR)
What's the score at Olympic Stadium Tokyo, Japan?
SELECT comp FROM table_name_60 WHERE venue = "olympic stadium tokyo, japan"
CREATE TABLE table_name_60 (comp VARCHAR, venue VARCHAR)
What's the comp in Olympic Stadium Tokyo, Japan?
SELECT report FROM table_name_31 WHERE venue = "king baudouin stadium brussels, belgium"
CREATE TABLE table_name_31 (report VARCHAR, venue VARCHAR)
What's the report in King Baudouin Stadium Brussels, Belgium?
SELECT percentage_lost FROM table_name_93 WHERE starting_weight__kg_ > 102 AND weight_lost__kg_ = 46.9
CREATE TABLE table_name_93 (percentage_lost VARCHAR, starting_weight__kg_ VARCHAR, weight_lost__kg_ VARCHAR)
What is the Percentage Lost for the contestant with a starting weight above 102 kg who lost 46.9 kg?
SELECT SUM(lane) FROM table_name_95 WHERE time = "1:57.71"
CREATE TABLE table_name_95 (lane INTEGER, time VARCHAR)
What lane has a time of 1:57.71?
SELECT name FROM table_name_32 WHERE rank > 3 AND lane < 6 AND time = "1:58.15"
CREATE TABLE table_name_32 (name VARCHAR, time VARCHAR, rank VARCHAR, lane VARCHAR)
Who had a larger rank than 3, less than 6 lanes, and a time of 1:58.15?
SELECT MIN(crude_death_rate__per_1000_) FROM table_name_51 WHERE deaths = "768" AND crude_birth_rate__per_1000_ < 29.7
CREATE TABLE table_name_51 (crude_death_rate__per_1000_ INTEGER, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR)
Which Crude death rate (per 1000) has Deaths of 768, and a Crude birth rate (per 1000) smaller than 29.7?
SELECT MIN(attendance) FROM table_name_91 WHERE opponent = "perth glory" AND round = "9"
CREATE TABLE table_name_91 (attendance INTEGER, opponent VARCHAR, round VARCHAR)
Which Attendance has an Opponent of perth glory, and a Round of 9?
SELECT MIN(rank) FROM table_name_91 WHERE rider = "darren gilpin"
CREATE TABLE table_name_91 (rank INTEGER, rider VARCHAR)
What is the lowest rank of rider darren gilpin?
SELECT MAX(rank) FROM table_name_66 WHERE rider = "colin martin"
CREATE TABLE table_name_66 (rank INTEGER, rider VARCHAR)
What is the highest rank of rider colin martin?
SELECT tuesday FROM table_name_77 WHERE monday = "fox sports primetime"
CREATE TABLE table_name_77 (tuesday VARCHAR, monday VARCHAR)
What is shown on Tuesday when Monday is showing Fox Sports Primetime?
SELECT friday FROM table_name_25 WHERE tuesday = "jay mohr sports"
CREATE TABLE table_name_25 (friday VARCHAR, tuesday VARCHAR)
What is shown on Friday when Tuesday is Jay Mohr Sports?
SELECT friday FROM table_name_36 WHERE monday = "fox sports primetime"
CREATE TABLE table_name_36 (friday VARCHAR, monday VARCHAR)
What is shown on Friday when Monday is Fox Sports Primetime?
SELECT tuesday FROM table_name_71 WHERE thursday = "fox sports tonight (ends 1 am next day)"
CREATE TABLE table_name_71 (tuesday VARCHAR, thursday VARCHAR)
What is shown on Tuesday when Thursday shows Fox Sports Tonight (ends 1 am next day)?
SELECT tuesday FROM table_name_59 WHERE wednesday = "fox sports tonight (ends 1 am next day)"
CREATE TABLE table_name_59 (tuesday VARCHAR, wednesday VARCHAR)
What is shown on Tuesday when Wednesday is Fox Sports Tonight (ends 1 am next day)?
SELECT capacity FROM table_name_37 WHERE class = "4c3h"
CREATE TABLE table_name_37 (capacity VARCHAR, class VARCHAR)
Which capacity has the class 4c3h?
SELECT navigator FROM table_name_3 WHERE driver = "james"
CREATE TABLE table_name_3 (navigator VARCHAR, driver VARCHAR)
What is the navigator for James?
SELECT total_time FROM table_name_44 WHERE margin = "04:02" AND driver = "coad"
CREATE TABLE table_name_44 (total_time VARCHAR, margin VARCHAR, driver VARCHAR)
How much time did Coad make when the margin was 04:02?
SELECT class FROM table_name_40 WHERE capacity < 3384 AND navigator = "ferguson"
CREATE TABLE table_name_40 (class VARCHAR, capacity VARCHAR, navigator VARCHAR)
What class has a capacity smaller than 3384 for Ferguson?
SELECT COUNT(place) FROM table_name_97 WHERE draw = 21 AND points > 36
CREATE TABLE table_name_97 (place VARCHAR, draw VARCHAR, points VARCHAR)
What is the total number of places for a song with a draw of 21 and more than 36 points?
SELECT MIN(game) FROM table_name_61 WHERE opponent = "phoenix" AND record = "29-17"
CREATE TABLE table_name_61 (game INTEGER, opponent VARCHAR, record VARCHAR)
What is the lowest numbered game against Phoenix with a record of 29-17?
SELECT soap_opera FROM table_name_4 WHERE duration = "18 years" AND character = "miley byrne"
CREATE TABLE table_name_4 (soap_opera VARCHAR, duration VARCHAR, character VARCHAR)
what is the soap opera when the duration is 18 years and the character is miley byrne?
SELECT years FROM table_name_17 WHERE duration = "13 years" AND character = "renee phelan"
CREATE TABLE table_name_17 (years VARCHAR, duration VARCHAR, character VARCHAR)
what is the years when the duration is 13 years and the character is renee phelan?
SELECT years FROM table_name_21 WHERE soap_opera = "glenroe" AND actor = "mick lally"
CREATE TABLE table_name_21 (years VARCHAR, soap_opera VARCHAR, actor VARCHAR)
what is the years when the soap opera is glenroe and the actor is mick lally?
SELECT actor FROM table_name_8 WHERE character = "dinny byrne"
CREATE TABLE table_name_8 (actor VARCHAR, character VARCHAR)
who is the actor when the character is dinny byrne?
SELECT soap_opera FROM table_name_11 WHERE actor = "dave duffy"
CREATE TABLE table_name_11 (soap_opera VARCHAR, actor VARCHAR)
what is the soap opera when the actor is dave duffy?
SELECT score FROM table_name_50 WHERE tie_no = "11"
CREATE TABLE table_name_50 (score VARCHAR, tie_no VARCHAR)
What is the score for the game with an 11 tie number?
SELECT date FROM table_name_76 WHERE away_team = "ipswich town"
CREATE TABLE table_name_76 (date VARCHAR, away_team VARCHAR)
What date was Ipswich Town the away team?
SELECT owner FROM table_name_29 WHERE format = "hot adult contemporary"
CREATE TABLE table_name_29 (owner VARCHAR, format VARCHAR)
Who is the owner with a Hot Adult Contemporary format?
SELECT call_sign FROM table_name_43 WHERE branding = "the q"
CREATE TABLE table_name_43 (call_sign VARCHAR, branding VARCHAR)
What's the call sign of The Q?
SELECT call_sign FROM table_name_60 WHERE branding = "jack fm"
CREATE TABLE table_name_60 (call_sign VARCHAR, branding VARCHAR)
What's the call sign for Jack FM?
SELECT AVG(year) FROM table_name_47 WHERE saar = "fk pirmasens" AND hessen = "wormatia worms"
CREATE TABLE table_name_47 (year INTEGER, saar VARCHAR, hessen VARCHAR)
What is the average year for a Saar of FK Pirmasens and Hessen of Wormatia Worms?
SELECT MIN(year) FROM table_name_96 WHERE main = "eintracht frankfurt" AND rhein = "waldhof mannheim" AND saar = "fk pirmasens" AND hessen = "wormatia worms"
CREATE TABLE table_name_96 (year INTEGER, hessen VARCHAR, saar VARCHAR, main VARCHAR, rhein VARCHAR)
What is the smallest year for a Main of Eintracht Frankfurt, Rhein of Waldhof Mannheim, Sarr of FK Pirmasens, and Hessen of Wormatia Worms?
SELECT year FROM table_name_3 WHERE main = "eintracht frankfurt" AND hessen = "fsv mainz 05"
CREATE TABLE table_name_3 (year VARCHAR, main VARCHAR, hessen VARCHAR)
Which year has a Main of Eintracht Frankfurt and Hessen of FSV Mainz 05?
SELECT hessen FROM table_name_23 WHERE saar = "fk pirmasens"
CREATE TABLE table_name_23 (hessen VARCHAR, saar VARCHAR)
Who was the Hessen the year that Saar was FK Pirmasens?
SELECT series FROM table_name_33 WHERE director = "jack king" AND title = "buddy the woodsman"
CREATE TABLE table_name_33 (series VARCHAR, director VARCHAR, title VARCHAR)
What's the series of Buddy The Woodsman by director Jack King?
SELECT director FROM table_name_12 WHERE series = "mm" AND production_num < 6494 AND release_date = "1934-09-15"
CREATE TABLE table_name_12 (director VARCHAR, release_date VARCHAR, series VARCHAR, production_num VARCHAR)
Who was the director of the movie having a release date of 1934-09-15, an MM Series and a production number less than 6494?
SELECT director FROM table_name_80 WHERE title = "buddy of the apes"
CREATE TABLE table_name_80 (director VARCHAR, title VARCHAR)
Who's the director of Buddy of the Apes?
SELECT title FROM table_name_77 WHERE production_num > 6209 AND series = "mm" AND director = "friz freleng" AND release_date = "1934-11-03"
CREATE TABLE table_name_77 (title VARCHAR, release_date VARCHAR, director VARCHAR, production_num VARCHAR, series VARCHAR)
What's the title of the film directed by Friz Freleng with an MM Series, production number greater than 6209 and a release date of 1934-11-03?
SELECT MIN(time) FROM table_name_85 WHERE athlete = "paulo villar" AND lane < 9
CREATE TABLE table_name_85 (time INTEGER, athlete VARCHAR, lane VARCHAR)
What is the lowest time for Paulo Villar in lane 9?
SELECT nationality FROM table_name_78 WHERE lane = 4
CREATE TABLE table_name_78 (nationality VARCHAR, lane VARCHAR)
What is the nationality of lane 4?
SELECT nationality FROM table_name_55 WHERE time = 13.21
CREATE TABLE table_name_55 (nationality VARCHAR, time VARCHAR)
What is the nationality with a 13.21 time?
SELECT increase_in_net_assets FROM table_name_16 WHERE total_expenses = "$5,617,236"
CREATE TABLE table_name_16 (increase_in_net_assets VARCHAR, total_expenses VARCHAR)
What increase in net assets also has $5,617,236 as the total expenses?
SELECT COUNT(gold) FROM table_name_79 WHERE silver = 1 AND nation = "puerto rico" AND total < 1
CREATE TABLE table_name_79 (gold VARCHAR, total VARCHAR, silver VARCHAR, nation VARCHAR)
How many Gold medals did Puerto Rico receive with 1 Silver and a Total of 1 or less?
SELECT MIN(total) FROM table_name_90 WHERE bronze < 7 AND silver = 1 AND rank > 9
CREATE TABLE table_name_90 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
What is the Total number of medals for the Nation with 7 or less Bronze medals and 1 Silver medal with a Rank of 9 or larger?
SELECT MIN(silver) FROM table_name_73 WHERE bronze > 10
CREATE TABLE table_name_73 (silver INTEGER, bronze INTEGER)
How many Silver medals did the Nation with 10 or more Bronze receive?
SELECT AVG(wins) FROM table_name_72 WHERE draws < 0
CREATE TABLE table_name_72 (wins INTEGER, draws INTEGER)
what is the average wins when draws is less than 0?
SELECT AVG(losses) FROM table_name_58 WHERE club = "warrnambool" AND wins < 12
CREATE TABLE table_name_58 (losses INTEGER, club VARCHAR, wins VARCHAR)
what is the average losses when the club is warrnambool and wins is less than 12?
SELECT MAX(losses) FROM table_name_75 WHERE club = "terang" AND draws < 0
CREATE TABLE table_name_75 (losses INTEGER, club VARCHAR, draws VARCHAR)
what is the most losses when the club is terang and draws is less than 0?
SELECT SUM(losses) FROM table_name_6 WHERE wins > 6 AND club = "camperdown" AND against > 1238
CREATE TABLE table_name_6 (losses INTEGER, against VARCHAR, wins VARCHAR, club VARCHAR)
What is the sum of losses when wins is more than 6, club is camperdown and against is more than 1238?
SELECT drew FROM table_name_52 WHERE round = "third place" AND season = "1999-2000"
CREATE TABLE table_name_52 (drew VARCHAR, round VARCHAR, season VARCHAR)
What is the drew for the 1999-2000 season when they were in third place?
SELECT competition FROM table_name_17 WHERE lost = "1" AND drew = "3" AND played = "9"
CREATE TABLE table_name_17 (competition VARCHAR, played VARCHAR, lost VARCHAR, drew VARCHAR)
What competition did they have 1 lost, 3 draws, and played 9 games?
SELECT drew FROM table_name_23 WHERE played = "9" AND lost = "3"
CREATE TABLE table_name_23 (drew VARCHAR, played VARCHAR, lost VARCHAR)
What is the number of draws when the played 9 and lost 3?
SELECT COUNT(cable_channel) FROM table_name_38 WHERE call_sign = "cbft-dt"
CREATE TABLE table_name_38 (cable_channel VARCHAR, call_sign VARCHAR)
How many cable channels have callsign CBFT-DT?
SELECT MIN(digital_psip) FROM table_name_81 WHERE call_sign = "cftu-dt" AND broadcast_channel > 29
CREATE TABLE table_name_81 (digital_psip INTEGER, call_sign VARCHAR, broadcast_channel VARCHAR)
What is the lowest Digital PSIP for channels over 29 with callsign CFTU-DT?
SELECT digital_psip FROM table_name_14 WHERE broadcast_channel > 15 AND call_sign = "cftu-dt"
CREATE TABLE table_name_14 (digital_psip VARCHAR, broadcast_channel VARCHAR, call_sign VARCHAR)
What is the Digital PSIP for channels over 15 with callsign CFTU-DT?
SELECT location FROM table_name_12 WHERE home_ground = "mong kok stadium"
CREATE TABLE table_name_12 (location VARCHAR, home_ground VARCHAR)
Where was the location of the Mong Kok Stadium?
SELECT club FROM table_name_95 WHERE home_ground = "n/a"
CREATE TABLE table_name_95 (club VARCHAR, home_ground VARCHAR)
Which club, had a home ground of n/a?
SELECT location FROM table_name_25 WHERE league_division = "first division" AND club = "sun pegasus"
CREATE TABLE table_name_25 (location VARCHAR, league_division VARCHAR, club VARCHAR)
What is the location for the first division, Sun Pegasus Club?
SELECT league_division FROM table_name_29 WHERE club = "sai kung"
CREATE TABLE table_name_29 (league_division VARCHAR, club VARCHAR)
What division is Sai Kung in?
SELECT league_division FROM table_name_6 WHERE club = "sun source"
CREATE TABLE table_name_6 (league_division VARCHAR, club VARCHAR)
What league is Sun Source in?
SELECT model FROM table_name_26 WHERE years = "2004-"
CREATE TABLE table_name_26 (model VARCHAR, years VARCHAR)
What was the model that had years 2004-?
SELECT torque AS @rpm FROM table_name_75 WHERE model = "sl 65 amg"
CREATE TABLE table_name_75 (torque VARCHAR, model VARCHAR)
What was the torque@rpm of the sl 65 amg?
SELECT model FROM table_name_67 WHERE years = "2004-"
CREATE TABLE table_name_67 (model VARCHAR, years VARCHAR)
What was the model that had years 2004-?
SELECT ihsaa_class AS Football FROM table_name_15 WHERE year_joined = 1968
CREATE TABLE table_name_15 (ihsaa_class VARCHAR, year_joined VARCHAR)
What is the IHSAA Class for football for the team joining in 1968?
SELECT ihsaa_class FROM table_name_3 WHERE school = "tipton"
CREATE TABLE table_name_3 (ihsaa_class VARCHAR, school VARCHAR)
What is the IHSAA class for Tipton?
SELECT AVG(rank) FROM table_name_54 WHERE time___sec__ = 11.14
CREATE TABLE table_name_54 (rank INTEGER, time___sec__ VARCHAR)
What is the rank for the person with time 11.14?
SELECT SUM(rank) FROM table_name_76 WHERE notes = "q, pb" AND time___sec__ = 11.15 AND lane > 7
CREATE TABLE table_name_76 (rank INTEGER, lane VARCHAR, notes VARCHAR, time___sec__ VARCHAR)
What is the rank when time is 11.15 and lane is bigger than 7 with notes Q, PB?
SELECT SUM(lane) FROM table_name_31 WHERE notes = "q, sb" AND time___sec__ < 11.22
CREATE TABLE table_name_31 (lane INTEGER, notes VARCHAR, time___sec__ VARCHAR)
What is the lane for notes Q, SB and time less than 11.22?
SELECT athlete FROM table_name_15 WHERE time___sec__ > 11.22 AND rank < 5
CREATE TABLE table_name_15 (athlete VARCHAR, time___sec__ VARCHAR, rank VARCHAR)
Which athlete is ranked less than 5 with time over 11.22?
SELECT COUNT(lane) FROM table_name_55 WHERE nationality = "australia" AND reaction < 0.138
CREATE TABLE table_name_55 (lane VARCHAR, nationality VARCHAR, reaction VARCHAR)
How many lanes does Australia have with a reaction smaller than 0.138?
SELECT name FROM table_name_80 WHERE reaction > 0.17400000000000002 AND lane > 6
CREATE TABLE table_name_80 (name VARCHAR, reaction VARCHAR, lane VARCHAR)
Who had a reaction larger than 0.17400000000000002 and a lane larger than 6?
SELECT in_service_for_nal FROM table_name_10 WHERE ship = "ms vistafjord"
CREATE TABLE table_name_10 (in_service_for_nal VARCHAR, ship VARCHAR)
The ship MS Vistafjord has what in service for NAL?
SELECT tonnage FROM table_name_90 WHERE built < 1973 AND ship = "ssbergensfjord"
CREATE TABLE table_name_90 (tonnage VARCHAR, built VARCHAR, ship VARCHAR)
The ship SSBergensfjord built before 1973 has what tonnage?
SELECT nationality FROM table_name_52 WHERE time = 50.92
CREATE TABLE table_name_52 (nationality VARCHAR, time VARCHAR)
Which nationality has a time of 50.92?
SELECT SUM(time) FROM table_name_82 WHERE lane < 5 AND nationality = "united states"
CREATE TABLE table_name_82 (time INTEGER, lane VARCHAR, nationality VARCHAR)
What is the time with fewer than 5 lanes for the United States?
SELECT att_cmp FROM table_name_21 WHERE gp_gs = "7-1"
CREATE TABLE table_name_21 (att_cmp VARCHAR, gp_gs VARCHAR)
Which Att-Cmp has a GP-GS of 7-1?
SELECT att_cmp FROM table_name_21 WHERE td_int = "7-8"
CREATE TABLE table_name_21 (att_cmp VARCHAR, td_int VARCHAR)
Which Att-Cmp has a TD-INT of 7-8?
SELECT td_int FROM table_name_87 WHERE effic > 111.4
CREATE TABLE table_name_87 (td_int VARCHAR, effic INTEGER)
Which TD-INT has an Effic larger than 111.4?
SELECT COUNT(losses) FROM table_name_94 WHERE wins < 6 AND draws < 0
CREATE TABLE table_name_94 (losses VARCHAR, wins VARCHAR, draws VARCHAR)
What is the total number of losses with less than 6 wins and less than 0 draws?
SELECT AVG(against) FROM table_name_74 WHERE losses < 10 AND draws > 0 AND wins > 7
CREATE TABLE table_name_74 (against INTEGER, wins VARCHAR, losses VARCHAR, draws VARCHAR)
What is the average number of against with less than 10 losses, more than 0 draws, and more than 7 wins?
SELECT COUNT(byes) FROM table_name_31 WHERE losses > 0 AND against = 1526
CREATE TABLE table_name_31 (byes VARCHAR, losses VARCHAR, against VARCHAR)
What is the total number of byes with more than 0 losses and 1526 against?
SELECT MIN(draws) FROM table_name_81 WHERE byes > 2
CREATE TABLE table_name_81 (draws INTEGER, byes INTEGER)
What is the lowest number of draws with more than 2 byes?
SELECT MIN(against) FROM table_name_33 WHERE wins < 16 AND wimmera_fl = "warrack eagles"
CREATE TABLE table_name_33 (against INTEGER, wins VARCHAR, wimmera_fl VARCHAR)
What is the lowest against of the wimmera fl warrack eagles, which have less than 16 wins?
SELECT COUNT(races_ridden) FROM table_name_94 WHERE nationality = "german" AND races_won < 10
CREATE TABLE table_name_94 (races_ridden VARCHAR, nationality VARCHAR, races_won VARCHAR)
How many races did the German racer that won less than 10 races ride?
SELECT AVG(win_average) FROM table_name_50 WHERE nationality = "german" AND name = "rudi altig" AND races_ridden > 79
CREATE TABLE table_name_50 (win_average INTEGER, races_ridden VARCHAR, nationality VARCHAR, name VARCHAR)
What is the average win as a percentage of German racer Rudi Altig, who has ridden in over 79 races?
SELECT MAX(top_5) FROM table_name_40 WHERE cuts_made > 39
CREATE TABLE table_name_40 (top_5 INTEGER, cuts_made INTEGER)
what is the highest top-5 when cuts made is more than 39?
SELECT MAX(events) FROM table_name_64 WHERE wins > 0 AND cuts_made > 14
CREATE TABLE table_name_64 (events INTEGER, wins VARCHAR, cuts_made VARCHAR)
what is the highest events when wins is more than 0 and cuts made is more than 14?
SELECT MAX(top_5) FROM table_name_97 WHERE wins > 1
CREATE TABLE table_name_97 (top_5 INTEGER, wins INTEGER)
what is the highest top-5 when wins is more than 1?
SELECT COUNT(top_5) FROM table_name_6 WHERE tournament = "masters tournament" AND top_10 < 2
CREATE TABLE table_name_6 (top_5 VARCHAR, tournament VARCHAR, top_10 VARCHAR)
How many times is the tournament the masters tournament and the top-10 is less than 2?
SELECT rank FROM table_name_40 WHERE rider = "noel patterson"
CREATE TABLE table_name_40 (rank VARCHAR, rider VARCHAR)
What ran has noel patterson as the rider?
SELECT time FROM table_name_15 WHERE rider = "jules croft"
CREATE TABLE table_name_15 (time VARCHAR, rider VARCHAR)
What time has jules croft as the rider?
SELECT team FROM table_name_79 WHERE rider = "adam barclay"
CREATE TABLE table_name_79 (team VARCHAR, rider VARCHAR)
What team has adam barclay as the rider?
SELECT round FROM table_name_26 WHERE h___a = "hurst"
CREATE TABLE table_name_26 (round VARCHAR, h___a VARCHAR)
What Round has h/a hurst
SELECT result_f___a FROM table_name_63 WHERE round = "round 1 replay"
CREATE TABLE table_name_63 (result_f___a VARCHAR, round VARCHAR)
what game ended f-a with a round of round 1 replay
SELECT h___a FROM table_name_34 WHERE round = "round 2"
CREATE TABLE table_name_34 (h___a VARCHAR, round VARCHAR)
what is the h/a round of round 2
SELECT role_episode FROM table_name_21 WHERE year > 2006 AND recipients_and_nominees = "ellen burstyn"
CREATE TABLE table_name_21 (role_episode VARCHAR, year VARCHAR, recipients_and_nominees VARCHAR)
What was the Role/Episode after 2006 with Ellen Burstyn as a recipient and nominee?
SELECT category FROM table_name_71 WHERE recipients_and_nominees = "outstanding main title design"
CREATE TABLE table_name_71 (category VARCHAR, recipients_and_nominees VARCHAR)
For which Category was Outstanding Main Title Design a Recipient and nominee?
SELECT category FROM table_name_60 WHERE year < 2009 AND role_episode = "libby goldstein and junie lowry-johnson"
CREATE TABLE table_name_60 (category VARCHAR, year VARCHAR, role_episode VARCHAR)
Which Category was from before 2009 with a Role/Episode of Libby Goldstein and Junie Lowry-Johnson?