Ms Sql Server(TSQL)の更新に問題があります。説明フィールドとIDフィールドを持つ
テーブルPersonがあり、この値でこのテーブルに1000レコードを挿入したとします。
1 Descript1
2 Descript2
3 Descript3
.. ......
.. ......
1000 Descript1000
この1000レコードをレコードの下に同じように変更するにはどうすればよいですか?
1 Description1
2 Description2
3 Description3
......
......
1000 Description1000
カーソルを使用する必要がありますか?このクエリを作成しましたが、機能しません
while @Counter<=1000000
begin
update Person set Description='Descripton'+CONVERT(nvarchar(15),@Counter) where ID>=1
set @Counter=@Counter+1
end