SQL
x
USE wikidatawiki_p;
SELECT
page_id,
page_title
FROM
page JOIN revision ON page_id=rev_page JOIN actor_revision ON actor_id=rev_actor
WHERE
page_namespace=0
GROUP BY
page_id,
page_title
HAVING
COUNT(actor_user IS NOT NULL) = 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.