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

SQL

AخA
 
use wuuwiki_p;
select page_title, min(rev_timestamp) as first_rev
from revision
join page
  on rev_page = page_id
  and page_namespace = 0
group by rev_page, page_title
order by min(rev_timestamp)
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...