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
Estimatio
.
Toggle Highlighting
SQL
SELECT p1.page_title AS `Title`, COUNT(pl.pl_from) AS `LinkCount` FROM page p1 LEFT JOIN revision r ON p1.page_id = r.rev_page LEFT JOIN pagelinks pl ON p1.page_id = pl.pl_title WHERE p1.page_namespace = 0 -- Main namespace AND r.rev_id IS NULL -- No revision means no content (this needs to be adjusted based on actual schema) AND p1.page_title LIKE 'A%' -- Title starts with 'A' GROUP BY p1.page_title HAVING LinkCount > 0 ORDER BY LinkCount DESC;
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...