私はsql2000を使用していますが、mysqlとsql2008も使用しており、更新した更新の数を数える方法に興味がありますか? 更新されたテーブルがある場所はわかりますが、それが通常のクエリ内にあるかどうかはわかりません。どうも
declare @updateCount as int
set @updateCount = 0
begin transaction
set @updateCount = update GENIUSES set IQ=161 where IQ=86 and username like 'RetroCoder'
print @updateCount
if @updateCount = 1
commit
else
rollback