sql向表中的某个字段填充序列值效果图:
sql语句
select row_number() OVER(ORDER BY item_code ASC) xh,item_code from tableA
增加字段的sql语句update tableA set xh=tempB.xh
from(select row_number()OVER(ORDER BY item_code ASC) xh,item_code from tableA where did='55') tempB where tableA.item_code=tempB.item_code and did='55'

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。