answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT name FROM table_name_10 WHERE average = 16.4
What is the Name with an Average that is 16.4?
CREATE TABLE table_name_10 (name VARCHAR, average VARCHAR)
SELECT MIN(loses) FROM table_name_54 WHERE minutes > 2776
What is the lowest number of losses a goalkeeper with more than 2776 minutes had?
CREATE TABLE table_name_54 (loses INTEGER, minutes INTEGER)
SELECT weekly_schedule FROM table_name_97 WHERE tv_network_s_ = "sky italia"
What is the weekly schedule for the network sky italia?
CREATE TABLE table_name_97 (weekly_schedule VARCHAR, tv_network_s_ VARCHAR)
SELECT name FROM table_name_96 WHERE decile = 5 AND area = "tauranga"
Which name has a Decile of 5, and an Area of tauranga?
CREATE TABLE table_name_96 (name VARCHAR, decile VARCHAR, area VARCHAR)
SELECT MAX(won) FROM table_15318779_1 WHERE team = "Palmeiras"
How many games did Palmeiras win?
CREATE TABLE table_15318779_1 (won INTEGER, team VARCHAR)
SELECT date FROM table_23248967_10 WHERE game = 78
What date was game 78 played on?
CREATE TABLE table_23248967_10 (date VARCHAR, game VARCHAR)
SELECT SUM(goals_against) FROM table_name_33 WHERE lost = 45 AND points > 68
What is the sum of Goals Against, when Lost is 45, and when Points is greater than 68?
CREATE TABLE table_name_33 (goals_against INTEGER, lost VARCHAR, points VARCHAR)
SELECT MAX(successes) FROM table_name_25 WHERE failures > 1 AND launches < 28
What is the greatest successes that have failures greater than 1 and launches less than 28?
CREATE TABLE table_name_25 (successes INTEGER, failures VARCHAR, launches VARCHAR)
SELECT player FROM table_22538587_3 WHERE l_apps = 17
Name the player for l apps for 17
CREATE TABLE table_22538587_3 (player VARCHAR, l_apps VARCHAR)
SELECT fourth_placed FROM table_17632217_2 WHERE third_place = "Beijing Guoan" AND winners = "Dalian Wanda" AND total_wins = 4
Who was placed fourth when third was Beijing Guoan and the winner was Dalian Wanda and wins total was 4?
CREATE TABLE table_17632217_2 (fourth_placed VARCHAR, total_wins VARCHAR, third_place VARCHAR, winners VARCHAR)
SELECT h___a FROM table_name_54 WHERE date = "20 february 2007"
What is the H/A for 20 february 2007?
CREATE TABLE table_name_54 (h___a VARCHAR, date VARCHAR)
SELECT original_artist FROM table_26250155_1 WHERE theme = "Group Performance"
Who was the original artist of the group performance theme?
CREATE TABLE table_26250155_1 (original_artist VARCHAR, theme VARCHAR)
SELECT opponent FROM table_name_64 WHERE result = "l 0-14"
Who was the opponent when the result was L 0-14?
CREATE TABLE table_name_64 (opponent VARCHAR, result VARCHAR)
SELECT home_team AS score FROM table_16388398_1 WHERE home_team = "Brisbane Lions"
What was the home team score when Brisbane lions was the home team?
CREATE TABLE table_16388398_1 (home_team VARCHAR)
SELECT pick FROM table_name_39 WHERE name = "ralph shoaf"
What was Ralph Shoaf's pick number?
CREATE TABLE table_name_39 (pick VARCHAR, name VARCHAR)
SELECT writer_s_ FROM table_name_5 WHERE film = "jehovah's witness"
Who wrote the film Jehovah's Witness?
CREATE TABLE table_name_5 (writer_s_ VARCHAR, film VARCHAR)
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Olin" AND t1.lname = "Shivers"
Find the papers which have "Olin Shivers" as an author.
CREATE TABLE authorship (authid VARCHAR, paperid VARCHAR); CREATE TABLE papers (title VARCHAR, paperid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR)
SELECT MIN(quay_cranes) FROM table_name_72 WHERE berths = 1 AND operator = "mtl" AND terminal = "terminal 5 (ct5)"
Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5)
CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator VARCHAR)
SELECT record FROM table_name_34 WHERE team = "usc" AND season < 1967
What was USC's record before the 1967 season?
CREATE TABLE table_name_34 (record VARCHAR, team VARCHAR, season VARCHAR)
SELECT COUNT(oct_2008) FROM table_23680576_2 WHERE aug_2008 = "30.8%"
How many polling percentages were there in October 2008 when is was 30.8% in Aug 2008?
CREATE TABLE table_23680576_2 (oct_2008 VARCHAR, aug_2008 VARCHAR)
SELECT T1.line_1 FROM Addresses AS T1 JOIN Students AS T2 ON T1.address_id = T2.address_id INTERSECT SELECT T1.line_1 FROM Addresses AS T1 JOIN Teachers AS T2 ON T1.address_id = T2.address_id
What are the line 1 of addresses shared by some students and some teachers?
CREATE TABLE Teachers (address_id VARCHAR); CREATE TABLE Students (address_id VARCHAR); CREATE TABLE Addresses (line_1 VARCHAR, address_id VARCHAR)
SELECT score FROM table_name_59 WHERE away_team = "watford"
What is the score when watford was the away team?
CREATE TABLE table_name_59 (score VARCHAR, away_team VARCHAR)
SELECT author FROM table_name_62 WHERE role = "narrator" AND year > 2009 AND release_air_date = "7 october 2010"
Role of narrator, and a Year larger than 2009, and a Release/Air Date of 7 october 2010 belongs to what author?
CREATE TABLE table_name_62 (author VARCHAR, release_air_date VARCHAR, role VARCHAR, year VARCHAR)
SELECT games FROM table_name_59 WHERE medal = "bronze" AND event = "men's 1500 m freestyle"
At which games did Tunisia win a bronze in the men's 1500 m freestyle?
CREATE TABLE table_name_59 (games VARCHAR, medal VARCHAR, event VARCHAR)
SELECT league FROM table_name_88 WHERE league_position = "8/13"
What league has a position of 8/13?
CREATE TABLE table_name_88 (league VARCHAR, league_position VARCHAR)
SELECT result_games FROM table_21436373_11 WHERE attendance = 52521
Name the result/games for 52521
CREATE TABLE table_21436373_11 (result_games VARCHAR, attendance VARCHAR)
SELECT airport FROM table_name_20 WHERE country = "saudi arabia" AND icao = "oejn"
Which airport is in Saudi Arabia when the ICAO is oejn?
CREATE TABLE table_name_20 (airport VARCHAR, country VARCHAR, icao VARCHAR)
SELECT high_score FROM table_name_64 WHERE strike_rate = "n/a" AND player = "matthew hoggard"
What was Matthew Hoggard's high score when he had a strike rate of n/a?
CREATE TABLE table_name_64 (high_score VARCHAR, strike_rate VARCHAR, player VARCHAR)
SELECT producer_s_ FROM table_name_43 WHERE songwriter_s_ = "sezen aksu"
Who is sezen aksu's producer?
CREATE TABLE table_name_43 (producer_s_ VARCHAR, songwriter_s_ VARCHAR)
SELECT internet_explorer FROM table_name_39 WHERE firefox = "27.85%"
What percentage of browsers were using Internet Explorer during the period in which 27.85% were using Firefox?
CREATE TABLE table_name_39 (internet_explorer VARCHAR, firefox VARCHAR)
SELECT date_of_election FROM table_1329532_2 WHERE appointed_successor = "H. Brent Coles"
What was the election date for H. Brent Coles?
CREATE TABLE table_1329532_2 (date_of_election VARCHAR, appointed_successor VARCHAR)
SELECT AVG(points) FROM table_name_42 WHERE rank < 12 AND name = "david santee"
What is the average points value for a rank less than 12 for David Santee?
CREATE TABLE table_name_42 (points INTEGER, rank VARCHAR, name VARCHAR)
SELECT signed FROM table_name_50 WHERE school = "university of southern california"
Was the University of Southern California Signed?
CREATE TABLE table_name_50 (signed VARCHAR, school VARCHAR)
SELECT ncbi_accession_number__mrna_protein_ FROM table_16849531_2 WHERE species = "Homo sapiens"
What is the NCBI Accession Number of the Homo Sapiens species?
CREATE TABLE table_16849531_2 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR)
SELECT location_attendance FROM table_name_24 WHERE game > 35 AND date = "january 30"
What is the loaction attendance that has a game greater than 35, with January 30 as the date?
CREATE TABLE table_name_24 (location_attendance VARCHAR, game VARCHAR, date VARCHAR)
SELECT median_household_income FROM table_name_56 WHERE median_family_income = "$46,616"
What is the Median household income associated with a median family income of $46,616?
CREATE TABLE table_name_56 (median_household_income VARCHAR, median_family_income VARCHAR)
SELECT country FROM table_name_25 WHERE score < 69 AND player = "sandy lyle"
What Country is player Sandy Lyle from when she scored less than 69?
CREATE TABLE table_name_25 (country VARCHAR, score VARCHAR, player VARCHAR)
SELECT AVG(rank) FROM table_name_67 WHERE date = "february 11, 2012" AND attendance < 18 OFFSET 735
What's the rank for February 11, 2012 with less than 18,735 in attendance?
CREATE TABLE table_name_67 (rank INTEGER, date VARCHAR, attendance VARCHAR)
SELECT number_range FROM table_name_88 WHERE class = "t 3"
What is the number range for the T 3 class?
CREATE TABLE table_name_88 (number_range VARCHAR, class VARCHAR)
SELECT song FROM table_name_42 WHERE draw < 7 AND artist = "martin & johannes"
Name the song for draw less than 7 and artists of martin & johannes
CREATE TABLE table_name_42 (song VARCHAR, draw VARCHAR, artist VARCHAR)
SELECT COUNT(year) FROM table_22834834_12 WHERE earnings__$_ = 2254598
How many years had a total earnings amount of 2254598?
CREATE TABLE table_22834834_12 (year VARCHAR, earnings__$_ VARCHAR)
SELECT main_developer FROM table_12887260_1 WHERE first_release = 1991 AND console = "Mega Drive/Genesis"
Which main developer made their first release in 1991 and created the Mega Drive/Genesis console?
CREATE TABLE table_12887260_1 (main_developer VARCHAR, first_release VARCHAR, console VARCHAR)
SELECT T2.Name, T3.Date FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID ORDER BY T3.Attendance DESC
Show the names of members and the dates of performances they attended in descending order of attendance of the performances.
CREATE TABLE performance (Date VARCHAR, Performance_ID VARCHAR, Attendance VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)
SELECT directed_by FROM table_16617011_1 WHERE us_viewers__millions_ = "15.15"
Name the directed by for 15.15 viewers
CREATE TABLE table_16617011_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT MIN(year) FROM table_name_59 WHERE chassis = "lola t93/00" AND start < 14
What is the lowest year that has lola t93/00 as the chassis with a start leas than 14?
CREATE TABLE table_name_59 (year INTEGER, chassis VARCHAR, start VARCHAR)
SELECT AVG(appearances) FROM table_name_30 WHERE season_s_ = "2009" AND winning_percentage < 0
In 2009, what Appearances had a Winning Percentage of less than 0?
CREATE TABLE table_name_30 (appearances INTEGER, season_s_ VARCHAR, winning_percentage VARCHAR)
SELECT days_held FROM table_name_1 WHERE reign > 3 AND defenses < 1
What is the days held the champion with a reign larger than 3 and less than 1 defense has?
CREATE TABLE table_name_1 (days_held VARCHAR, reign VARCHAR, defenses VARCHAR)
SELECT tournament FROM table_name_38 WHERE 1988 = "a" AND 1999 = "2r"
What tournament was an A 1988, and a 2R 1999?
CREATE TABLE table_name_38 (tournament VARCHAR)
SELECT to_par FROM table_name_5 WHERE place = "t8" AND country = "argentina"
What is the to par of the player from Argentina with a t8 place?
CREATE TABLE table_name_5 (to_par VARCHAR, place VARCHAR, country VARCHAR)
SELECT club FROM table_name_61 WHERE sport = "soccer" AND league = "nwsl"
Which club plays soccer in the nwsl?
CREATE TABLE table_name_61 (club VARCHAR, sport VARCHAR, league VARCHAR)
SELECT qual_2 FROM table_name_29 WHERE qual_1 = "1:02.813"
What was the second qualification time with a first qualification time of 1:02.813?
CREATE TABLE table_name_29 (qual_2 VARCHAR, qual_1 VARCHAR)
SELECT AVG(time) FROM table_name_29 WHERE rank = 61
What is the average time in a rank of 61?
CREATE TABLE table_name_29 (time INTEGER, rank VARCHAR)
SELECT date FROM table_name_81 WHERE tournament = "gte north classic"
On what date was the gte north classic tournament?
CREATE TABLE table_name_81 (date VARCHAR, tournament VARCHAR)
SELECT party FROM table_name_8 WHERE first_elected = 1990
From which party is the incumbent who was first elected to office in 1990?
CREATE TABLE table_name_8 (party VARCHAR, first_elected VARCHAR)
SELECT MIN(Ends) AS lost FROM table_16922657_2 WHERE country = Norway
What is Norway's least ends lost?
CREATE TABLE table_16922657_2 (Ends INTEGER, country VARCHAR, Norway VARCHAR)
SELECT AVG(2008) FROM table_name_74 WHERE airport = "julius nyerere international airport"
Which 2008 has an Airport of julius nyerere international airport?
CREATE TABLE table_name_74 (airport VARCHAR)
SELECT mascot FROM table_2439728_1 WHERE school = "St. Paul's school"
what is the mascot of st. paul's school?
CREATE TABLE table_2439728_1 (mascot VARCHAR, school VARCHAR)
SELECT MAX(geohash_length) FROM table_name_99 WHERE lat_error = "±0.00068" AND lat_bits > 17
What is the highest geohash length when the lat error is ±0.00068, and the lat bits larger than 17?
CREATE TABLE table_name_99 (geohash_length INTEGER, lat_error VARCHAR, lat_bits VARCHAR)
SELECT home_team AS score FROM table_name_81 WHERE crowd > 24 OFFSET 637
What was the home team's score at the game attended by more than 24,637?
CREATE TABLE table_name_81 (home_team VARCHAR, crowd INTEGER)
SELECT position FROM table_name_75 WHERE years_with_spurs = "2009-2012"
WHAT POSITION HAD SPURS IN 2009-2012?
CREATE TABLE table_name_75 (position VARCHAR, years_with_spurs VARCHAR)
SELECT winning_score FROM table_name_35 WHERE tournament = "alfred dunhill links championship"
What was the winning score in the Alfred Dunhill links championship?
CREATE TABLE table_name_35 (winning_score VARCHAR, tournament VARCHAR)
SELECT Player_name FROM player WHERE NOT Player_ID IN (SELECT Player_ID FROM player_coach)
List the names of players that do not have coaches.
CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR); CREATE TABLE player_coach (Player_name VARCHAR, Player_ID VARCHAR)
SELECT COUNT(metropolitan_borough_)[c_] FROM table_15366849_1 WHERE station = "Dorridge"
How many metropolitan boroughs have dorridge as a station?
CREATE TABLE table_15366849_1 (c_ VARCHAR, metropolitan_borough_ VARCHAR, station VARCHAR)
SELECT place FROM table_name_10 WHERE player = "horton smith"
Which place has horton smith as the player?
CREATE TABLE table_name_10 (place VARCHAR, player VARCHAR)
SELECT score FROM table_name_67 WHERE record = "3-0"
What is the score of the game with a 3-0 record?
CREATE TABLE table_name_67 (score VARCHAR, record VARCHAR)
SELECT gpu_frequency FROM table_name_27 WHERE release_date = "june 2013" AND sspec_number = "sr17l(c0)"
What is the GPU frequency for the processor released in June 2013, with a sSpec number of sr17l(c0)?
CREATE TABLE table_name_27 (gpu_frequency VARCHAR, release_date VARCHAR, sspec_number VARCHAR)
SELECT occupied_territory FROM table_10335_1 WHERE estimated_deaths = "600,000"
what's the occupied territory with estimated deaths of 600,000
CREATE TABLE table_10335_1 (occupied_territory VARCHAR, estimated_deaths VARCHAR)
SELECT MIN(points) FROM table_name_78 WHERE entrant = "stp march engineering"
Which Entrant of stp march engineering scored the lowest points?
CREATE TABLE table_name_78 (points INTEGER, entrant VARCHAR)
SELECT city_of_license FROM table_name_86 WHERE class = "a" AND identifier = "cbec-fm"
What city of license has A as a class, and cbec-fm as the identifier?
CREATE TABLE table_name_86 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR)
SELECT COUNT(winning_driver) FROM table_10707176_2 WHERE rnd = "5"
How many winning drivers were the for the rnd equalling 5?
CREATE TABLE table_10707176_2 (winning_driver VARCHAR, rnd VARCHAR)
SELECT MIN(national_rank) FROM table_21926985_2 WHERE company_name = "Windstream"
What is the national rank of Windstream?
CREATE TABLE table_21926985_2 (national_rank INTEGER, company_name VARCHAR)
SELECT away_team AS score FROM table_name_18 WHERE away_team = "geelong"
What is the score of the Geelong away team?
CREATE TABLE table_name_18 (away_team VARCHAR)
SELECT College FROM match_season GROUP BY College HAVING COUNT(*) >= 2 ORDER BY College DESC
Show the name of colleges that have at least two players in descending alphabetical order.
CREATE TABLE match_season (College VARCHAR)
SELECT colonized FROM table_name_56 WHERE school = "shippensburg university"
When was shippensburg university Colonized?
CREATE TABLE table_name_56 (colonized VARCHAR, school VARCHAR)
SELECT COUNT(top_25) FROM table_name_45 WHERE wins < 0
What is the total number of top-25s for events with 0 wins?
CREATE TABLE table_name_45 (top_25 VARCHAR, wins INTEGER)
SELECT pick FROM table_name_74 WHERE position = "centre" AND nationality = "canada"
Tell me the pick for canada centre
CREATE TABLE table_name_74 (pick VARCHAR, position VARCHAR, nationality VARCHAR)
SELECT AVG(area__km_2__) FROM table_name_14 WHERE density__inhabitants_km_2__ < 206.2 AND altitude__mslm_ < 85
What is the average area of the city that has a density less than than 206.2 and an altitude of less than 85?
CREATE TABLE table_name_14 (area__km_2__ INTEGER, density__inhabitants_km_2__ VARCHAR, altitude__mslm_ VARCHAR)
SELECT COUNT(enrollment) FROM table_name_34 WHERE founded = 1891 AND team_nickname = "coyotes"
What is the Enrollment for the Coyotes Founded in 1891?
CREATE TABLE table_name_34 (enrollment VARCHAR, founded VARCHAR, team_nickname VARCHAR)
SELECT COUNT(oricon_peak) FROM table_name_72 WHERE label = "atlantic" AND title = "subhuman race" AND date_of_release > 1995
WHAT IS THE ORICON PEAK NUMBER WITH AN ATLANTIC LABEL, SUBHUMAN RACE, LATER THAN 1995?
CREATE TABLE table_name_72 (oricon_peak VARCHAR, date_of_release VARCHAR, label VARCHAR, title VARCHAR)
SELECT COUNT(tonnage) FROM table_name_4 WHERE date = "25 june 1943"
What is the total number of Tonnage, when Date is "25 June 1943"?
CREATE TABLE table_name_4 (tonnage VARCHAR, date VARCHAR)
SELECT directed_by FROM table_25277296_2 WHERE no_in_season = 11
Who was the director of episode 11 based on season?
CREATE TABLE table_25277296_2 (directed_by VARCHAR, no_in_season VARCHAR)
SELECT finish FROM table_name_20 WHERE total = 287
Name the Finish which has a Total of 287?
CREATE TABLE table_name_20 (finish VARCHAR, total VARCHAR)
SELECT 2000 FROM table_name_35 WHERE 1999 = "toyota 1sz-fe 1.0l yaris" AND category = "sub 1 litre"
What car was awarded sub 1 litre in 2000 (won by toyota 1sz-fe 1.0l yaris in 1999)?
CREATE TABLE table_name_35 (category VARCHAR)
SELECT COUNT(stage) FROM table_17672470_19 WHERE winner = "Robbie McEwen"
How many stages were won by Robbie McEwen?
CREATE TABLE table_17672470_19 (stage VARCHAR, winner VARCHAR)
SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE export_volume_of_goods_and_services__percent_change_ = "-4.2"
What is the current account balance for an export volume of goods and service value of -4.2?
CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, export_volume_of_goods_and_services__percent_change_ VARCHAR)
SELECT COUNT(silver) FROM table_name_63 WHERE nation = "france" AND rank > 14
What is the total number of Silvers held by France when their rank was over 14?
CREATE TABLE table_name_63 (silver VARCHAR, nation VARCHAR, rank VARCHAR)
SELECT LOCATION FROM cinema WHERE openning_year = 2010 INTERSECT SELECT LOCATION FROM cinema WHERE openning_year = 2011
Show all the locations where some cinemas were opened in both year 2010 and year 2011.
CREATE TABLE cinema (LOCATION VARCHAR, openning_year VARCHAR)
SELECT venue FROM table_name_16 WHERE date = "2003"
What was the Venue in 2003?
CREATE TABLE table_name_16 (venue VARCHAR, date VARCHAR)
SELECT total FROM table_name_70 WHERE rank_points = "15" AND event = "wc beijing"
What is Total, when Rank Points is "15", and when Event is "WC Beijing"?
CREATE TABLE table_name_70 (total VARCHAR, rank_points VARCHAR, event VARCHAR)
SELECT COUNT(mlb_team) FROM table_18373863_2 WHERE fcsl_team = "Winter Pines"
When winter pines is the fcsl team how many mlb teams are there?
CREATE TABLE table_18373863_2 (mlb_team VARCHAR, fcsl_team VARCHAR)
SELECT class FROM table_1745843_7 WHERE part_4 = "gelopen"
In what class does the verb with part 4 gelopen belong to?
CREATE TABLE table_1745843_7 (class VARCHAR, part_4 VARCHAR)
SELECT MAX(attendance) FROM table_name_40 WHERE venue = "h" AND result = "d" AND opponents = "liverpool"
What is the largest number in attendance at H venue opposing Liverpool with a result of D?
CREATE TABLE table_name_40 (attendance INTEGER, opponents VARCHAR, venue VARCHAR, result VARCHAR)
SELECT after_1_year FROM table_name_40 WHERE after_3_years = "80%"
Which After 1 year has an After 3 years of 80%?
CREATE TABLE table_name_40 (after_1_year VARCHAR, after_3_years VARCHAR)
SELECT venue FROM table_name_56 WHERE away_team = "hawthorn"
Hawthorn played as an Away team in which venue?
CREATE TABLE table_name_56 (venue VARCHAR, away_team VARCHAR)
SELECT city FROM table_name_1 WHERE host = "university of texas"
Which city is the host of the University of Texas?
CREATE TABLE table_name_1 (city VARCHAR, host VARCHAR)
SELECT COUNT(western_title) FROM table_1616608_2 WHERE chinese_title = "摸摸耀西-云中漫步"
How many games share their western title with the Chinese title of 摸摸耀西-云中漫步 ?
CREATE TABLE table_1616608_2 (western_title VARCHAR, chinese_title VARCHAR)
SELECT second_leg FROM table_name_35 WHERE phase = "group stage" AND round = "matchday 5"
What was the second leg score from the group stage on matchday 5?
CREATE TABLE table_name_35 (second_leg VARCHAR, phase VARCHAR, round VARCHAR)
SELECT loss FROM table_name_62 WHERE date = "april 16"
What was the score of the game for April 16?
CREATE TABLE table_name_62 (loss VARCHAR, date VARCHAR)
SELECT average FROM table_27496841_3 WHERE rank_by_average = 3
Name the average for rank of 3
CREATE TABLE table_27496841_3 (average VARCHAR, rank_by_average VARCHAR)
SELECT high_assists FROM table_name_21 WHERE date = "november 24"
WHAT IS THE HIGH ASSISTS ON NOVEMBER 24?
CREATE TABLE table_name_21 (high_assists VARCHAR, date VARCHAR)