gpt4 book ai didi

sql - 如何枚举SQL中返回的行?

转载 作者:行者123 更新时间:2023-12-03 13:28:33 25 4
gpt4 key购买 nike

我想知道是否有可能枚举返回的行。不根据任何列的内容,而只是产生一个连续的整数索引。例如。

select ?, count(*) as usercount from users group by age


将返回一些内容:

1    12
2 78
3 4
4 42


它用于 https://data.stackexchange.com/

最佳答案

尝试:

SELECT
ROW_NUMBER() OVER(ORDER BY age) AS RowNumber
,count(*) as usercount
from users
group by age

关于sql - 如何枚举SQL中返回的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3047789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com