Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
Fork of
Bad links from dewiki to other wikis: redirects
by
Achim55
This query is marked as a draft
This query has been published
by
Achim55
.
Toggle Highlighting
SQL
USE dewiki_p; SET @lenw = LENGTH('https://de.wikipedia.org/wiki/'); SET @lenc = LENGTH('https://commons.wikimedia.org/wiki/'); SELECT now() AS timestamp; # Wikipedia #page links to file redirects #interwiki links to file redirects (SELECT CONCAT('# [[', IF (wp.page_namespace = 14, ':Kategorie:', ''), REPLACE (wp.page_title, '_', ' '), ']] ', '• [{{fullurl:', IF (wp.page_namespace = 14, 'Kategorie:', ''), REPLACE (wp.page_title, '_', ' '), '|action=edit}} edit] ', '→ [[', REPLACE (pl_title, '_', ' '), ']]') AS wikipage FROM pagelinks INNER JOIN page wp ON wp.page_id = pl_from AND wp.page_namespace IN (0, 14) INNER JOIN dewiki_p.page cp ON cp.page_title = pl_title WHERE cp.page_namespace = 6 AND cp.page_is_redirect = 1 ) /* UNION (SELECT CONCAT('# [[', IF (wp.page_namespace = 14, ':Kategorie:', ''), REPLACE (wp.page_title, '_', ' '), ']] ', '• [{{fullurl:', IF (wp.page_namespace = 14, 'Kategorie:', ''), REPLACE (wp.page_title, '_', ' '), '|action=edit}} edit] ', '→ [[', REPLACE (iwl_title, '_', ' '), ']]') AS wikipage FROM iwlinks INNER JOIN page wp ON wp.page_id = iwl_from AND wp.page_namespace IN (0, 14) INNER JOIN dewiki_p.page cp ON cp.page_title = iwl_title AND cp.page_namespace = 6 AND cp.page_is_redirect = 1 WHERE iwl_prefix = 'de' ) UNION #external links to file redirects (SELECT CONCAT('# [[', IF (wp.page_namespace = 14, ':Kategorie:', ''), REPLACE (wp.page_title, '_', ' '), ']] ', '• [{{fullurl:', IF (wp.page_namespace = 14, 'Kategorie:', ''), REPLACE (wp.page_title, '_', ' '), '|action=edit}} edit] ', '→ [[', REPLACE (cp.page_title, '_', ' '), ']]') AS wikipage FROM externallinks INNER JOIN page wp ON wp.page_id = el_from AND wp.page_namespace IN (0, 14) INNER JOIN dewiki_p.page cp ON cp.page_title = SUBSTRING(REPLACE (el_to, '?uselang=de', ''), IF ((LEFT (el_to, 5) = 'https'), @lenw + 1, @lenw)) AND cp.page_namespace = 6 AND cp.page_is_redirect = 1 WHERE ((el_to LIKE 'https://de.wikipedia.org/wiki/%') OR (el_to LIKE 'http://de.wikipedia.org/wiki/%')) AND el_to NOT LIKE '%\%%' #temp )*/ ORDER BY wikipage 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...