SQL
AخA
USE arwiki_p;
SELECT
user_name,
COUNT(log_timestamp)
FROM logging
JOIN user
ON user_id = log_user
AND log_timestamp BETWEEN 20160101000000 AND 20160731235959
AND user_name = "Elph"
GROUP BY (log_type)
;
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.