Fork of
List of URL not in TLD-list
by ⵓ
This query is marked as a draft
This query has been published
by ⵓ.
SQL
AخA
WITH p as (
SELECT page.page_id, page.page_title
FROM page
WHERE page.page_namespace = 0
)
SELECT DISTINCT CONCAT( '# ' , externallinks.el_to_domain_index
, ' – {{Bearbeiten|',p.page_title ,'|text=',p.page_title,'}} – <nowiki>'
, externallinks.el_to_path ,' </nowiki>' )as output
FROM externallinks INNER JOIN p
ON p.page_id = externallinks.el_from
WHERE externallinks.el_to_domain_index like 'http://V4.%'
ORDER BY 1;
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.