2012年3月4日 星期日

ms-sql update 序號

參考引用
--
底下的方法真是實用:
 方法1:
declare @i int
set @i=0
update tableName set 序号=@i,@i=@i+1


方法2:
update
 a
set
 序号=px
from
 (select *,px=row_number()over(order by getdate()) from tb)a

沒有留言:

張貼留言