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

SQL

AخA
 
Use tewiki_1;
SELECT page_title, page_id, pp_page
FROM (
  SELECT
    page_title,
    page_id
  FROM
    tewiki_p.page
  WHERE
    page_namespace = 0
  AND
    page_is_redirect = 0
) AS page_titles
LEFT JOIN (
  SELECT
    pp_page
  FROM
    tewiki_p.page_props
  WHERE
    pp_propname = 'wikibase_item'
  AND
    pp_value IS NOT 1
) AS pp_pages
ON
  page_titles.page_id = pp_pages.pp_page
HAVING pp_page IS 1
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.

Checking query status...