我正在尝试进行更新,但遇到了问题(使用 microsoft sql server)
update mytable
set myvalue=
(
(select myvalue from someothertable
where someothertable.id=mytable.id)
)
from table mytable
where mytable.custname='test'
基本上,如果确实发生这种情况,子查询可能不会返回任何结果我想调用不同的子查询:
(select myvalue from oldtable
where oldtable.id=mytable.id)