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
KylieTastic
.
A on request version of Wikipedia:Database reports/Orphans_with_incoming_links (with 2+ links rather than 3+)
Toggle Highlighting
SQL
/* pagelinks changed - trying to work out fix... */ SELECT orphan.page_title AS page, COUNT(pl.pl_from) AS count FROM page orphan INNER JOIN categorylinks cl ON orphan.page_id = cl.cl_from AND cl.cl_to = 'All_orphaned_articles' INNER JOIN linktarget ON orphan.page_title = lt_title AND orphan.page_namespace = lt_namespace INNER JOIN pagelinks pl ON lt_id = pl_target_id INNER JOIN page p2 ON p2.page_id = pl.pl_from WHERE pl.pl_from_namespace = 0 AND p2.page_is_redirect = 0 GROUP BY orphan.page_title HAVING COUNT(pl.pl_from) > 1 ORDER BY COUNT(pl.pl_from) DESC, orphan.page_title ASC;
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...