Fork of The first 10 articles created on fawiki which still exist by Huji
This query is marked as a draft This query has been published by Geraki.

SQL

AخA
 
use elwiki_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 50
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...