Hi,
I'm currently trying to implement a simple sorting scheme a la MySQL LIMIT into a MS SQL query, but so far couldn't find a solution on the database end.
e.g.:
(MySQL) SELECT FROM test LIMIT 0,10
would be
(MS SQL) SELECT TOP 10 FROM test
but what would I have to use if I changed the start row to a different value than 0?
Is there no way in MS SQL to query for only a part of the database entries, so that I have to grab all queries and use php to sort out my needed rows?
e.g.:
(MySQL) SELECT * FROM test LIMIT 5,10
would be possible how in MS SQL?