能否创建关于每月新查询用户数的报告?

哦。是的。那不是我的(SQL)查询所做的。看来我误解了。您可以通过访问 /admin/reports/topics 并选择图表模式来查看每月发布的主题数量。您也可以在 /admin/reports/daily_engaged_users 查看活跃用户,但这会计算回复和点赞。如果我理解正确的话,您正在寻找类似这样的东西:

select to_char(created_at, 'YYYY-MM') as month,
       count(distinct user_id) users,
       count(distinct id) topics
from topics
group by to_char(created_at, 'YYYY-MM')
order by to_char(created_at, 'YYYY-MM')

这确实需要数据浏览器(Data Explorer),而安装它可能需要系统管理员的权限。