UPDATE b
SET b.update_flag=0
from table1 a
inner join table2 b on a.user_code=b.user_code
where a.pin_number IS NULL
UPDATE a
SET a.pin_number = Adinfo.dbo.udf_ad_Encrypt(b.pin_number)
from table1 a
inner join table2 b on a.user_code=b.user_code
where a.pin_number IS NULL
誰かが私は問題が何であるかを見る2更新ステートメント
「出力節」とはどういう意味ですか?これはストアドプロシージャのためのものですか? –
私はoutputキーワードを使用して、2番目のupdate文から値を取得し、最初のupdate文にその値を挿入する必要があります。これはoutput節を使って行うことができます。 – Durga
更新プログラムには影響を受ける行数以外の「出力」はありません。 –