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

SQL

x
 
SELECT rc_timestamp AS "நேரம்", 
       actor_name AS "பயனர்", 
       CONCAT("[[", rc_title, "]]") AS "கட்டுரை", 
       rc_new_len AS "ஆரம்ப நீளம்"
FROM recentchanges_userindex
JOIN actor ON rc_actor = actor_id
WHERE rc_new = 1  -- Only new pages
    AND rc_namespace = 0  -- Only main namespace articles
    AND rc_patrolled = 0  -- Unpatrolled pages
    AND rc_timestamp BETWEEN "20250101000000" AND "20250326235959"
ORDER BY rc_timestamp DESC;
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...