0

我有两列的表:

ItemMaster (Item INT, Quantity INT)

如果一个项目已经存在,那么我应该更新数量。否则,我必须在此表中插入一条记录。

没有循环这可能吗?

我正在使用 SQL Server 2005。

4

2 回答 2

4

可以在没有循环的情况下完成是:

UPDATE table1
SET Quantity = Quantity + 1
WHERE Item = @itemID

IF @@ROWCOUNT = 0
    INSERT INTO table1 (Item, Quantity)
    VALUES (@itemID, 1)
于 2010-08-18T08:12:52.687 回答
1

FOR 一行

 IF EXISTS (SELECT * from ItemMaster WHERE Item = @Item)
    UPDATE ItemMaster
      SET Quantity = @Quantity
    WHERE Item = @Item
 ELSE
    INSERT INTO ItemMaster VALUES(@Item, @Quantity)

对于多行:

 INSERT INTO ItemMaster (Item, Quantity)
 SELECT Item, Quantity
 FROM AnotherTable a
 WHERE NOT EXISTS (Select 1 from ItemMaster i Where i.Item = a.Item);

 UPDATE ItemMaster i
    SET Quantity = a.Quantity
 FROM AnotherTable a
 WHERE a.Item = i.Item 
于 2010-08-18T08:15:07.847 回答