I have a table that has an integer id (primary key) and timestamp date added columns (among others).
what would the syntax to extract the id values for the ten most recent "date added" values look like?
|
If we go by the title of your question (10 most recent rows):
If we go by what you say in your question (10 most recent values of date added):
As I noted in my comments, I use Transact-SQL primarily so you might need to adjust for any gaps in my MySQL knowledge. |
|||
|
|
If you have an auto incremented primary key you could also order by id:
The advantage is that id already has a index so you can sort by it very fast. But you need to be sure that you don't mess around with the id so it is always in the right order. If you use |
|||
|
|
SELECT `id` FROM `table` ORDER BY `date added` DESC LIMIT 10– ta.speot.is Jan 25 '12 at 23:33