SQL
AخA
SELECT
LEFT(l.log_timestamp, 6) AS upload_month,
COUNT(*) AS upload_count
FROM logging l
JOIN comment c ON l.log_comment_id = c.comment_id
WHERE l.log_type = 'upload'
AND c.comment_text REGEXP '^Uploaded a work by .+ from .+ with UploadWizard$'
GROUP BY upload_month
ORDER BY upload_month;
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.