2022-05-10 [SQL 筆記] 將序列數字 Update 進欄位 869 0 SQL 筆記 2022-05-12 剛好被問到這個問題,筆記一下,當你要將流水序號更新到某一個欄位時可以使用。這邊順便作了補0的動作,請看下列程式碼: declare @i int; set @i = 0; update dbo.Table set column = Right('00000' + Cast(@i as varchar),5) --這是你要改的欄位 ,@i= @i+1 --這是把i+1讓i遞增 如有指正之處,歡迎隨時提出 SQLupdate流水號 回首頁