I have a table in SQL Server. I would like to delete the top 1000 rows from it. However, I tried this, but I instead of just deleting the top 1000 rows it deleted all the
SET ROWCOUNT 1000; DELETE FROM [MyTable] WHERE .....