bp_travis
10-27-2008, 11:06 AM
Hello. I am converting a script I have to MSSQL from MySQL. It all was going well till I ran into a MySQL query with a LIMIT statement. I need those LIMIT statements in my script. So, how can I achieve the same affect in MSSQL. Here is the MySQL script:
SELECT * FROM reg_data LIMIT 2,1
Thanks
SELECT * FROM reg_data LIMIT 2,1
Thanks