原来负责生产A产品的转到负责生产B产品,以前负责生产B产陪你的转到负责生产A产品。"
原来负责生产A产品的转到负责生产B产品,以前负责生产B产陪你的转到负责生产A产品。
答案:1 悬赏:40 手机版
解决时间 2021-06-05 02:41
- 提问者网友:献世佛
- 2021-06-04 05:59
用SQL语言怎么写 "
最佳答案
- 五星知识达人网友:底特律间谍
- 2021-06-04 07:12
--测试数据
declare @zhigong table
(
[id] int not null,
[zhigongId] int not null,
[chanpin] varchar(50) not null
)
insert @zhigong
select 1001,1,'A产品' union
select 1003,2,'B产品' union
select 1004,3,'IBM笔记本' union
select 1005,3,'联想笔记本' union
select 1006,3,'惠普打印机'
--方案1,如程序中交换两数一样,先将其中一个转到中间变量
--操作前
select * from @zhigong
update @zhigong
set chanpin='temp' where chanpin='A产品'
update @zhigong
set chanpin='A产品' where chanpin='B产品'
update @zhigong
set chanpin='B产品' where chanpin='temp'
--操作后
select * from @zhigong
declare @zhigong table
(
[id] int not null,
[zhigongId] int not null,
[chanpin] varchar(50) not null
)
insert @zhigong
select 1001,1,'A产品' union
select 1003,2,'B产品' union
select 1004,3,'IBM笔记本' union
select 1005,3,'联想笔记本' union
select 1006,3,'惠普打印机'
--方案1,如程序中交换两数一样,先将其中一个转到中间变量
--操作前
select * from @zhigong
update @zhigong
set chanpin='temp' where chanpin='A产品'
update @zhigong
set chanpin='A产品' where chanpin='B产品'
update @zhigong
set chanpin='B产品' where chanpin='temp'
--操作后
select * from @zhigong
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯