Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
Rdrg109
.
I created this query because I wanted to get the complete list and didn't know whether it was possible to list them using some feature of MediaWiki. This query is intended to be executed in the database wikidatawiki_p
Toggle Highlighting
SQL
WITH my_page AS ( SELECT page_id, page_title, CONVERT(SUBSTRING_INDEX(page_title, 'E', -1), UNSIGNED INTEGER) AS page_num FROM page WHERE page_namespace = 640 ), my_page_props AS ( SELECT pp_page, pp_value FROM page_props WHERE pp_propname = 'displaytitle' AND pp_page IN (SELECT page_id FROM my_page) ) SELECT page_title, pp_value FROM my_page JOIN my_page_props ON page_id = pp_page ORDER BY page_num ASC
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...