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 -- Not patrolled
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.