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

SQL

x
 
SET @start_date = '20240101000000';
SET @end_date =   '20241231000000';
SELECT CONCAT('[[user:',page_Title,']]') AS 'عنوان_الصفحة_الأصلية', 
    page_len AS 'حجم_الصفحة_الأصلية',
    CONCAT('[[user:',page_Title,"&oldid=",page_latest,']]') AS 'التعديل الأخير',
FROM page 
        page_is_redirect=1
        AND page_namespace=2 
        AND page_content_model ='wikitext'
ORDER BY page_id DESC
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.
All SQL code is licensed under CC0 License.

Checking query status...