question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
Who is the home team of the game against Essendon?
CREATE TABLE table_name_96 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_96 WHERE away_team = "essendon"
How many draws has a Club of real valladolid that was played less than 38?
CREATE TABLE table_name_35 (draws INTEGER, club VARCHAR, played VARCHAR)
SELECT MAX(draws) FROM table_name_35 WHERE club = "real valladolid" AND played < 38
what is the competing entities when the age group is 18 or younger, held every is one year and the sport is table tennis?
CREATE TABLE table_name_37 (competing_entities VARCHAR, sport VARCHAR, age_groups VARCHAR, held_every VARCHAR)
SELECT competing_entities FROM table_name_37 WHERE age_groups = "18 or younger" AND held_every = "one year" AND sport = "table tennis"
What is the score with the Lineup match reports?
CREATE TABLE table_name_5 (score VARCHAR, lineup VARCHAR)
SELECT score FROM table_name_5 WHERE lineup = "match reports"
In what grid did Richard Robarts make 36 laps?
CREATE TABLE table_name_48 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT SUM(grid) FROM table_name_48 WHERE driver = "richard robarts" AND laps < 36
What are the clubs involved with 16 clubs remaining?
CREATE TABLE table_name_63 (clubs_involved VARCHAR, clubs_remaining VARCHAR)
SELECT clubs_involved FROM table_name_63 WHERE clubs_remaining = 16
What's the record of the game with number 40?
CREATE TABLE table_23285761_7 (record VARCHAR, game VARCHAR)
SELECT record FROM table_23285761_7 WHERE game = 40
Name the max for prohibition.
CREATE TABLE table_120778_1 (for_prohibition INTEGER)
SELECT MAX(for_prohibition) FROM table_120778_1
What CFL Team was Barry Jamieson a part of?
CREATE TABLE table_26996293_1 (cfl_team VARCHAR, player VARCHAR)
SELECT cfl_team FROM table_26996293_1 WHERE player = "Barry Jamieson"
How many sets were in the 2011 Australian Open Tournament?
CREATE TABLE table_name_10 (tournament VARCHAR)
SELECT 2011 FROM table_name_10 WHERE tournament = "australian open"
Avg/G smaller than 225.5, and a GP-GS of 8–0 has what name?
CREATE TABLE table_name_2 (name VARCHAR, avg_g VARCHAR, gp_gs VARCHAR)
SELECT name FROM table_name_2 WHERE avg_g < 225.5 AND gp_gs = "8–0"
what is the current version with license gpl v3?
CREATE TABLE table_name_77 (current_version VARCHAR, license VARCHAR)
SELECT current_version FROM table_name_77 WHERE license = "gpl v3"
what's the season with regionalliga nord being vfb oldenburg
CREATE TABLE table_14242137_11 (season VARCHAR, regionalliga_nord VARCHAR)
SELECT season FROM table_14242137_11 WHERE regionalliga_nord = "VfB Oldenburg"
Show all member names and registered branch names sorted by register year.
CREATE TABLE member (name VARCHAR, member_id VARCHAR); CREATE TABLE membership_register_branch (branch_id VARCHAR, member_id VARCHAR, register_year VARCHAR); CREATE TABLE branch (name VARCHAR, branch_id VARCHAR)
SELECT T3.name, T2.name FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id JOIN member AS T3 ON T1.member_id = T3.member_id ORDER BY T1.register_year
Show the names of roller coasters and names of country they are in.
CREATE TABLE country (Name VARCHAR, Country_ID VARCHAR); CREATE TABLE roller_coaster (Name VARCHAR, Country_ID VARCHAR)
SELECT T2.Name, T1.Name FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID
What music did Mario & Karina perform?
CREATE TABLE table_name_30 (music VARCHAR, couple VARCHAR)
SELECT music FROM table_name_30 WHERE couple = "mario & karina"
What is the gold number when the total is less than 8, silver less than 1 and the rank is more than 7?
CREATE TABLE table_name_40 (gold VARCHAR, rank VARCHAR, total VARCHAR, silver VARCHAR)
SELECT COUNT(gold) FROM table_name_40 WHERE total < 8 AND silver < 1 AND rank > 7
Who directed episode 2 of the season?
CREATE TABLE table_27988559_1 (directed_by VARCHAR, no_in_season VARCHAR)
SELECT directed_by FROM table_27988559_1 WHERE no_in_season = 2
What was the score for the home team St Kilda?
CREATE TABLE table_name_60 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_60 WHERE home_team = "st kilda"
What is the score of the friendly competition with 1 goal?
CREATE TABLE table_name_25 (score VARCHAR, competition VARCHAR, goal VARCHAR)
SELECT score FROM table_name_25 WHERE competition = "friendly" AND goal = 1
Which Result has a Date of september 3, 2000?
CREATE TABLE table_name_81 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_81 WHERE date = "september 3, 2000"
How many barony's appear when Ballyvadona is the townland.
CREATE TABLE table_30120556_1 (barony VARCHAR, townland VARCHAR)
SELECT COUNT(barony) FROM table_30120556_1 WHERE townland = "Ballyvadona"
What was the record at the home of the Montreal Maroons
CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR)
SELECT record FROM table_name_59 WHERE home = "montreal maroons"
Who is the player from Arizona State?
CREATE TABLE table_name_40 (player VARCHAR, college VARCHAR)
SELECT player FROM table_name_40 WHERE college = "arizona state"
What Social Democratic has a Democratic and Social Centre of 10.0% 22 seats?
CREATE TABLE table_name_33 (social_democratic VARCHAR, democratic_and_social_centre VARCHAR)
SELECT social_democratic FROM table_name_33 WHERE democratic_and_social_centre = "10.0% 22 seats"
Tell me the constructor for david coulthard
CREATE TABLE table_name_10 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_10 WHERE driver = "david coulthard"
What plan has monthly prices of 300, 500, 750, 1000?
CREATE TABLE table_name_14 (plan_name VARCHAR, monthly_price_incl_vat__czk VARCHAR)
SELECT plan_name FROM table_name_14 WHERE monthly_price_incl_vat__czk = "300, 500, 750, 1000"
Which Lane has a Time larger than 47.83?
CREATE TABLE table_name_8 (lane INTEGER, time INTEGER)
SELECT AVG(lane) FROM table_name_8 WHERE time > 47.83
Tell me the date for format of cd/dvd
CREATE TABLE table_name_88 (date VARCHAR, format VARCHAR)
SELECT date FROM table_name_88 WHERE format = "cd/dvd"
Who had the high assist total when the team was 0-1?
CREATE TABLE table_27902171_4 (high_assists VARCHAR, record VARCHAR)
SELECT high_assists FROM table_27902171_4 WHERE record = "0-1"
What is the overall pick number for the player who was picked on round 8?
CREATE TABLE table_name_91 (overall INTEGER, round VARCHAR)
SELECT MIN(overall) FROM table_name_91 WHERE round = 8
What is the largest mass(kg)?
CREATE TABLE table_1558077_2 (mass__kg_ INTEGER)
SELECT MAX(mass__kg_) FROM table_1558077_2
Which Win/Lose Percentage has Champs larger than 0, and a Draw larger than 3?
CREATE TABLE table_name_92 (win_lose_percentage VARCHAR, champs VARCHAR, draw VARCHAR)
SELECT win_lose_percentage FROM table_name_92 WHERE champs > 0 AND draw > 3
Tell me the track that has the catalogue of apbo 0280
CREATE TABLE table_name_34 (track VARCHAR, catalogue VARCHAR)
SELECT track FROM table_name_34 WHERE catalogue = "apbo 0280"
Which city has the most addresses? List the city name, number of addresses, and city id.
CREATE TABLE address (city_id VARCHAR); CREATE TABLE city (city VARCHAR, city_id VARCHAR)
SELECT T2.city, COUNT(*), T1.city_id FROM address AS T1 JOIN city AS T2 ON T1.city_id = T2.city_id GROUP BY T1.city_id ORDER BY COUNT(*) DESC LIMIT 1
What are the names of representatives in descending order of votes?
CREATE TABLE representative (Name VARCHAR, Representative_ID VARCHAR); CREATE TABLE election (Representative_ID VARCHAR)
SELECT T2.Name FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID ORDER BY votes DESC
What position did the person from Clemson school fill?
CREATE TABLE table_name_48 (position VARCHAR, school VARCHAR)
SELECT position FROM table_name_48 WHERE school = "clemson"
Find the first names of professors who are not playing Canoeing or Kayaking.
CREATE TABLE faculty (lname VARCHAR, rank VARCHAR); CREATE TABLE activity (activity_name VARCHAR); CREATE TABLE Faculty_participates_in (facID VARCHAR, actid VARCHAR); CREATE TABLE Faculty (lname VARCHAR, facID VARCHAR)
SELECT lname FROM faculty WHERE rank = 'Professor' EXCEPT SELECT DISTINCT T1.lname FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID JOIN activity AS T3 ON T2.actid = T2.actid WHERE T3.activity_name = 'Canoeing' OR T3.activity_name = 'Kayaking'
What is Josh Hamilton's hometown?
CREATE TABLE table_11677100_5 (hometown VARCHAR, player VARCHAR)
SELECT hometown FROM table_11677100_5 WHERE player = "Josh Hamilton"
What is the home ground for the team whose home city is Trondheim with 27 seasons?
CREATE TABLE table_2522473_1 (home_ground VARCHAR, seasons VARCHAR, home_city VARCHAR)
SELECT home_ground FROM table_2522473_1 WHERE seasons = 27 AND home_city = "Trondheim"
Which IHSAA Class has a Location of brazil?
CREATE TABLE table_name_96 (ihsaa_class VARCHAR, location VARCHAR)
SELECT ihsaa_class FROM table_name_96 WHERE location = "brazil"
Who has a round less than 9 and a position of G?
CREATE TABLE table_name_65 (player VARCHAR, position VARCHAR, round VARCHAR)
SELECT player FROM table_name_65 WHERE position = "g" AND round < 9
What is the lowest Bronze with a Nation of egypt (egy) and with a Gold that is smaller than 2?
CREATE TABLE table_name_56 (bronze INTEGER, nation VARCHAR, gold VARCHAR)
SELECT MIN(bronze) FROM table_name_56 WHERE nation = "egypt (egy)" AND gold < 2
What is the title when 18.58 u.s. viewers (millions) watched?
CREATE TABLE table_18217741_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_18217741_1 WHERE us_viewers__millions_ = "18.58"
How many wrestlers were born in nara, and have a completed 'career and other notes' section?
CREATE TABLE table_1557974_1 (career_and_other_notes VARCHAR, birthplace VARCHAR)
SELECT COUNT(career_and_other_notes) FROM table_1557974_1 WHERE birthplace = "Nara"
To which party does Frank T. Bow belong?
CREATE TABLE table_1341865_37 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341865_37 WHERE incumbent = "Frank T. Bow"
With a Total of less than 29, what is Ian Ryan's most Matches?
CREATE TABLE table_name_31 (matches INTEGER, player VARCHAR, total VARCHAR)
SELECT MAX(matches) FROM table_name_31 WHERE player = "ian ryan" AND total < 29
Tell me the song with year before 2013 and music director of yuvan shankar raja and film of billa ii
CREATE TABLE table_name_23 (song VARCHAR, film VARCHAR, year VARCHAR, music_director VARCHAR)
SELECT song FROM table_name_23 WHERE year < 2013 AND music_director = "yuvan shankar raja" AND film = "billa ii"
Name the least year for european indoor championships result of 3rd
CREATE TABLE table_name_86 (year INTEGER, tournament VARCHAR, result VARCHAR)
SELECT MIN(year) FROM table_name_86 WHERE tournament = "european indoor championships" AND result = "3rd"
What position does pick 113 play?
CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR)
SELECT position FROM table_name_96 WHERE pick = 113
Which Sub-Parish (Sogn) was built after 1894 in the Parish (Prestegjeld) of jostedal parish?
CREATE TABLE table_name_92 (sub_parish__sogn_ VARCHAR, year_built VARCHAR, parish__prestegjeld_ VARCHAR)
SELECT sub_parish__sogn_ FROM table_name_92 WHERE year_built > 1894 AND parish__prestegjeld_ = "jostedal parish"
What did the home team score at MCG?
CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_39 WHERE venue = "mcg"
What is the result of the hypo-meeting before 2010?
CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT result FROM table_name_49 WHERE year < 2010 AND tournament = "hypo-meeting"
Who won the III Coppa Acerbo title?
CREATE TABLE table_name_67 (driver_s VARCHAR, race_title VARCHAR)
SELECT driver_s FROM table_name_67 WHERE race_title = "iii coppa acerbo"
What was Emma Bunton's score for the performance with a total score of 22?
CREATE TABLE table_28352386_1 (emma_bunton VARCHAR, total VARCHAR)
SELECT emma_bunton FROM table_28352386_1 WHERE total = "22"
What is the fate of the ship on 26 April 1942?
CREATE TABLE table_name_20 (fate VARCHAR, date VARCHAR)
SELECT fate FROM table_name_20 WHERE date = "26 april 1942"
What is the Frequency for Model Number c7 1.0?
CREATE TABLE table_name_54 (frequency VARCHAR, model_number VARCHAR)
SELECT frequency FROM table_name_54 WHERE model_number = "c7 1.0"
COunt the silver that has a Bronze smaller than 1?
CREATE TABLE table_name_19 (silver INTEGER, bronze INTEGER)
SELECT SUM(silver) FROM table_name_19 WHERE bronze < 1
What is Car number 98's lowest grid?
CREATE TABLE table_name_53 (grid INTEGER, car_no VARCHAR)
SELECT MIN(grid) FROM table_name_53 WHERE car_no = 98
I want the driver for grid of 9
CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR)
SELECT driver FROM table_name_59 WHERE grid = 9
What region has the catalog sir021-6?
CREATE TABLE table_name_93 (region VARCHAR, catalog VARCHAR)
SELECT region FROM table_name_93 WHERE catalog = "sir021-6"
On what ground was the game on 31 Jul 2007?
CREATE TABLE table_name_60 (ground VARCHAR, date VARCHAR)
SELECT ground FROM table_name_60 WHERE date = "31 jul 2007"
How many Gold medals were won by the Nation that had more than 12 Bronze medals and less than 124 Total medals?
CREATE TABLE table_name_56 (gold VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT COUNT(gold) FROM table_name_56 WHERE bronze > 12 AND total < 124
What is the reason for change when maryland 6th is the district?
CREATE TABLE table_225100_4 (reason_for_change VARCHAR, district VARCHAR)
SELECT reason_for_change FROM table_225100_4 WHERE district = "Maryland 6th"
Which December has Points of 48, and a Game larger than 33?
CREATE TABLE table_name_77 (december INTEGER, points VARCHAR, game VARCHAR)
SELECT SUM(december) FROM table_name_77 WHERE points = 48 AND game > 33
Name the horizontal 0 for 通 tong
CREATE TABLE table_25519358_1 (horizontal_0_a VARCHAR, name VARCHAR)
SELECT horizontal_0_a FROM table_25519358_1 WHERE name = "通 TONG"
Name Event of Medal of gold and a Name of duncan white?
CREATE TABLE table_name_18 (event VARCHAR, medal VARCHAR, name VARCHAR)
SELECT event FROM table_name_18 WHERE medal = "gold" AND name = "duncan white"
How many of the elected officials are on the Economic Matters committee?
CREATE TABLE table_14009909_1 (first_elected VARCHAR, committee VARCHAR)
SELECT COUNT(first_elected) FROM table_14009909_1 WHERE committee = "Economic Matters"
Tell me the competition for half marathon
CREATE TABLE table_name_70 (competition VARCHAR, notes VARCHAR)
SELECT competition FROM table_name_70 WHERE notes = "half marathon"
Pilot of g.v. alfyorov, and a Record description of altitude with kg (lb) payload, and a Type of mi-10 involved what date?
CREATE TABLE table_name_39 (date VARCHAR, type VARCHAR, pilot VARCHAR, record_description VARCHAR)
SELECT date FROM table_name_39 WHERE pilot = "g.v. alfyorov" AND record_description = "altitude with kg (lb) payload" AND type = "mi-10"
Which School/Club Team has a Player of jud buechler?
CREATE TABLE table_name_16 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_16 WHERE player = "jud buechler"
what is the reversal symmetry when non-dictatorship is yes, consistency & participation is no, and clone independence is yes?
CREATE TABLE table_name_1 (reversal_symmetry VARCHAR, clone_independence VARCHAR, non_dictatorship VARCHAR, consistency_ VARCHAR, _participation VARCHAR)
SELECT reversal_symmetry FROM table_name_1 WHERE non_dictatorship = "yes" AND consistency_ & _participation = "no" AND clone_independence = "yes"
whe, co2 is 206g/km, what is the torque?
CREATE TABLE table_24729_2 (torque VARCHAR, co2 VARCHAR)
SELECT torque FROM table_24729_2 WHERE co2 = "206g/km"
How many votes did Others receive where Kerry has 44.6%, and Bush more than 163,650 votes?
CREATE TABLE table_name_65 (others__number VARCHAR, kerry__percentage VARCHAR, bush__number VARCHAR)
SELECT COUNT(others__number) FROM table_name_65 WHERE kerry__percentage = "44.6%" AND bush__number > 163 OFFSET 650
What is the largest 6-car-sets for fiscal year 1968?
CREATE TABLE table_19255192_1 (fiscal_year VARCHAR)
SELECT MAX(6 AS _car_sets) FROM table_19255192_1 WHERE fiscal_year = 1968
How many % of 1 Rep Max(Last Set) has a Set 4 of 145lb x 5reps?
CREATE TABLE table_name_28 (_percentage_of_1_rep_max_last_set_ VARCHAR, set_4 VARCHAR)
SELECT _percentage_of_1_rep_max_last_set_ FROM table_name_28 WHERE set_4 = "145lb x 5reps"
Name the total number of pick with round less than 6 and overall of 102
CREATE TABLE table_name_46 (pick__number VARCHAR, round VARCHAR, overall VARCHAR)
SELECT COUNT(pick__number) FROM table_name_46 WHERE round < 6 AND overall = 102
Who are enrolled in 2 degree programs in one semester? List the first name, middle name and last name and the id.
CREATE TABLE Students (first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR, student_id VARCHAR); CREATE TABLE Student_Enrolment (student_id VARCHAR)
SELECT T1.first_name, T1.middle_name, T1.last_name, T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) = 2
Name the report for v grand prix de paris
CREATE TABLE table_name_11 (report VARCHAR, race_name VARCHAR)
SELECT report FROM table_name_11 WHERE race_name = "v grand prix de paris"
What round did the spartak moscow club play?
CREATE TABLE table_name_12 (round VARCHAR, club VARCHAR)
SELECT round FROM table_name_12 WHERE club = "spartak moscow"
If the language is Spanish, what is the Vinto Municipality minimum?
CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, language VARCHAR)
SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE language = "Spanish"
Which runner-up placed in a year prior to 2006 and whose Champion was Elon?
CREATE TABLE table_name_66 (runner_up VARCHAR, year VARCHAR, champion VARCHAR)
SELECT runner_up FROM table_name_66 WHERE year < 2006 AND champion = "elon"
WHAT IS THE SUM OF PICK FOR DAVID TERRELL, WITH A ROUND SMALLER THAN 7?
CREATE TABLE table_name_82 (pick INTEGER, name VARCHAR, round VARCHAR)
SELECT SUM(pick) FROM table_name_82 WHERE name = "david terrell" AND round < 7
Who took third-place when there were 4 total wins?
CREATE TABLE table_17632217_2 (third_place VARCHAR, total_wins VARCHAR)
SELECT third_place FROM table_17632217_2 WHERE total_wins = 4
What is the result of the week 1 game?
CREATE TABLE table_name_91 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_91 WHERE week = 1
Which Away team score has a Venue of princes park?
CREATE TABLE table_name_7 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_7 WHERE venue = "princes park"
What game was in 2005?
CREATE TABLE table_name_85 (game VARCHAR, year VARCHAR)
SELECT game FROM table_name_85 WHERE year = 2005
What party did robert p. letcher represent?
CREATE TABLE table_2668264_8 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_2668264_8 WHERE incumbent = "Robert P. Letcher"
What population (in thousands) is Lublin's seat?
CREATE TABLE table_11614581_3 (population VARCHAR, _in_thousands VARCHAR, __1905__ VARCHAR, seat VARCHAR)
SELECT population, _in_thousands, __1905__ FROM table_11614581_3 WHERE seat = "Lublin"
what is the venue when the score is 1 goal and the date is october 11, 1997?
CREATE TABLE table_name_96 (venue VARCHAR, score VARCHAR, date VARCHAR)
SELECT venue FROM table_name_96 WHERE score = "1 goal" AND date = "october 11, 1997"
Which To par has a Place of t1, and a Country of india?
CREATE TABLE table_name_85 (to_par VARCHAR, place VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_85 WHERE place = "t1" AND country = "india"
Which Position has a Round smaller than 5, and a Pick of 5?
CREATE TABLE table_name_75 (position VARCHAR, round VARCHAR, pick VARCHAR)
SELECT position FROM table_name_75 WHERE round < 5 AND pick = 5
Name the candidates for massachusetts 6
CREATE TABLE table_1341897_23 (candidates VARCHAR, district VARCHAR)
SELECT candidates FROM table_1341897_23 WHERE district = "Massachusetts 6"
What is the total number of regions where the average family size is 2.8?
CREATE TABLE table_16048129_5 (_percentage_of_total_deportees VARCHAR, average_family_size VARCHAR)
SELECT COUNT(_percentage_of_total_deportees) FROM table_16048129_5 WHERE average_family_size = "2.8"
Which manufacturer made a locomotive with a type of 4-6-4t?
CREATE TABLE table_name_40 (manufacturer VARCHAR, type VARCHAR)
SELECT manufacturer FROM table_name_40 WHERE type = "4-6-4t"
How many tackles for the player with over 0 fumble recovries and 0 forced fumbles?
CREATE TABLE table_name_96 (total VARCHAR, fumble_rec VARCHAR, fumble_force VARCHAR)
SELECT COUNT(total) FROM table_name_96 WHERE fumble_rec > 0 AND fumble_force = 0
What is the D 46 √ with a D 43 √ with r 3?
CREATE TABLE table_name_2 (d_46_√ VARCHAR, d_43_√ VARCHAR)
SELECT d_46_√ FROM table_name_2 WHERE d_43_√ = "r 3"
Which tournament had a 2010 finish of 4R?
CREATE TABLE table_name_42 (tournament VARCHAR)
SELECT tournament FROM table_name_42 WHERE 2010 = "4r"
What was the result during the week # of top 8?
CREATE TABLE table_name_26 (result VARCHAR, week__number VARCHAR)
SELECT result FROM table_name_26 WHERE week__number = "top 8"
Name the losing bonus of 96 points
CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, points VARCHAR)
SELECT losing_bonus FROM table_12792876_4 WHERE points = "96"