不循环插入或更新?
我有一个包含两列的表格:
ItemMaster (Item INT, Quantity INT)
如果一个项目已经存在,那么我应该更新数量。否则,我必须在此表中插入一条记录。
没有循环这可能吗?
我正在使用 SQL Server 2005。
I have table with two columns:
ItemMaster (Item INT, Quantity INT)
If an item is already there, then I should update the Quantity. Otherwise, I have to insert a Record in this table.
Is this possible without Loop?
I'm using SQL Server 2005.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可以在没有循环的情况下完成,是的:
It can be done without a loop yes:
对于一行
对于多行:
FOR one row
For many rows: