SQL
AخA
USE commonswiki_p;
SELECT
COUNT(rc_id) as count,
CONCAT("[[File:", rc_title , "|17px]]")
FROM recentchanges
WHERE rc_log_type = "upload"
AND rc_user_text = "SteinsplitterBot"
AND rc_timestamp > DATE_FORMAT(DATE_ADD(NOW(), INTERVAL -20 DAY), '%Y%m%d%H%i%s')
GROUP by rc_title
ORDER by count DESC
LIMIT 100;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.