站长资源数据库

连续序号的 sql语句

整理:jimmy2024/6/27浏览2
简介复制代码 代码如下:# id唯一,num连续序号 # select a.id,num=(select count(1) from tb b where b.id<=a.id ) from tb a
复制代码 代码如下:
# id唯一,num连续序号
# select a.id,num=(select count(1) from tb b where b.id<=a.id ) from tb a