question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What point had team Lotus whit the lotus 33 chassis in 1964?
CREATE TABLE table_name_66 (points VARCHAR, year VARCHAR, chassis VARCHAR, entrant VARCHAR)
SELECT points FROM table_name_66 WHERE chassis = "lotus 33" AND entrant = "team lotus" AND year = 1964
Name the average Wins which has a Top 10 smaller than 0?
CREATE TABLE table_name_5 (wins INTEGER, top_10 INTEGER)
SELECT AVG(wins) FROM table_name_5 WHERE top_10 < 0
What is the Team that has a Races of 4, and a Points of 0?
CREATE TABLE table_name_10 (team VARCHAR, races VARCHAR, points VARCHAR)
SELECT team FROM table_name_10 WHERE races = "4" AND points = "0"
Name the save for braves for may 15
CREATE TABLE table_name_86 (save VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT save FROM table_name_86 WHERE opponent = "braves" AND date = "may 15"
What was the result of the game played on September 16, 1984?
CREATE TABLE table_13258851_2 (result VARCHAR, date VARCHAR)
SELECT result FROM table_13258851_2 WHERE date = "September 16, 1984"
Which Railway has a Location of shildon, and an ObjectNumber of 1978-7006?
CREATE TABLE table_name_52 (railway VARCHAR, location VARCHAR, objectnumber VARCHAR)
SELECT railway FROM table_name_52 WHERE location = "shildon" AND objectnumber = "1978-7006"
Which of the Worst dancer(s) has the Lowest score of 14?
CREATE TABLE table_name_43 (worst_dancer_s_ VARCHAR, lowest_score VARCHAR)
SELECT worst_dancer_s_ FROM table_name_43 WHERE lowest_score = 14
What is the pick number for the player(s) drafted in round 8?
CREATE TABLE table_name_31 (pick__number VARCHAR, round VARCHAR)
SELECT pick__number FROM table_name_31 WHERE round = "round 8"
What title did Mentuhotep IV have?
CREATE TABLE table_name_11 (title VARCHAR, name VARCHAR)
SELECT title FROM table_name_11 WHERE name = "mentuhotep iv"
Which athlete, has an 18.55 result
CREATE TABLE table_name_43 (athlete VARCHAR, result VARCHAR)
SELECT athlete FROM table_name_43 WHERE result = 18.55
What is the average share for episodes with over 7.82 viewers, ranks of 3 and a weekly rank of 54?
CREATE TABLE table_name_56 (share INTEGER, rank__week_ VARCHAR, viewers__millions_ VARCHAR, rank__timeslot_ VARCHAR)
SELECT AVG(share) FROM table_name_56 WHERE viewers__millions_ > 7.82 AND rank__timeslot_ = "3" AND rank__week_ = "54"
What college did the player come from whose position is DL?
CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR)
SELECT college FROM table_25085059_3 WHERE position = "DL"
What is the lowest weekly rank with an air date of november 26, 2007?
CREATE TABLE table_11178271_1 (weekly_rank INTEGER, air_date VARCHAR)
SELECT MIN(weekly_rank) FROM table_11178271_1 WHERE air_date = "November 26, 2007"
Which player has a total of 8 (24)?
CREATE TABLE table_name_8 (name VARCHAR, total VARCHAR)
SELECT name FROM table_name_8 WHERE total = "8 (24)"
What is the length of the highway with remarks that it was replaced by bsi-35?
CREATE TABLE table_name_77 (length VARCHAR, remarks VARCHAR)
SELECT length FROM table_name_77 WHERE remarks = "replaced by bsi-35"
What is the line that has lucania as the ship and 1894 as the date?
CREATE TABLE table_name_8 (line VARCHAR, ship VARCHAR, year VARCHAR)
SELECT line FROM table_name_8 WHERE ship = "lucania" AND year = "1894"
What was the scoring rank for Angela Stanford in 2009?
CREATE TABLE table_14836185_3 (scoring_rank VARCHAR, year VARCHAR)
SELECT scoring_rank FROM table_14836185_3 WHERE year = 2009
With chem-s as the dative, what is the ergative?
CREATE TABLE table_name_85 (ergative VARCHAR, dative VARCHAR)
SELECT ergative FROM table_name_85 WHERE dative = "chem-s"
Name the season number for herr ostropolyer, pastry chef
CREATE TABLE table_19852975_3 (season__number INTEGER, arties_disguises VARCHAR)
SELECT MIN(season__number) FROM table_19852975_3 WHERE arties_disguises = "Herr Ostropolyer, pastry chef"
How much Overall has a Pick # larger than 9, and a Round larger than 5?
CREATE TABLE table_name_53 (overall VARCHAR, pick__number VARCHAR, round VARCHAR)
SELECT COUNT(overall) FROM table_name_53 WHERE pick__number > 9 AND round > 5
What was the total number of weeks on peak for the Ireland Albums Top 75 chart?
CREATE TABLE table_1160304_2 (weeks_on_peak VARCHAR, chart VARCHAR)
SELECT COUNT(weeks_on_peak) FROM table_1160304_2 WHERE chart = "Ireland Albums Top 75"
Which city has most number of arriving flights?
CREATE TABLE FLIGHTS (DestAirport VARCHAR); CREATE TABLE AIRPORTS (City VARCHAR, AirportCode VARCHAR)
SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport GROUP BY T1.City ORDER BY COUNT(*) DESC LIMIT 1
When Peter Sagan won the youth classification and Thomas Rabou won the most corageous, who won the sprint classification?
CREATE TABLE table_25055040_22 (sprint_classification VARCHAR, youth_classification VARCHAR, most_courageous VARCHAR)
SELECT sprint_classification FROM table_25055040_22 WHERE youth_classification = "Peter Sagan" AND most_courageous = "Thomas Rabou"
What competition had a Rank-Qualifying of 1st and a ball apparatus?
CREATE TABLE table_name_94 (competition_description VARCHAR, rank_qualifying VARCHAR, apparatus VARCHAR)
SELECT competition_description FROM table_name_94 WHERE rank_qualifying = "1st" AND apparatus = "ball"
Find the number of trains starting from each origin.
CREATE TABLE train (origin VARCHAR)
SELECT origin, COUNT(*) FROM train GROUP BY origin
If the poverty rate is 12.9%, what is the market income per capita?
CREATE TABLE table_22815568_6 (market_income_per_capita VARCHAR, poverty_rate VARCHAR)
SELECT market_income_per_capita FROM table_22815568_6 WHERE poverty_rate = "12.9%"
What date was the game where the visiting team was philadelphia?
CREATE TABLE table_name_10 (date VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_10 WHERE visitor = "philadelphia"
What was the position that the nominated work La Quinta Esencia, which also won an award for best CD coverbox, won?
CREATE TABLE table_name_18 (position VARCHAR, nominated_work VARCHAR, award VARCHAR)
SELECT position FROM table_name_18 WHERE nominated_work = "la quinta esencia" AND award = "best cd coverbox"
What To par has a Country of united states, and a Score of 67-66-78-77=288?
CREATE TABLE table_name_52 (to_par VARCHAR, country VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_52 WHERE country = "united states" AND score = 67 - 66 - 78 - 77 = 288
what type of organization is sigma phi omega?
CREATE TABLE table_2538117_2 (type VARCHAR, organization VARCHAR)
SELECT type FROM table_2538117_2 WHERE organization = "Sigma Phi Omega"
What Elimination number is listed againt Eliminated by Sonjay Dutt?
CREATE TABLE table_name_87 (elimination VARCHAR, eliminated_by VARCHAR)
SELECT elimination FROM table_name_87 WHERE eliminated_by = "sonjay dutt"
What is the average that has 441 as wicket?
CREATE TABLE table_name_31 (average VARCHAR, s_wicket VARCHAR)
SELECT average FROM table_name_31 WHERE s_wicket = "441"
Which competition has a Date of 2007-08-22?
CREATE TABLE table_name_55 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_55 WHERE date = "2007-08-22"
what's the total number of position with driver  robby gordon
CREATE TABLE table_10160447_1 (position VARCHAR, driver VARCHAR)
SELECT COUNT(position) FROM table_10160447_1 WHERE driver = "Robby Gordon"
If the Home team is carlton, what's the lowest Crowd found?
CREATE TABLE table_name_13 (crowd INTEGER, home_team VARCHAR)
SELECT MIN(crowd) FROM table_name_13 WHERE home_team = "carlton"
Who is the coach with a w-l% greater than 0.516, a first yr before 1925, a yr plyf greater than 2, and a last yr in 1967?
CREATE TABLE table_name_51 (coach VARCHAR, last_yr VARCHAR, yr_plyf VARCHAR, w_l_percentage VARCHAR, first_yr VARCHAR)
SELECT coach FROM table_name_51 WHERE w_l_percentage > 0.516 AND first_yr < 1925 AND yr_plyf > 2 AND last_yr = 1967
Name the population for sørvágur
CREATE TABLE table_16278673_1 (population VARCHAR, municipality VARCHAR)
SELECT population FROM table_16278673_1 WHERE municipality = "Sørvágur"
Who was the visiting team on December 17?
CREATE TABLE table_name_90 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_90 WHERE date = "december 17"
WHAT IS THE AVERAGE NANGUN WITH A RANK LARGER THAN 2, TOTAL OF 17.85?
CREATE TABLE table_name_80 (nangun INTEGER, rank VARCHAR, total VARCHAR)
SELECT AVG(nangun) FROM table_name_80 WHERE rank > 2 AND total = 17.85
What term end had minister Danny Ayalon?
CREATE TABLE table_name_40 (term_end VARCHAR, minister VARCHAR)
SELECT term_end FROM table_name_40 WHERE minister = "danny ayalon"
What amount had all played that lost were 8?
CREATE TABLE table_13564637_3 (played VARCHAR, lost VARCHAR)
SELECT played FROM table_13564637_3 WHERE lost = "8"
List all female students age is older than 18 who is not majoring in 600. List students' first name and last name.
CREATE TABLE Student (Fname VARCHAR, Lname VARCHAR, Sex VARCHAR, Age VARCHAR, Major VARCHAR)
SELECT Fname, Lname FROM Student WHERE Age > 18 AND Major <> 600 AND Sex = 'F'
What is the date for the La Granja de San Ildefonso to Alto de Navacerrada course?
CREATE TABLE table_name_67 (date VARCHAR, course VARCHAR)
SELECT date FROM table_name_67 WHERE course = "la granja de san ildefonso to alto de navacerrada"
What was the name of the tournament played on Jun 17, 1973?
CREATE TABLE table_name_3 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_3 WHERE date = "jun 17, 1973"
Name the date successor seated for delegate seat established
CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)
SELECT date_successor_seated FROM table_224837_4 WHERE reason_for_change = "Delegate seat established"
What are the product id and product type of the cheapest product?
CREATE TABLE products (product_id VARCHAR, product_type_code VARCHAR, product_price VARCHAR)
SELECT product_id, product_type_code FROM products ORDER BY product_price LIMIT 1
What is the prime mover for a build date in 1975?
CREATE TABLE table_name_87 (prime_mover VARCHAR, build_date VARCHAR)
SELECT prime_mover FROM table_name_87 WHERE build_date = "1975"
What's the track for 1978?
CREATE TABLE table_name_47 (track VARCHAR, year VARCHAR)
SELECT track FROM table_name_47 WHERE year = 1978
What is the smallest number of injured in mayurbhanj, odisha and less than 1 killed?
CREATE TABLE table_name_49 (injured INTEGER, place VARCHAR, killed VARCHAR)
SELECT MIN(injured) FROM table_name_49 WHERE place = "mayurbhanj, odisha" AND killed < 1
In what Week resulting in the bottom 3 was Endre Jansen Partner?
CREATE TABLE table_name_97 (week INTEGER, result VARCHAR, partner VARCHAR)
SELECT MAX(week) FROM table_name_97 WHERE result = "bottom 3" AND partner = "endre jansen"
What was the main legion base for the Romans when the notes were "primigenia goddess of fate. xx in batavi revolt"?
CREATE TABLE table_242785_3 (main_legion_base VARCHAR, notes VARCHAR)
SELECT main_legion_base FROM table_242785_3 WHERE notes = "Primigenia goddess of Fate. XX in Batavi revolt"
What is the highest attandence at a Hamilton Academical game?
CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR)
SELECT MIN(highest) FROM table_11207040_5 WHERE team = "Hamilton Academical"
How many incumbents were first elected in 1984?
CREATE TABLE table_1341453_40 (incumbent VARCHAR, first_elected VARCHAR)
SELECT COUNT(incumbent) FROM table_1341453_40 WHERE first_elected = "1984"
What is the 2007 value with a 4r in 2006, a 1r in 2004, and a 4r in 2009?
CREATE TABLE table_name_48 (Id VARCHAR)
SELECT 2007 FROM table_name_48 WHERE 2006 = "4r" AND 2004 = "1r" AND 2009 = "4r"
What was the premiere date for the episode whose alternate title was miłość i przeznaczenie?
CREATE TABLE table_29799700_2 (series_premiere VARCHAR, alternante_title VARCHAR)
SELECT series_premiere FROM table_29799700_2 WHERE alternante_title = "Miłość i przeznaczenie"
Which player is in the position of Guard/Forward?
CREATE TABLE table_name_67 (name VARCHAR, position VARCHAR)
SELECT name FROM table_name_67 WHERE position = "guard/forward"
How many backgrounds are there represented from Memphis, Tennessee?
CREATE TABLE table_1289860_2 (background VARCHAR, hometown VARCHAR)
SELECT COUNT(background) FROM table_1289860_2 WHERE hometown = "Memphis, Tennessee"
What county is in isolation of 29?
CREATE TABLE table_12280396_1 (county VARCHAR, isolation__km_ VARCHAR)
SELECT county FROM table_12280396_1 WHERE isolation__km_ = 29
What was the distance in the round where the supporter was champ car world series ( grand prix of cleveland ) and the tc winning car was pierre kleinubing?
CREATE TABLE table_28490105_1 (distance VARCHAR, supporting VARCHAR, tc_winning_car VARCHAR)
SELECT distance FROM table_28490105_1 WHERE supporting = "Champ Car World Series ( Grand Prix of Cleveland )" AND tc_winning_car = "Pierre Kleinubing"
Who wrote the episode with 3.96 million US viewers?
CREATE TABLE table_2866514_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT written_by FROM table_2866514_1 WHERE us_viewers__million_ = "3.96"
When did France come in second?
CREATE TABLE table_name_54 (second VARCHAR, nation VARCHAR)
SELECT second FROM table_name_54 WHERE nation = "france"
Which Country has a Top Team of jam, and an Edition of 31st?
CREATE TABLE table_name_93 (country VARCHAR, top_team VARCHAR, edition VARCHAR)
SELECT country FROM table_name_93 WHERE top_team = "jam" AND edition = "31st"
How many main wins for France?
CREATE TABLE table_name_63 (main_wins VARCHAR, team VARCHAR)
SELECT main_wins FROM table_name_63 WHERE team = "france"
What is Top Par, when Country is Sweden?
CREATE TABLE table_name_71 (to_par VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_71 WHERE country = "sweden"
Where did the player move from that went to stuttgart?
CREATE TABLE table_name_17 (moving_from VARCHAR, moving_to VARCHAR)
SELECT moving_from FROM table_name_17 WHERE moving_to = "stuttgart"
What driving wheels are on the m1 original NER class?
CREATE TABLE table_name_8 (driving_wheels VARCHAR, original_ner_class VARCHAR)
SELECT driving_wheels FROM table_name_8 WHERE original_ner_class = "m1"
What is the Country, when the Transfer fee is "loan", and when the Name is Lynch?
CREATE TABLE table_name_94 (country VARCHAR, transfer_fee VARCHAR, name VARCHAR)
SELECT country FROM table_name_94 WHERE transfer_fee = "loan" AND name = "lynch"
How many bonus points did the Colomiers earn?
CREATE TABLE table_name_35 (bonus_points VARCHAR, club VARCHAR)
SELECT bonus_points FROM table_name_35 WHERE club = "colomiers"
Tell me the highest home runs for cleveland indians years before 1931
CREATE TABLE table_name_92 (home_runs INTEGER, team VARCHAR, year VARCHAR)
SELECT MAX(home_runs) FROM table_name_92 WHERE team = "cleveland indians" AND year < 1931
What Nationality's time is 2:07.64?
CREATE TABLE table_name_98 (nationality VARCHAR, time VARCHAR)
SELECT nationality FROM table_name_98 WHERE time = "2:07.64"
tell me the authority that has a decile less than 6 and roll less than 65.
CREATE TABLE table_name_43 (authority VARCHAR, decile VARCHAR, roll VARCHAR)
SELECT authority FROM table_name_43 WHERE decile < 6 AND roll < 65
Which player lost more than 12?
CREATE TABLE table_name_54 (lost VARCHAR, played INTEGER)
SELECT COUNT(lost) FROM table_name_54 WHERE played > 12
What CD was released in 2009?
CREATE TABLE table_name_64 (title VARCHAR, released VARCHAR)
SELECT title FROM table_name_64 WHERE released = 2009
Who directed the episode with the production code 10?
CREATE TABLE table_25679312_2 (directed_by VARCHAR, prod_code VARCHAR)
SELECT directed_by FROM table_25679312_2 WHERE prod_code = 10
Find all the ids and dates of the logs for the problem whose id is 10.
CREATE TABLE problem_log (problem_log_id VARCHAR, log_entry_date VARCHAR, problem_id VARCHAR)
SELECT problem_log_id, log_entry_date FROM problem_log WHERE problem_id = 10
Which Points have a Club of cf calvo sotelo, and a Goal Difference larger than -3?
CREATE TABLE table_name_9 (points INTEGER, club VARCHAR, goal_difference VARCHAR)
SELECT MAX(points) FROM table_name_9 WHERE club = "cf calvo sotelo" AND goal_difference > -3
Show the stadium names without any concert.
CREATE TABLE stadium (name VARCHAR, stadium_id VARCHAR); CREATE TABLE concert (name VARCHAR, stadium_id VARCHAR)
SELECT name FROM stadium WHERE NOT stadium_id IN (SELECT stadium_id FROM concert)
What is Position, when Province / Club is Example, when Date of Birth (Age) is Example, and when Player is Michael Elumeze?
CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR, province___club VARCHAR, date_of_birth__age_ VARCHAR)
SELECT position FROM table_name_52 WHERE province___club = "example" AND date_of_birth__age_ = "example" AND player = "michael elumeze"
Which Votes has a Governorate of hewler?
CREATE TABLE table_name_15 (votes INTEGER, governorate VARCHAR)
SELECT AVG(votes) FROM table_name_15 WHERE governorate = "hewler"
How many points does Croesyceiliog RFC have?
CREATE TABLE table_12886178_4 (points VARCHAR, club VARCHAR)
SELECT points FROM table_12886178_4 WHERE club = "Croesyceiliog RFC"
COunt the EBIT (US $m) which has a Revenue (US $million) larger than 434.8 and a Net profit (US $m) larger than 96.4?
CREATE TABLE table_name_35 (ebit__us_ VARCHAR, revenue__us_$million_ VARCHAR, net_profit__us_$m_ VARCHAR)
SELECT COUNT(ebit__us_) AS $m_ FROM table_name_35 WHERE revenue__us_$million_ > 434.8 AND net_profit__us_$m_ > 96.4
What's the record achieved in the gamed played at BC Place Stadium?
CREATE TABLE table_21796261_4 (record VARCHAR, location VARCHAR)
SELECT record FROM table_21796261_4 WHERE location = "BC Place Stadium"
Name the location on 2006-04-07 for direct fire
CREATE TABLE table_name_9 (location VARCHAR, date VARCHAR, circumstances VARCHAR)
SELECT location FROM table_name_9 WHERE date = "2006-04-07" AND circumstances = "direct fire"
What years did the Utah Jazz Player from Southern Methodist, Play?
CREATE TABLE table_name_52 (years_for_jazz VARCHAR, school_club_team VARCHAR)
SELECT years_for_jazz FROM table_name_52 WHERE school_club_team = "southern methodist"
Tell me the highest time for heat rank of 8 and lane more than 2
CREATE TABLE table_name_48 (time INTEGER, heat_rank VARCHAR, lane VARCHAR)
SELECT MAX(time) FROM table_name_48 WHERE heat_rank = 8 AND lane > 2
What stadium was the game held in when the final score was 17-31?
CREATE TABLE table_name_88 (stadium VARCHAR, final_score VARCHAR)
SELECT stadium FROM table_name_88 WHERE final_score = "17-31"
What is the Distance Medellín Downtown (km) when the municipalities Envigado?
CREATE TABLE table_name_86 (distance_medellín_downtown___km__ VARCHAR, municipalities VARCHAR)
SELECT distance_medellín_downtown___km__ FROM table_name_86 WHERE municipalities = "envigado"
What is the Date of the Competition with a Score of 2–0?
CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_96 WHERE score = "2–0"
What year had cargo tonnes of 13 585?
CREATE TABLE table_name_32 (year INTEGER, cargo__tonnes_ VARCHAR)
SELECT AVG(year) FROM table_name_32 WHERE cargo__tonnes_ = "13 585"
What is the average Money ( $ ), when Country is "United States", and when To par is "+3"?
CREATE TABLE table_name_14 (money___ INTEGER, country VARCHAR, to_par VARCHAR)
SELECT AVG(money___) AS $__ FROM table_name_14 WHERE country = "united states" AND to_par = "+3"
What is the lowest against value with less than 2 draws, 10 points, and less than 4 lost?
CREATE TABLE table_name_17 (against INTEGER, lost VARCHAR, drawn VARCHAR, points VARCHAR)
SELECT MIN(against) FROM table_name_17 WHERE drawn < 2 AND points = 10 AND lost < 4
What was the earliest week with a game at the Braves Field on October 2, 1932?
CREATE TABLE table_name_78 (week INTEGER, game_site VARCHAR, date VARCHAR)
SELECT MIN(week) FROM table_name_78 WHERE game_site = "braves field" AND date = "october 2, 1932"
What is Name, when Goals is greater than 14, and when Transfer Fee is "Youth System"?
CREATE TABLE table_name_49 (name VARCHAR, goals VARCHAR, transfer_fee VARCHAR)
SELECT name FROM table_name_49 WHERE goals > 14 AND transfer_fee = "youth system"
How many different locations does each school have?
CREATE TABLE department (school_code VARCHAR, dept_address VARCHAR)
SELECT COUNT(DISTINCT dept_address), school_code FROM department GROUP BY school_code
Name the player/s when there were 20 points with less than 1.0 extra point .
CREATE TABLE table_25730123_2 (player VARCHAR, extra_points VARCHAR, points VARCHAR)
SELECT player FROM table_25730123_2 WHERE extra_points < 1.0 AND points = 20
What was the score of the final against Dane Propoggia?
CREATE TABLE table_name_72 (score VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_72 WHERE opponent_in_the_final = "dane propoggia"
What was the score for the game played between Cleveland and Orlando at Cleveland?
CREATE TABLE table_name_26 (score VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_26 WHERE home = "cleveland" AND visitor = "orlando"
How many entrants was yves giraud-cabantous?
CREATE TABLE table_21977627_1 (entrant VARCHAR, driver VARCHAR)
SELECT COUNT(entrant) FROM table_21977627_1 WHERE driver = "Yves Giraud-Cabantous"
What was the outcome of the match played on grass?
CREATE TABLE table_name_64 (outcome VARCHAR, surface VARCHAR)
SELECT outcome FROM table_name_64 WHERE surface = "grass"
If the new points were 5760, what is the RK?
CREATE TABLE table_26218783_6 (rk VARCHAR, new_points VARCHAR)
SELECT rk FROM table_26218783_6 WHERE new_points = 5760