how to get last 10 records form sql table in asc order

sql-server-2005

Solution

select * 
from (select top 10 * from customer order by customer_id desc) a
order by  customer_id

Problem

``` select top(10) from customer order by customer_id desc ```

Original source