This query is marked as a draft This query has been published by Bdijkstra.

SQL

AخA
 
USE nlwiki_p;
SELECT page_title, r1.rd_title AS rd_title1, r2.rd_title AS rd_title2
FROM page 
    INNER JOIN redirect r1 ON page_id=r1.rd_from
    LEFT JOIN redirect r2 ON r1.rd_from=r2.rd_from
WHERE
    page_namespace=0 AND
    page_is_redirect=1 AND
    page_title REGEXP '_\\(hoofdbetekenis\\)$' AND
    page_title!=CONCAT(r1.rd_title,'_(hoofdbetekenis)')
ORDER BY page_title
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...