Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
Lofhi
.
Toggle Highlighting
SQL
USE frwiki_p; -- Utilisateurs enregistrés avec >=1 modification dans l'intervalle [aujourd'hui - 30 jours; aujourd'hui] SELECT rc_user_text AS 'Utilisateur', COUNT(rc_user_text) AS 'Nombre de modificationss' FROM recentchanges WHERE rc_timestamp > ( NOW() - INTERVAL 30 DAY ) AND rc_user != 0 GROUP BY rc_user_text HAVING COUNT(rc_user_text) >= 1 ORDER BY rc_user_text; -- Utilisateurs enregistrés avec >=5 modifications dans l'intervalle [aujourd'hui - 30 jours; aujourd'hui] SELECT rc_user_text AS 'Utilisateur', COUNT(rc_user_text) AS 'Nombre de modifications' FROM recentchanges WHERE rc_timestamp > ( NOW() - INTERVAL 30 DAY ) AND rc_user != 0 GROUP BY rc_user_text HAVING COUNT(rc_user_text) >= 5 ORDER BY rc_user_text;
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...