SQL
x
use arwiki_p;
SELECT p.page_title #, cl.cl_to
FROM page p, page_props, wikidatawiki_p.page wdp #, categorylinks cl
WHERE p.page_namespace = 0
AND pp_page = p.page_id AND pp_propname = 'wikibase_item' AND wdp.page_title = pp_value AND wdp.page_namespace = 0
#AND cl.cl_from=p.page_id
and exists
(select term_entity_id from wikidatawiki_p.wb_terms wd where p.page_id = wd.term_entity_id and
wd.term_type = "label" and wd.term_language='ar'
#and term_entity_id=i.ips_item_id
)
/*and exists
(select * from wikidatawiki_p.pagelinks wdpl where wdpl.pl_from = wdp.page_id AND (#wdpl.pl_title = 'P345' or
wdpl.pl_title = 'P1562' or wdpl.pl_title = 'P1237' or wdpl.pl_title = 'P1712'or wdpl.pl_title = 'P1258' or
wdpl.pl_title = 'P1265'or wdpl.pl_title = 'P480'or wdpl.pl_title = 'P2334') AND wdpl.pl_namespace = 120)*/
/*
and p.page_id not in (SELECT tl_from
FROM templatelinks
WHERE tl_namespace = 10 #and tl_from_namespace=0
#and tl_title in ("Infobox_sportsperson","Infobox_officeholder")
and tl_title="وصلات_فيلم" )
# and cl.cl_to like "%أفلام" #AND wdpl.pl_from IS NULL */
GROUP BY p.page_title
#order by wdpl.pl_from
LIMIT 10;
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.