This query is marked as a draft This query has been published by ಮಲ್ನಾಡಾಚ್ ಕೊಂಕ್ಣೊ.

SQL

x
 
select case when COUNT(*) > 0 -- If an entry exists, the page has been edited else not edited
                 then 'Yes'
                 else 'No'
       end as 'Page has been edited?'
from revision
join page on page_id = rev_page -- link with page table
where page_title = '121.208.212.82' -- page title without namespace prefix
and page_namespace = 3 -- page namespace
and rev_timestamp > '20170504000000'; -- check if it received edits after this timestamp
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...