SQL
AخA
USE wikidatawiki_p;
SELECT ips_item_id, MAX(CASE WHEN ips_site_id = 'ruwiki' THEN 1 ELSE 0 END) AS already, COUNT(*) AS CNT
FROM wb_items_per_site
WHERE INSTR(ips_site_page,':')=0
GROUP BY ips_item_id HAVING (already=0)
ORDER BY CNT DESC
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.