I have table containing data for users, I need to get only last 2 users after first user ex
id-username
1-john
2-fredrek
3-sara
4-sarah
I need to get fredrek, sara
- how do I do this in SQL Server ??
I know to do that with MySQL I use LIMIT1,2 but with SQL Server I can't