What\'s the most efficient way to select the last n number of rows in a table using mySQL? The table contains millions of rows, and at any given time I don\'t know how large
SELECT * FROM table_name ORDER BY auto_incremented_id DESC LIMIT n