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
Cryptic
.
The number of transclusions of each template page in [[Category:Lang-x templates]]. For [[WP:RAQ#how many transclusions of a list of templates]] circa 6 October 2024.
Toggle Highlighting
SQL
WITH templates (t_title) AS ( SELECT page_title FROM categorylinks JOIN page ON page_id = cl_from WHERE page_namespace = 10 AND cl_to = 'Lang-x_templates' ) SELECT t_title, COUNT(*) FROM templates JOIN linktarget ON lt_namespace = 10 AND lt_title = t_title JOIN templatelinks ON tl_target_id = lt_id GROUP BY t_title;
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...