62,267
社区成员
发帖
与我相关
我的任务
分享
update a set a.columnCode=b.code,a.columnName=b.title
from [fm_Content] a (Left Join [fm_Column] b
on a.columnId=b.id)
where a.columncode like '0004%'
update [fm_Content] a (Left Join [fm_Column] b on a.columnId=b.id) set a.columnCode=b.code,a.columnName=b.title where a.columncode like '0004%'
update a set a.columnCode=b.code,a.columnName=b.title
from [fm_Content] a Left Join [fm_Column] b
on a.columnId=b.id where a.columncode like '0004%'