Update a single row with t-sql

前端 未结 5 2110
独厮守ぢ
独厮守ぢ 2020-12-11 00:36

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?

5条回答
  •  再見小時候
    2020-12-11 01:09

    Use SET ROWCOUNT;

    SET ROWCOUNT 1; UPDATE Production.ProductInventory SET Quantity = 400 WHERE Quantity < 300; GO

    http://msdn.microsoft.com/en-us/library/ms188774.aspx

提交回复
热议问题