does anybody know how to retrieve only the first 100 rows from a table...I am using SQL Server 7.0.
when I was using postgres I could achieve this task using 'limit' and 'offset' for example I can say
select * from employees offset 0 limit 100;
but SQL Server is different, it only supports 'between...and', which is totally different.
can anybody plz help.
thanks