如何根据信誉阈值获取用户列表?
How to get the list of users based on a reputation threshold?
我尝试使用 Stack Exchange 资源管理器简单查询获取信誉大于 5 的用户列表:
select id
from users
where reputation > 5
我只得到 50,000 行。我期望得到数百万。有门槛吗?有什么办法可以全部搞定吗?
这是 "Why can't I pull in all the SO users from Data Explorer?" on Meta Stack Exchange 的 cross-site 副本。
Data Explorer (SEDE) 限制为 50K 行。
优化您的查询或下载并改用 the Data Dump。这就是数据转储的用途。
或者,您可以 access the Data Dump via Google's BigQuery -- 它也有一个 API.
我尝试使用 Stack Exchange 资源管理器简单查询获取信誉大于 5 的用户列表:
select id
from users
where reputation > 5
我只得到 50,000 行。我期望得到数百万。有门槛吗?有什么办法可以全部搞定吗?
这是 "Why can't I pull in all the SO users from Data Explorer?" on Meta Stack Exchange 的 cross-site 副本。
Data Explorer (SEDE) 限制为 50K 行。
优化您的查询或下载并改用 the Data Dump。这就是数据转储的用途。
或者,您可以 access the Data Dump via Google's BigQuery -- 它也有一个 API.