SQL
x
SELECT now() AS "Pašreizējais laiks";
USE lvwiki_p;
SELECT rc_user_text AS "Dalībnieks", COUNT(rc_id) AS "Labojumu skaits"
FROM recentchanges
WHERE rc_type IN (0,1,2,3,4,142) AND rc_user<>0
GROUP BY rc_user_text
ORDER BY COUNT(rc_id) DESC;
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.