I know that the following statement
SELECT * FROM customer_support WHERE 1 LIMIT 0, 30
customer_support
works in MySQL...Can anyone tell me if it's okay with MS SQL...because of the LIMIT 0,30 part.
thanks😃
Adrian
Should work as well 😉
Limit is not supported in MSSQL.
You can either use top or set rowcount.