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

SQL

x
 
use eswiki_p;
SELECT rc_timestamp, page_title, concat('https://es.wikipedia.org/wiki/',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
    and rc_timestamp >= '20170401000000' 
order by rc_timestamp asc;
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...