postgresql行号类似oracle rownum效果

前端之家收集整理的这篇文章主要介绍了postgresql行号类似oracle rownum效果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用窗口函数row_number()


select row_number() OVER (ORDER BY id) as rownum,* from score;

如果不关心排序,可以这样select row_number() over() as rownum,* from score;

原文链接:https://www.f2er.com/postgresql/196005.html

猜你在找的Postgre SQL相关文章