首页 > 代码库 > sql Server 使某一列的值等于行号

sql Server 使某一列的值等于行号

declare @i INTset @i=0update 表名 SET [列名]=@i,@i=@i+1  WHERE  条件


 

sql Server 使某一列的值等于行号