获取特定时间段内创建的维基百科文章数
Get the number of created Wikipedia articles during a specific period of time
我想获取特定一周(比如上周)内某种语言(比如英语)的文章数 written/created。我如何在维基百科上 运行 这个查询?
我没有维基百科的经验-api
您可以运行维基百科数据库中的这个查询:
SELECT COUNT(*)
FROM enwiki_p.recentchanges
WHERE rc_new = 1
AND rc_namespace = 0
AND rc_timestamp BETWEEN 20160417000000 AND 20160424000000
查看结果here. If you want to count the number of new articles for another language, you can change enwiki_p
to another two-character language code。
我想获取特定一周(比如上周)内某种语言(比如英语)的文章数 written/created。我如何在维基百科上 运行 这个查询?
我没有维基百科的经验-api
您可以运行维基百科数据库中的这个查询:
SELECT COUNT(*)
FROM enwiki_p.recentchanges
WHERE rc_new = 1
AND rc_namespace = 0
AND rc_timestamp BETWEEN 20160417000000 AND 20160424000000
查看结果here. If you want to count the number of new articles for another language, you can change enwiki_p
to another two-character language code。