I only want to update one row in a database. However, my WHERE clause
affects two or more rows. I cannot add any more conditions to the WHERE
clause to limit the number of rows affected. This statement is for an Audit
type function which eliminates duplicate records that are created.
My SQL Statement:
UPDATE table SET columnx='1' WHERE id='1'
Is there a way to write an UPDATE SQL statement to limit the number of rows
that are updated?