I want to update a row in my date base. The problem is, through a mistake on my part, I have two identical rows of data. How do I run the update on just one row?
In SQL Server 2005+, you can use
UPDATE TOP (1) ....
The advantage of this over SET ROWCOUNT is that any triggers will not be subject to a ROWCOUNT limit, which is almost certainly a good thing.
SET ROWCOUNT
ROWCOUNT
2.1m questions
2.1m answers
60 comments
57.0k users