作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含列 id、itemID 和 locationId 的表。
我现在已将一个 locationId 拆分为多个,因此我想:
更新 locationId 为 10 且有两行 locationId 设置为 11 和 12 的所有记录(两行的 ItemId 将相同)
所以开始我有:
Id ItemID LocationID
1 1 10
我想结束
Id ItemID LocationID
1 1 11
1 1 12
鉴于它一次更新和插入,是否有任何方便的方法来做到这一点
最佳答案
可能有一个语句可以做到这一点,但你为什么不只使用事务,一种与供应商无关的方式:
begin transaction;
insert into TBL (id,itemid,locationid)
select id, itemid, 11
from TBL
where locationid = 10;
update TBL
set locationid = 12
where locationid = 10;
commit transaction;
关于sql-server - 如何将数据库的一行转换为两行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3305382/
我是一名优秀的程序员,十分优秀!