How to covert mysql query into mssql query?
SELECT name FROM user LIMIT 5, 10
I have known that mssql don't support 'limit'...
But I have to use limit!
How to covert mysql query into SQL Server query?
How to covert mysql query into mssql query?
SELECT name FROM user LIMIT 5, 10
I have known that mssql don't support 'limit'...
But I have to use limit!
How to covert mysql query into SQL Server query?
There is no way to translate this, but there is a bit of workaround here on SO. Check this out.