日期:2014-05-18  浏览次数:20535 次

这个update怎么弄
A
1 50
2 60
3 70


B
je1 je2 je3

表A的值和表B的JE几关联,我相对应更新

得到
B
je1 je2 je3
50 60 70




------解决方案--------------------
update b 
set je1 = (select col from a where a.id = b.je1),
je2 = (select col from a where a.id = b.je2),
je3 = (select col from a where a.id = b.je3)
from b
------解决方案--------------------
探讨
update b
set je1 = (select col from a where a.id = b.je1),
je2 = (select col from a where a.id = b.je2),
je3 = (select col from a where a.id = b.je3)
from b

------解决方案--------------------
探讨
比如得到参数

@xmid值为80(xmid为5)

update B set je@xmid=80 这样不行的呀

------解决方案--------------------
当表名,列名为变量时,需要使用动态SQL,以下是基本用法。

--动态sql语句基本语法
SQL code
 
1 :普通SQL语句可以用Exec执行 

eg: Select * from tableName 
Exec('select * from tableName') 
Exec sp_executesql N'select * from tableName' -- 请注意字符串前一定要加N 

2:字段名,表名,数据库名之类作为变量时,必须用动态SQL 

eg: 
declare @fname varchar(20) 
set @fname = 'FiledName' 
Select @fname from tableName -- 错误,不会提示错误,但结果为固定值FiledName,并非所要。 
Exec('select ' + @fname + ' from tableName') -- 请注意 加号前后的 单引号的边上加空格 

当然将字符串改成变量的形式也可 
declare @fname varchar(20) 
set @fname = 'FiledName' --设置字段名 

declare @s varchar(1000) 
set @s = 'select ' + @fname + ' from tableName' 
Exec(@s) -- 成功 
exec sp_executesql @s -- 此句会报错 

declare @s Nvarchar(1000) -- 注意此处改为nvarchar(1000) 
set @s = 'select ' + @fname + ' from tableName' 
Exec(@s) -- 成功 
exec sp_executesql @s -- 此句正确 

3. 输出参数 
declare @num int, 
@sqls nvarchar(4000) 
set @sqls='select count(*) from tableName' 
exec(@sqls) 
--如何将exec执行结果放入变量中? 

declare @num int, 
@sqls nvarchar(4000) 
set @sqls='select @a=count(*) from tableName ' 
exec sp_executesql @sqls,N'@a int output',@num output 
select @num

------解决方案--------------------
SQL code

SUBSTRING --用截取转换在做匹配呢

------解决方案--------------------
探讨
CREATE PROC PR_GZXM @xmid int,@je decimal(18,2)
declare @sql as v
archar(100)
set @sql = 'update B set je' + cast(@xmid as varchar) + ' = @je'
exec(@sql)


这个怎么改呀