本文介绍了如何在sql server中不使用rownum()生成行号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有下表:

CREATE table prd
(
prdid varchar(10)
)
insert into prd values ('prd1011'),('prd1023'),('prd4532'),('prd2341')

我需要在不使用 ROWNUM() 内置函数的情况下返回与 rownumber 相同的值.这可能吗?

I need to return the same with rownumber without using ROWNUM() built in function.Is that possible?

推荐答案

select *, (
    select count(*)
    from prd p2
    where p1.prdid >= p2.prdid
) as cnt
from prd p1

这篇关于如何在sql server中不使用rownum()生成行号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 01:14