I want to retrieve the bottom 10 results from a sql server table. I want them to be the last 10 records that were inserted, how can I do this ?
I want to write
In MySQL you could use select * from table LIMIT 0,10
select * from table LIMIT 0,10