连续序号的 sql语句
(编辑:jimmy 日期: 2024/11/17 浏览:3 次 )
复制代码 代码如下:
# 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
下一篇:MYSQL 导入数据的几种不同