Hi Mark,
Code:
select top 10 * from mytable where user_name = "Karl" order by COLUMNAME DESC
ColumnName(use the relavant columnname from your table) marked in red above, decides the order of rows by which you would like to retrieve the last 10 records, as DESC sorts it by descending order and thus lets you get the top 10 records of the descendingly ordered rows.
Hope that helps.
Cheers!
_________________________
- Vijay G
Strive for Perfection