SQL
x
use eswiki_p;
SELECT distinct page_title, concat('https://es.wikipedia.org/w/index.php?action=edit&title=',page_title) enlace
from page, recentchanges
where page_id = rc_cur_id
and rc_new = 1
and page_namespace in (0)
and not exists(SELECT 1 FROM page_props WHERE pp_propname = 'wikibase_item' and pp_page = page_id)
and page_is_redirect = 0;
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.