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
Dotysan
.
Toggle Highlighting
SQL
#SELECT * #FROM # comment as c #WHERE # c.comment_id <100; #SELECT # #c.comment_text, # * # COUNT(*) AS usage_count #FROM # comment AS c #JOIN # revision AS r ON # c.comment_id = r.rev_comment_id #GROUP BY # c.comment_text #ORDER BY # usage_count DESC #LIMIT # 100; ## this took ?? seconds SELECT c.comment_text, COUNT(*) AS usage_count FROM comment AS c JOIN revision AS r ON c.comment_id = r.rev_comment_id WHERE c.comment_hash IS NOT NULL GROUP BY c.comment_hash, c.comment_text ORDER BY usage_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
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...