title stringlengths 1 212 | description stringlengths 1 4.39k ⌀ | query stringlengths 1 65.5k ⌀ | extra_info stringlengths 18 31.6k | wikidb stringlengths 4 26 ⌀ |
|---|---|---|---|---|
Most pending changes accepts (all time) | null | SELECT ROW_NUMBER() OVER(ORDER BY COUNT(*) DESC) AS rank,
actor_name,
COUNT(log_actor) AS manual_accept_count
FROM logging_userindex
JOIN actor_logging ON actor_id = log_actor
WHERE log_type = 'review' AND log_action = 'approve'
GROUP BY log_actor
ORDER BY manual_accept_count DESC
LIMIT 1000 | {"resultsets": [{"headers": ["files"], "rowcount": 100}], "runningtime": "21.94"} | enwiki |
Files on fi.wiki NOT in spec categories (no license) | null | #USE fiwiki_p;
SELECT
CONCAT("# [[:File:", img_name, "]]") AS file, CONCAT("[[:User:", actor_name, "]]") as uploader
FROM image
JOIN page
ON page_namespace = 6
AND page_title = img_name
JOIN actor_image ON img_actor = actor_id
JOIN categorylinks
ON cl_from = page_id
AND cl_type = "file"
#AND cl_to = "No_license" # ... | {"resultsets": [{"headers": ["el_id", "el_from", "el_to", "el_index", "el_index_60"], "rowcount": 1}], "runningtime": "0.06"} | fiwiki_p |
Pages by lint errors | Mainspace pages with most lint errors except for Obsolete HTML tags | select page_title, count(*) as page_count
from linter
join page on page.page_id = linter.linter_page
group by page.page_id
order by count(*) desc, page_title asc
limit 1000; | {"resultsets": [{"headers": ["el_id", "el_from", "el_to", "el_index", "el_index_60"], "rowcount": 1}], "runningtime": "0.06"} | enwiki_p |
فارغ | null | null | {"resultsets": [{"headers": ["ll_from", "ll_lang", "ll_title"], "rowcount": 15}], "runningtime": "0.06"} | arwiki_p |
Userspace pages of non-existent users (no talk, no subpages) | null | SELECT CONCAT('https://en.wikipedia.org/wiki/User:', p.page_title) AS URL
FROM enwiki_p.page p
LEFT JOIN enwiki_p.user u ON REPLACE(p.page_title, '_', ' ') = u.user_name
WHERE p.page_namespace = 2
AND u.user_id IS NULL
AND p.page_is_redirect = 0
AND NOT IS_IPV4(p.page_title) -- Exclude IPv4
AND NOT IS_IPV6(p.page_title... | {"resultsets": [{"headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %"], "rowcount": 1}], "runningtime": "0.37"} | enwiki_p |
orphaned talks | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
... | {"resultsets": [{"headers": ["Kullanici", "KullaniciGrubu", "Sayfa", "DegisiklikSayisi"], "rowcount": 13}, {"headers": ["Sayfa", "DegisiklikSayisi"], "rowcount": 27}], "runningtime": "1291.60"} | enwiki_p |
stats of autoreviewed articles and redirects | null | select review_date as date,
COUNT(IF(logtemp.page_is_redirect = 0, 1, NULL)) as `Articles`,
COUNT(IF(logtemp.page_is_redirect = 1, 1, NULL)) as `Redirects`
from (
select distinct page_id, left(ptrp_reviewed_updated, 8) as review_date, page_is_redirect
from pagetriage_page
join page on ptrp_page_id=pag... | {"resultsets": [{"headers": ["concat(\"Category:\",page_title)", "page_len", "cat_pages", "cat_subcats"], "rowcount": 8378}], "runningtime": "16.80"} | enwiki |
select count(distinct cl_from) from categorylinks | null | select count(distinct cl_from) from categorylinks | {"resultsets": [{"headers": ["Page", "Count"], "rowcount": 0}], "runningtime": "3.46"} | enwiki_p |
select count(distinct cl_to) from categorylinks | null | select count(distinct cl_to) from categorylinks | {"resultsets": [{"headers": ["actor_name", "user_registration"], "rowcount": 54}], "runningtime": "44.13"} | enwiki_p |
Ruwiki IWRM.js usage → wikitable | null | USE ruwiki_p;
SELECT
CONCAT('[[User:', actor_name, '|]]') AS User,
COUNT(rev_id) AS Edits
FROM revision
JOIN actor ON rev_actor = actor_id
JOIN change_tag ON ct_rev_id = rev_id
JOIN change_tag_def ON ct_tag_id = ctd_id
WHERE ctd_name = 'iwrm'
GROUP BY rev_actor
ORDER BY edits DESC; | {"resultsets": [{"headers": ["actor_name", "rc_this_oldid", "comment_text"], "rowcount": 0}], "runningtime": "87.81"} | ruwiki_p |
Articles with talk pages that have been assigned to WikiProjects | Part of a plan to assign articles to WikiProjects using Naive Bayes. Detects only pages w/talk pages that have been assigned to WikiProjects.
Still being worked on.
Older version of this query that did 1/100 of the article space:
Executed in 78.19 seconds as of Wed, 15 Mar 2023 14:13:29 UTC, Resultset (61075 rows)... | SELECT DISTINCT
article.page_title,
article.page_id,
talk.page_id
-- REGEXP_EXTRACT(talkcats.cl_to, '(?WikiProject_|.*_importance_|.*_priority_|Unassessed)(.*)'), -- does not work
FROM
page AS article
INNER JOIN page AS talk ON talk.page_title = article.page_title
INNER JOIN categorylinks AS pagecats ON p... | {"connection_id": 128340020} | enwiki_p |
select cl_from, cl_to from categorylinks where cl_to like "%WikiProject%" limit 1000 | null | select cl_from, cl_to from categorylinks
where cl_to like "%Class_WikiProject%"
limit 1000 | {"connection_id": 128312599} | enwiki_p |
Most regular editors on frwiki Admin requests (2022-2023) | Liste des éditeurs non-admins les plus réguliers de Wikipédia:Requête aux administrateurs durant l'année 2022-2023 | SELECT
user.user_name,
COUNT(*) AS count
FROM revision
JOIN page ON revision.rev_page = page.page_id
JOIN actor ON revision.rev_actor = actor.actor_id
JOIN user ON actor.actor_user = user.user_id
LEFT JOIN user_groups ON user.user_id = user_groups.ug_user AND user_groups.ug_group = 'sysop'
WHERE page.page_namespace... | {"resultsets": [{"headers": ["pl_from", "pl_title", "cl_to"], "rowcount": 516}], "runningtime": "4.97"} | frwiki |
Most regular editors on frwiki Admin requests (2022-2023) | Liste des éditeurs les plus réguliers de Wikipédia:Requête aux administrateurs durant l'année 2022-2023 | SELECT
user.user_name,
COUNT(*) AS count
FROM revision
JOIN page ON revision.rev_page = page.page_id
JOIN actor ON revision.rev_actor = actor.actor_id
JOIN user ON actor.actor_user = user.user_id
WHERE page.page_namespace = 4
AND page.page_title = 'Requête_aux_administrateurs'
AND rev_timestamp >= DATE_FORMAT(D... | {"resultsets": [{"headers": ["concat(\"File:\", img_name)", "img_timestamp"], "rowcount": 317}], "runningtime": "4.88"} | frwiki |
Thanked people for 2022 frwiki per user | null | USE frwiki_p;
SELECT log_title, COUNT(log_id)
FROM logging_logindex
WHERE
log_type = "thanks" AND
log_timestamp >= "20220000000000" AND
log_timestamp <= "20230000000000"
GROUP BY log_title
ORDER BY 2 DESC | {"resultsets": [{"headers": ["tl_from", "tl_from_namespace", "tl_target_id", "page_id", "page_namespace", "page_title", "page_is_redirect", "page_is_new", "page_random", "page_touched", "page_links_updated", "page_latest", "page_len", "page_content_model", "page_lang", "lt_id", "lt_namespace", "lt_title"], "rowcount": ... | frwiki |
mies ja naiskäyttäjänimet fiwikissä | null |
SELECT
"nainen" as category,
sum(1) as c,
group_concat(user_name SEPARATOR ', ') as names
FROM
user LEFT JOIN ipblocks ON ipb_user=user_id
WHERE
user_editcount>0
AND (lower(user_name) like "%nainen")
AND ipb_user IS NULL
UNION
SELECT
"mies" as category,
sum(1) as c,
group_concat(user... | {"resultsets": [{"headers": ["\u1ecd", "New articles in a period", "Wikidata item", "Creator", "Date created", "Length"], "rowcount": 258}], "runningtime": "0.72"} | fiwiki_p |
sites | null | SELECT *
FROM sites
WHERE site_global_key = 'simplewiki' | {"resultsets": [{"headers": ["WikiQuote updated article in #SheSaid 2022", "Campaign size increase", "Current size", "Last update", "Wikidata item"], "rowcount": 137}], "runningtime": "0.88"} | simplewiki |
Most regular editors on frwiki Admin requests (2022-2023) | Liste des éditeurs non-admins les plus réguliers de Wikipédia:Requête aux administrateurs durant l'année 2022-2023 | SELECT
user.user_name,
COUNT(*) AS count
FROM revision
JOIN page ON revision.rev_page = page.page_id
JOIN actor ON revision.rev_actor = actor.actor_id
JOIN user ON actor.actor_user = user.user_id
LEFT JOIN user_groups ON user.user_id = user_groups.ug_user AND user_groups.ug_group = 'sysop'
WHERE page.page_namespace... | {"resultsets": [{"headers": ["WikiQuote updated article in #SheSaid 2022", "Campaign size increase", "Current size", "Last update", "Wikidata item"], "rowcount": 2}], "runningtime": "0.34"} | frwiki |
select count(*) from categorylinks where cl_to like "%WikiProject%" | null | select count(*) from categorylinks
where
cl_to like "%WikiProject%"
| {"resultsets": [{"headers": ["rc_id", "rc_timestamp", "rc_actor", "rc_namespace", "rc_title", "rc_comment_id", "rc_minor", "rc_bot", "rc_new", "rc_cur_id", "rc_this_oldid", "rc_last_oldid", "rc_type", "rc_source", "rc_patrolled", "rc_ip", "rc_old_len", "rc_new_len", "rc_deleted", "rc_logid", "rc_log_type", "rc_log_acti... | enwiki_p |
100 plwiki articles without ukwiki links | null | SELECT CONCAT('Q', ips.ips_item_id) AS item_id, ips.ips_row_id, COUNT(*) AS links,
(SELECT COUNT(*) FROM wb_items_per_site ips_bis
WHERE ips_bis.ips_site_id = "ukwiki"
AND ips_bis.ips_item_id = ips.ips_item_id) AS ukwiki,
(SELECT ips_site_page FROM wb_items_per_site ips_en WHERE ips_en.ips_item_id = ips.i... | {"resultsets": [{"headers": ["Page", "Count"], "rowcount": 0}], "runningtime": "5.80"} | wikidatawiki_p |
nlwiki Current bot accounts & activity | null | SELECT actor_name AS 'username', ug_expiry AS 'bot expiry', MAX(rev_timestamp) AS 'last edit',
(UNIX_TIMESTAMP()-UNIX_TIMESTAMP(STR_TO_DATE(MAX(rev_timestamp),'%Y%m%d%H%i%s')))/31556952 AS 'years inactive'
FROM user_groups, revision, actor
WHERE ug_group='bot' AND rev_actor=actor_id AND actor_user IS NOT NULL AND act... | {"resultsets": [{"headers": ["title"], "rowcount": 12577}], "runningtime": "20.29"} | nlwiki |
Distinct Wikipedia article subjects (estimation) | Number of Wikidata items with at least one Wikipedia sitelink that does not contain a colon (cf. https://mas.to/@vrandecic/109971782350619380). | SELECT COUNT(DISTINCT ips_item_id)
FROM wb_items_per_site
WHERE ips_site_id NOT IN ('wikidatawiki')
AND ips_site_page NOT LIKE '%:%'
| {"resultsets": [{"headers": ["title"], "rowcount": 3050}], "runningtime": "17.72"} | wikidatawiki_p |
Wikhttps://quarry.wmcloud.org/i Loves Folklore 2023 in Ukraine Participants | null | SELECT A.actor_name, COUNT(1) as files
FROM commonswiki_p.image I
JOIN commonswiki_p.page P ON I.img_name = P.page_title
JOIN commonswiki_p.categorylinks CL ON P.page_id = CL.cl_from
JOIN commonswiki_p.actor A ON I.img_actor = A.actor_id
WHERE P.page_namespace = 6
AND CL.cl_to = "Images_from_Wiki_Loves_Folklore_202... | {"connection_id": 166267329} | commonswiki_p |
Wikhttps://quarry.wmcloud.org/i Loves Folklore 2023 in Ukraine Participants | null | SELECT A.actor_name, COUNT(1) as files
FROM commonswiki_p.image I
JOIN commonswiki_p.page P ON I.img_name = P.page_title
JOIN commonswiki_p.categorylinks CL ON P.page_id = CL.cl_from
JOIN commonswiki_p.actor A ON I.img_actor = A.actor_id
WHERE P.page_namespace = 6
AND CL.cl_to = "Images_from_Wiki_Loves_Folklore_202... | {"resultsets": [{"headers": ["actor_name", "COUNT(*)"], "rowcount": 25}], "runningtime": "0.41"} | commonswiki_p |
Userspace pages of non-existent users (no talk, no subpages) | null | SELECT CONCAT('https://en.wikipedia.org/wiki/User:', p.page_title) AS URL
FROM enwiki_p.page p
LEFT JOIN enwiki_p.user u ON REPLACE(p.page_title, '_', ' ') = u.user_name
WHERE p.page_namespace = 2
AND u.user_id IS NULL
AND p.page_is_redirect = 0
AND NOT IS_IPV4(p.page_title) -- Exclude IPv4
AND NOT IS_IPV6(p.page_title... | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 31}], "runningtime": "0.89"} | enwiki_p |
orphaned talks | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
... | {"resultsets": [{"headers": ["Page", "Count"], "rowcount": 1}], "runningtime": "7.53"} | enwiki_p |
Articles created primarily by Lugnuts | This query produces a list of small articles that are created and primarily contain content by Lugnuts. This is currently defined as articles with a page length under 4000 with Lugnuts contributing more than half the content, but can be adjusted. In addition, redirects, lists and disambiguation pages are excluded. | WITH creations as (SELECT page_title, page_id, rev_timestamp, page_len, rev_len
FROM revision_userindex
JOIN page ON page_id = rev_page
WHERE rev_parent_id = 0
AND page_is_redirect = 0
AND rev_actor = 482
AND page_namespace = 0)
SELECT page_title, rev_timestamp
FROM (SELECT creations.page_title, creations.page... | {"resultsets": [{"headers": ["page_title", "linter_errors"], "rowcount": 1000}], "runningtime": "6.81"} | enwiki_p |
Lugnuts Olympian Biographies | null | WITH articles AS (
SELECT DISTINCT(Article.page_title), Article.page_id, rev_timestamp, rev_len as "InitialSize", Article.page_len as "CurrentSize"
FROM revision_userindex
JOIN page AS Article ON Article.page_id = rev_page AND Article.page_namespace = 0
JOIN page AS Talk ON Article.page_title = Talk.page_title AND T... | {"resultsets": [{"headers": ["page_title", "linter_errors"], "rowcount": 2000}], "runningtime": "7.72"} | enwiki_p |
Page creations by autopatrolled users | Entries in the enwiki page creation log from users that have the autoreviewer user right, since 2022. | SELECT
log_timestamp AS timestamp,
actor_name AS user,
log_namespace AS namespace,
log_title AS page,
comment_text AS summary
FROM logging_userindex
JOIN comment_logging ON log_comment_id = comment_id
JOIN actor_logging ON log_actor = actor_id
JOIN user_groups ON actor_user = ug_user
WHERE
log_ty... | {"resultsets": [{"headers": ["page_title", "linter_errors"], "rowcount": 5000}], "runningtime": "10.43"} | enwiki |
Page creations by autopatrolled users that were deleted | Entries in the enwiki page creation log from users that have the autoreviewer user right that also appear in the deletion log. | SELECT *
FROM logging_userindex
JOIN comment_logging ON log_comment_id = comment_id
JOIN actor_logging ON log_actor = actor_id
JOIN user_groups ON actor_user = ug_user
WHERE
(log_type = 'create' OR
log_type = 'delete') AND
ug_group = 'autoreviewer'
LIMIT 100 | {"resultsets": [{"headers": ["page_title"], "rowcount": 0}], "runningtime": "0.06"} | enwiki |
PAWS links to update on Meta | List of pages with PAWS links on Meta that might need updated per https://phabricator.wikimedia.org/T328842 | SELECT
p.page_namespace AS page_namespace,
p.page_title AS page_title,
el_from AS paws_link
FROM externallinks el
INNER JOIN page p
ON (el.el_from = p.page_id)
WHERE
el_to LIKE '%public.paws.wmcloud.org%'
ORDER BY
page_namespace,
page_title | {"resultsets": [{"headers": ["user_talk"], "rowcount": 0}], "runningtime": "0.05"} | apiportalwiki_p |
trwiki kategorisiz maddeler | null | SELECT CONCAT(page_title) AS page_title_formatted
FROM page
WHERE page_namespace = 0
AND page_is_redirect = 0
AND page_id NOT IN (
SELECT p.page_id FROM page p
INNER JOIN categorylinks cl ON cl.cl_from = p.page_id
INNER JOIN page p2 ON cl.cl_to = p2.page_title AND p2.page_namespace = 14 -- 14 = Category
LEFT J... | {"resultsets": [{"headers": ["user_talk"], "rowcount": 1571}], "runningtime": "2109.69"} | trwiki_p |
Bad disambiguation page titles (eswiki) | Disambiguation pages with a superfluous " (desambiguación)" suffix (eswiki). | use eswiki_p;
select page_title as main_title
from (page join redirect on page_id = rd_from)
where page_namespace = 0 and rd_title = concat(page_title, '_(desambiguación)');
| {"resultsets": [{"headers": ["edits", "edits_per_day", "actor_name", "user_editcount"], "rowcount": 7}, {"headers": ["avg_edits_per_day"], "rowcount": 1}, {"headers": ["edits", "edits_per_day", "actor_name", "user_editcount"], "rowcount": 9}, {"headers": ["avg_edits_per_day"], "rowcount": 1}], "runningtime": "0.24"} | eswiki |
Wikhttps://quarry.wmcloud.org/i Loves Folklore 2023 in Ukraine Participants | null | SELECT A.actor_name, COUNT(1) as files
FROM commonswiki_p.image I
JOIN commonswiki_p.page P ON I.img_name = P.page_title
JOIN commonswiki_p.categorylinks CL ON P.page_id = CL.cl_from
JOIN commonswiki_p.actor A ON I.img_actor = A.actor_id
WHERE P.page_namespace = 6
AND CL.cl_to = "Images_from_Wiki_Loves_Folklore_202... | {"connection_id": 129676291} | commonswiki_p |
Highest edit count (**wiki, last 30 days) | null | SET @rev = (SELECT MIN(rev_id)
FROM revision
WHERE rev_timestamp > DATE_FORMAT(DATE_ADD(NOW(), INTERVAL -30 DAY), "%Y%m%d%H%i%s"));
SELECT COUNT(*) AS 'Edits',
actor_name AS `User`,
ug_group AS `Rights`,
page_lang AS `Lang`
FROM revision_userindex
JOIN actor_revision ON rev_actor = a... | {"resultsets": [{"headers": ["title", "count"], "rowcount": 16}], "runningtime": "0.08"} | wikidatawiki_p |
Controversial pages on enwiki | Main namespace pages that have the template 'Template:Controversial' in their talk page | SELECT
page_title
FROM linktarget
LEFT JOIN templatelinks ON lt_id = tl_target_id
LEFT JOIN page ON tl_from = page_id
WHERE lt_namespace = 10 -- Template:
AND lt_title = 'Controversial'
; | {"resultsets": [{"headers": ["Page", "Count"], "rowcount": 0}], "runningtime": "1.23"} | enwiki |
Dab pages with only one link | null | SELECT page_title, pl_title, COUNT(*) as links
FROM page
JOIN pagelinks ON pl_from = page_id
JOIN categorylinks ON page_id = cl_from AND cl_to = "All_disambiguation_pages"
WHERE page_namespace = 0
AND page_is_redirect = 0
AND pl_namespace = 0
GROUP BY page_title
HAVING links < 2 | {"connection_id": 129906002} | enwiki_p |
Unreviewed pages whose most recent revision is an undo | null | select page_title as Page, rev_timestamp as Timestamp
from
(select page_title, max(rev_id) as rev_id, max(rev_timestamp) as rev_timestamp
from pagetriage_page
join page on ptrp_page_id = page_id
join revision on rev_page = page_id
where ptrp_reviewed=0 and page_namespace=0
group by rev_page
) x
... | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 91}], "runningtime": "4.43"} | enwiki |
Reviewer stats by time interval (huwiki) | FlaggedRevs reviewer (patroller) stats / ranking based on actions in the last 30 days. | use huwiki_p;
SELECT
CONCAT(ROW_NUMBER() OVER(ORDER BY count(*) DESC),'.') AS '#',
user_name as 'Szerkesztő',
count(*) as 'Ellenőrzések száma az időszakban'
FROM
logging
JOIN actor ON log_actor = actor_id
JOIN user ON actor_user = user_id
WHERE
log_type = 'review'
AND log_action IN ('approve', 'a... | {"resultsets": [{"headers": ["replace(pl_title,\"_\",\" \")"], "rowcount": 5}, {"headers": ["actor_id", "actor_user", "actor_name"], "rowcount": 1}, {"headers": ["user_id", "user_name", "user_real_name", "user_password", "user_newpassword", "user_email", "user_touched", "user_token", "user_email_authenticated", "user_e... | huwiki_p |
Oldest last-edited pages | Pages with the oldest last-edited timestamp, excluding disambiguation and redirects. | SELECT
page.page_namespace AS namespace,
revision.rev_page AS page,
page.page_title AS title,
MAX(revision.rev_timestamp) AS latest_edit
FROM page LEFT JOIN revision ON (revision.rev_page = page.page_id)
WHERE page.page_namespace = 0 AND page.page_is_redirect = 0 AND revision.rev_timestamp like '2019%'
GROUP... | {"resultsets": [{"headers": ["comment_text", "COUNT(logging.log_type)"], "rowcount": 1}], "runningtime": "3.13"} | arwiki_p |
Articles created by autopatrolled in the last year, deleted as BLPPROD | null | SELECT Lc.log_title AS "Title created", Lc.log_timestamp AS "Time created", actor_name AS "Editor created",
Ld.log_title AS "Title deleted", Ld.log_timestamp AS "Time deleted", comment_text AS "Edit summary"
FROM user_groups
JOIN actor_logging ON actor_user=ug_user
JOIN logging_userindex Lc ON Lc.log_actor=actor... | {"resultsets": [{"headers": ["cnt"], "rowcount": 1}], "runningtime": "3.17"} | enwiki_p |
Articles created by autopatrolled in the last year, deleted as BLPPROD | null | SELECT Lc.log_title AS "Title created", Lc.log_timestamp AS "Time created", actor_name AS "Editor created",
Ld.log_title AS "Title deleted", Ld.log_timestamp AS "Time deleted", comment_text AS "Edit summary"
FROM user_groups
JOIN actor_logging ON actor_user=ug_user
JOIN logging_userindex Lc ON Lc.log_actor=actor... | {"resultsets": [{"headers": ["log_title"], "rowcount": 468677}], "runningtime": "395.56"} | enwiki_p |
日本語の語彙素編集数(ユーザー別) | null | select actor_name, count(*) c
from revision_userindex
join page on rev_page=page_id
join actor_revision on rev_actor=actor_id
JOIN pagelinks ON page.page_id=pagelinks.pl_from
where page_namespace = 146
AND pagelinks.pl_title="Q5287" # French
group by actor_user
order by c desc; | {"resultsets": [{"headers": ["month_year", "user", "No_of_articles", "Bytes"], "rowcount": 15}], "runningtime": "0.13"} | wikidatawiki_p |
wikidata | null | SELECT * FROM wbt_property_terms
LIMIT 1000 | {"resultsets": [{"headers": ["editor", "accepts", "recent_edits", "Blocked"], "rowcount": 277}], "runningtime": "10.11"} | wikidatawiki_p |
test query for xref | Part of a plan to assign articles to WikiProjects using Naive Bayes.
This fork is a probe query for debugging the parent query.
| SELECT
pagecats.cl_to,
talkcats.cl_to,
-- REGEXP_EXTRACT(talkcats.cl_to, '(?WikiProject_|.*_importance_|.*_priority_|Unassessed)(.*)'), -- does not work
COUNT(*) AS my_count
FROM
page AS article
INNER JOIN page AS talk ON talk.page_title = article.page_title
INNER JOIN categorylinks AS pagecats ON pagecat... | {"resultsets": [{"headers": ["pl_title", "COUNT(*)"], "rowcount": 35}], "runningtime": "0.18"} | enwiki_p |
WikiProject to page category cross-reference, 1% scan | Part of a plan to assign articles to WikiProjects using Naive Bayes.
Still being worked on. Limited to just a few pages, for testing purposes. Sorting by all three result columns to make output more compressible later.
Now using modulo arithmetic to sub-sample the page table more uniformly. 1/1000 of the table ~= 6700... | SELECT
pagecats.cl_to,
talkcats.cl_to,
-- REGEXP_EXTRACT(talkcats.cl_to, '(?WikiProject_|.*_importance_|.*_priority_|Unassessed)(.*)'), -- does not work
COUNT(*) AS my_count
FROM
page AS article
INNER JOIN page AS talk ON talk.page_title = article.page_title
INNER JOIN categorylinks AS pagecats ON pagecat... | {"resultsets": [{"headers": ["file"], "rowcount": 209}], "runningtime": "0.63"} | enwiki_p |
Leere Kategorien (Chatgtp) | null | SELECT page_title
FROM page
WHERE page_namespace = 14 -- 14 ist der Namespace für Kategorien in Mediawiki
AND NOT EXISTS (
SELECT cl_from
FROM categorylinks
WHERE cl_to = page_title
)
| {"resultsets": [{"headers": ["User", "Registered", "Edit count", "Last edit", "Filter trip count", "Last filter trip"], "rowcount": 43}], "runningtime": "54.96"} | zuwiki_p |
مقالات بدون عنصر ويكي بيانات | null | use arwiki_p;
select page_title,page_id
from page
where page_namespace = 0
and page_is_redirect = 0
and page_title not like "%/%"
and page_id not in(select pp_page from page_props where pp_page = page_id and pp_propname = "wikibase_item")
/*أضف السطر التالي إذا كنت تود استثناء صفحات التوضيح أيضًا*/
/*and page_id not in... | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 92}], "runningtime": "2.01"} | arwiki_p |
Sanity check re Biographical articles without WP Biography tag | sanity check on parent query | SELECT
CONCAT("* [[",article.page_title, "]]") -- , talk.page_id AS talk_page_id
FROM
page AS article
LEFT JOIN page AS talk ON talk.page_title = article.page_title AND talk.page_namespace = 1 AND talk.page_is_redirect = 0
WHERE
-- article.page_id % 10 = 2
article.page_namespace = 0
AND article.page_is_red... | {"resultsets": [{"headers": ["pl_from", "pl_namespace", "pl_title", "pl_from_namespace"], "rowcount": 0}], "runningtime": "0.26"} | enwiki_p |
R3s probably invalid due to moves | null | set @months = 4;
set @decrementby = @months * 100000000;
select replace(concat("[[:{{subst:ns:",log_namespace,"}}:",replace(log_title,"_"," "),"]]"),":{{subst:ns:0}}:",":") as 'Page',
(select actor_name from actor_logging where actor_id=log_actor) as "Deleting admin",
comment_text as "Edit summary",
log_timestamp as "T... | {"resultsets": [{"headers": ["name", "none", "approve", "approve2", "approve2-i", "unapprove", "unapprove2", "total"], "rowcount": 3}], "runningtime": "10.61"} | enwiki_p |
نقاش ويكيبيديا:مشروع ويكي الصيانة/بدون إنترويكي (نسخة أولية) | null | SELECT
comment.comment_text AS "deleted_page",
revision_userindex.rev_timestamp AS "date_of_delete",
wb_items_per_site.ips_site_page AS "name_of_page"
FROM
(SELECT page_id, page_title FROM page WHERE page_namespace = 0) AS page
JOIN revision_userindex ON page.page_id = revision_userindex.rev_page
JOIN comment ON commen... | {"resultsets": [{"headers": ["count", "page_title"], "rowcount": 1000}], "runningtime": "60.26"} | wikidatawiki_p |
Peek one record from the page table | null | #select * from page p
#join revision r on p.page_latest = r.rev_id # 1140660562;
#where page_title ="Virat_Kohli" and page_namespace=0;
/*select * from page p
join revision r on p.page_latest=r.rev_id
where p.page_title='History_of_Afghanistan' and p.page_namespace=0;*/
select p.page_title, group_concat(c.cl_to), r.... | {"connection_id": 131308284} | enwiki |
Categories for United States television | null | select cat_id, cat_title from category where cat_title like 'Television%United%States%' order by cat_title; | {"resultsets": [{"headers": ["linter_cat", "page_namespace", "count(*)"], "rowcount": 36}, {"headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"], "rowcount": 7}, {"headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"], "rowcount": 13}], "runningtime": "0.52"} | enwiki |
Inconsistent page language and page suffix | List all pages which have a page content language different from subpage name which should be the explicit language code.
v2 | SELECT
t1.page_lang,
t1.page_namespace,
t1.page_title,
SUBSTRING_INDEX(t1.page_title, '/', -1) AS suffix, -- last subpage name
LEFT(t1.page_title, CHAR_LENGTH(t1.page_title) - LOCATE('/', REVERSE(t1.page_title))) AS base, -- page name without suffix
revtag.rt_page
FROM page AS t1
LEFT JOIN revtag
ON t1.page_id =... | {"resultsets": [{"headers": ["user_talk"], "rowcount": 0}], "runningtime": "0.05"} | metawiki_p |
jvws - Most edited pages on Kompetisi Wikisource 2023 | Number of edits in page namespace. | # https://jv.wikisource.org/wiki/Wikisumber:Kompetisi_Wikisumber_2023
SELECT
rc_title AS irah_irahan,
COUNT(*) AS gunggung
FROM recentchanges
WHERE rc_namespace = 250 # Mandhala aran: "Kaca:"
AND rc_timestamp BETWEEN '20230306000000' AND '20230320000000'
GROUP BY 1 ORDER BY 2 DESC
LIMIT 50; | {"resultsets": [{"headers": ["user_talk"], "rowcount": 0}], "runningtime": "0.05"} | jvwikisource_p |
jvws - Most active editors on Kompetisi Wikisource 2023 | Number of edits in page namespace. | # https://jv.wikisource.org/wiki/Wikisumber:Kompetisi_Wikisumber_2023
SELECT
actor.actor_name AS naraguna,
COUNT(actor.actor_name) AS gunggung
FROM page
JOIN revision ON page.page_id=revision.rev_page
JOIN actor ON revision.rev_actor=actor.actor_id
WHERE page.page_namespace=250 # Mandhala aran: "Kaca:"
AND revi... | {"resultsets": [{"headers": ["user_talk"], "rowcount": 0}], "runningtime": "0.03"} | jvwikisource_p |
Edit Warring Selected | null | WITH reverts AS (
SELECT DISTINCT(rev_actor), page_title, rev_id, rev_parent_id, page_id, LEFT(rev_timestamp, 8) AS date
FROM page
JOIN revision_userindex ON page_id = rev_page
LEFT JOIN change_tag ON ct_rev_id = rev_id AND (ct_tag_id = 1 OR ct_tag_id = 539)
WHERE rev_timestamp > 20200000000000
AND ct_tag_i... | {"resultsets": [{"headers": ["rev_actor", "rev_page", "page_title", "count(r.rev_id)"], "rowcount": 23743}], "runningtime": "24.60"} | enwiki_p |
Edit count Eastern Europe and Balkans articles summary | null | WITH RECURSIVE get_name_dabs (page_title, page_id, page_namespace, inc, parent_title, parent_namespace) AS (
(
SELECT page_title, page_id, page_namespace, 1, page_title, page_namespace
FROM page
WHERE page_title IN ("Eastern_Europe", "Balkans")
AND page_namespace = 14
)
UNION
(
SELECT chil... | {"resultsets": [{"headers": ["rev_actor", "rev_page", "page_title", "count(r.rev_id)"], "rowcount": 2034830}], "runningtime": "1830.21"} | enwiki_p |
روابط شقيقة | null | select (page_title) from
page
inner join page_props
on pp_page = page_id
where page_id not in (select tl_from from templatelinks where tl_from = page_id and tl_from_namespace = 0 and tl_title like "%كومنز%")
and page_id not in (select tl_from from templatelinks where tl_from = page_id and tl_from_namespace = 0 and tl... | {"resultsets": [{"headers": ["user_talk"], "rowcount": 0}], "runningtime": "0.05"} | arwiki_p |
名称含U+2500(制表符)之页面 | null | SELECT page.page_namespace as 命名空间编号, REPLACE(page.page_title, '_', ' ') as 页面名称 FROM page WHERE page.page_title like '%_─_%'; | {"resultsets": [{"headers": ["log_id", "log_type", "log_action", "log_timestamp", "log_actor", "log_namespace", "log_title", "log_comment_id", "log_params", "log_deleted", "log_page"], "rowcount": 0}], "runningtime": "0.04"} | zhwiki_p |
名称含U+2212(减号)之页面 | null | SELECT page.page_namespace as 命名空间编号, REPLACE(page.page_title, '_', ' ') as 页面名称 FROM page WHERE page.page_title like '%_−_%'; | {"resultsets": [{"headers": ["user_name", "count(log_id)"], "rowcount": 338}], "runningtime": "1.05"} | zhwiki_p |
名称含U+2500(制表符)之页面 | null | SELECT page.page_namespace as 命名空间编号, REPLACE(page.page_title, '_', ' ') as 页面名称 FROM page WHERE page.page_title like '%_―_%'; | {"resultsets": [{"headers": ["actor_name", "log_title", "log_timestamp", "comment_text"], "rowcount": 67}], "runningtime": "1.59"} | zhwiki_p |
Wikhttps://quarry.wmcloud.org/i Loves Folklore 2023 in Ukraine Participants | null | SELECT A.actor_name, COUNT(1) as files
FROM commonswiki_p.image I
JOIN commonswiki_p.page P ON I.img_name = P.page_title
JOIN commonswiki_p.categorylinks CL ON P.page_id = CL.cl_from
JOIN commonswiki_p.actor A ON I.img_actor = A.actor_id
WHERE P.page_namespace = 6
AND CL.cl_to = "Images_from_Wiki_Loves_Folklore_202... | {"resultsets": [{"headers": ["log_id", "log_type", "log_action", "log_timestamp", "log_actor", "log_namespace", "log_title", "log_comment_id", "log_params", "log_deleted", "log_page"], "rowcount": 1}], "runningtime": "0.06"} | commonswiki_p |
Which languages have the most terms with redundant head parameter | null | select
language, count as redundant_head_parameter_page_count,
entry_count,
round(cast(count as float) / cast(entry_count as float), 2) as fraction
from (
select language, count(*) as count
from (
select substring(cl_to, 1, instr(cl_to, '_terms_with_redundant_head_parameter') - 1) as language
from ... | {"resultsets": [{"headers": ["declined_then_deleted", "actor_name"], "rowcount": 172}], "runningtime": "20.63"} | enwiktionary |
Which languages have the most terms with redundant head parameter | null | select
language, count as redundant_head_parameter_page_count,
lemma_count, nonlemma_count,
round(cast(count as float) / cast(coalesce(lemma_count, 0) + coalesce(nonlemma_count, 0) as float), 2) as fraction
from (
select language, count(*) as count
from (
select substring(cl_to, 1, instr(cl_to, '_terms... | {"resultsets": [{"headers": ["count(*)"], "rowcount": 1}], "runningtime": "0.25"} | enwiktionary |
Redirects to disambiguation pages that are not dab pages | null | #SELECT concat( "[https://en.wikipedia.org/w/index.php?title={{urlencode:",
# p.page_title, "}}&redirect=no", p.page_title, "]" )
SELECT p.page_title
AS "Redirects to disambiguation pages that aren't disambiguation pages"
FROM redirect r
INNER JOIN page p ON p.page_id = r.rd_from
#FROM categorylinks
INNER ... | {"resultsets": [{"headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %", "Blocked"], "rowcount": 107}], "runningtime": "6.06"} | enwiki |
Redirects to disambiguation page where target is not a dab | null | SELECT Pf.page_namespace as "Fns", Pf.page_title AS "FromTitle", Pt.page_namespace as "Tns", Pt.page_title AS "ToTitle"
FROM linktarget
JOIN templatelinks ON tl_target_id=lt_id
JOIN redirect ON rd_from=tl_from
JOIN page Pt ON Pt.page_namespace=rd_namespace AND Pt.page_title=rd_title
JOIN page Pf ON Pf.page_id=tl_from
W... | {"resultsets": [{"headers": ["URL"], "rowcount": 0}], "runningtime": "31.98"} | enwiki_p |
Peek one record from the page table | null | select p.page_title, group_concat(c.cl_to), r.rev_timestamp from page p
join revision r on p.page_latest=r.rev_id
join categorylinks c on c.cl_from=p.page_id
where p.page_namespace=0
and p.page_is_redirect=0
and r.rev_timestamp<'20200101000000'
group by p.page_title;
#limit 2;
/*select p.page_title, group_concat(c... | {"resultsets": [{"headers": ["page_namespace", "page_id", "page_title", "page_is_redirect", "page_len"], "rowcount": 0}], "runningtime": "97.48"} | warwiki |
Thanks for 2022 simplewiki | Most thanked people in 2022 on simplewiki (based on 1234qwer's script that ran for 2021) | USE simplewiki_p;
SELECT log_title, COUNT(log_id)
FROM logging_logindex
WHERE
log_type = "thanks" AND
log_timestamp >= "20220000000000" AND log_timestamp <= "20230000000000"
GROUP BY log_title
ORDER BY 2 DESC | {"resultsets": [{"headers": ["num", "Page title"], "rowcount": 40075}], "runningtime": "31.27"} | simplewiki |
Vital 5 articles w/o short description | Pages not in [[Category:Articles with short description]] whose talk page is in [[Category:All Wikipedia level-5 vital articles]].
For [[WP:RAQ#Level-5 Vital Articles lacking short descriptions]] circa 1 June 2022. | SELECT main.page_namespace, main.page_title
FROM page AS talk
JOIN categorylinks AS v5
ON v5.cl_from = talk.page_id
AND v5.cl_to = 'All_Wikipedia_level-5_vital_articles'
JOIN page AS main
ON main.page_namespace = talk.page_namespace - 1
AND main.page_title = talk.page_title
LEFT JOIN categorylinks AS sdesc
ON... | {"resultsets": [{"headers": ["num", "Page title"], "rowcount": 295997}], "runningtime": "293.95"} | enwiki_p |
เหตุผลการลบที่ใช้บ่อยที่สุดในวิกิพีเดียภาษาไทยในช่วง 1 ปีที่ผ่านมา | null | SELECT
comment_text as reason,
COUNT(log_id) as "counter"
FROM
logging
JOIN
comment ON log_comment_id = comment_id
WHERE
log_type = 'delete'
AND log_action = 'delete'
# AND comment_text like '\[\[WP:CSD#%\|%\]\]%'
AND log_timestamp > ( NOW() - INTERVAL 12 MONTH )
GROUP BY
comment_text
ORDER BY
COUN... | {"resultsets": [{"headers": ["IP talkpage"], "rowcount": 1000}], "runningtime": "1999.93"} | thwiki_p |
Year-title articles not assigned to WikiProjects | Detects articles WITH YEAR-LIKE TITLES that are not assigned to any Wikiprojects, regardless of whether or not they have talk pages. | SELECT
article.page_title,
article.page_id,
talk.page_id AS talk_id
FROM
page AS article
LEFT JOIN page_props ON pp_page = article.page_id AND pp_propname = 'disambiguation'
LEFT JOIN page AS talk ON talk.page_title = article.page_title AND talk.page_namespace = 1 AND talk.page_is_redirect = 0
WHERE
arti... | {"connection_id": 131879720} | enwiki_p |
Single-character title articles not assigned to WikiProjects | Detects articles WITH SINGLE-CHARACTER TITLES that are not assigned to any Wikiprojects, regardless of whether or not they have talk pages. Hopefully this database treats "character" as meaning "Unicode code point", or there's not much point to this; this; https://mariadb.com/kb/en/pcre/#unicode-character-properties su... | SELECT
article.page_title,
article.page_id,
talk.page_id AS talk_id
FROM
page AS article
LEFT JOIN page_props ON pp_page = article.page_id AND pp_propname = 'disambiguation'
LEFT JOIN page AS talk ON talk.page_title = article.page_title AND talk.page_namespace = 1 AND talk.page_is_redirect = 0
WHERE
arti... | {"resultsets": [{"headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %", "Blocked"], "rowcount": 47}], "runningtime": "1.76"} | enwiki_p |
Numeric-title articles not assigned to WikiProjects | Detects articles WITH NUMBER-LIKE TITLES that are not assigned to any Wikiprojects, regardless of whether or not they have talk pages. | SELECT
article.page_title,
article.page_id,
talk.page_id AS talk_id
FROM
page AS article
LEFT JOIN page_props ON pp_page = article.page_id AND pp_propname = 'disambiguation'
LEFT JOIN page AS talk ON talk.page_title = article.page_title AND talk.page_namespace = 1 AND talk.page_is_redirect = 0
WHERE
arti... | {"resultsets": [{"headers": ["IP talkpage"], "rowcount": 1}], "runningtime": "7.71"} | enwiki_p |
Redirects created and only edited by a given actor | null | SELECT page_title
FROM page
JOIN revision_userindex AS main ON main.rev_page = page_id
LEFT JOIN revision AS others ON others.rev_page = page_id AND others.rev_actor != 223547206
WHERE page_is_redirect = 1
AND main.rev_actor = 223547206
AND main.rev_parent_id = 0
AND others.rev_actor IS NULL
AND page_latest != main.rev... | {"resultsets": [{"headers": ["user_name", "page_len", "page_id"], "rowcount": 2}], "runningtime": "6.93"} | enwiki_p |
Redirects to disambiguation pages that are not dab pages | null | #SELECT concat( "[https://en.wikipedia.org/w/index.php?title={{urlencode:",
# p.page_title, "}}&redirect=no", p.page_title, "]" )
SELECT concat("[https://en.wikipedia.org/w/index.php?title={{ns:", Pf.page_namespace, "}}:{{urlencode:", Pf.page_title,
"}}&redirect=no {{ns:", Pf.page_namespace, ... | {"resultsets": [{"headers": ["YEAR(cl_timestamp)", "COUNT(DISTINCT(cl_from))"], "rowcount": 8}], "runningtime": "120.28"} | enwiki |
All non-redirect, non-new page titles | null | SELECT page_title FROM page WHERE page_is_redirect = 0 AND page_is_new = 0 AND page_namespace = 0; | {"resultsets": [{"headers": ["year", "num_files"], "rowcount": 8}], "runningtime": "8.43"} | enwiki |
Unique participants to @ISA on Commons (all years) | null | SELECT actor_name, COUNT(*) AS count
FROM revision
JOIN comment_revision ON rev_comment_id=comment_id
JOIN page ON rev_page=page_id
JOIN actor_revision ON rev_actor=actor_id
JOIN change_tag ON rev_id=ct_rev_id
JOIN change_tag_def ON ct_tag_id=ctd_id
WHERE
(ct_tag_id=414 OR ct_tag_id=593)
AND rev_timestamp BETWEEN 2... | {"resultsets": [{"headers": ["lt_title"], "rowcount": 112}], "runningtime": "9.81"} | commonswiki_p |
Wikhttps://quarry.wmcloud.org/i Loves Folklore 2023 in Ukraine Participants | null | SELECT A.actor_name, COUNT(1) as files
FROM commonswiki_p.image I
JOIN commonswiki_p.page P ON I.img_name = P.page_title
JOIN commonswiki_p.categorylinks CL ON P.page_id = CL.cl_from
JOIN commonswiki_p.actor A ON I.img_actor = A.actor_id
WHERE P.page_namespace = 6
AND CL.cl_to = "Images_from_Wiki_Loves_Folklore_202... | {"connection_id": 132475769} | commonswiki_p |
Stale pages | null | select p.page_id, p.page_title, p.page_latest, r.rev_id, r.rev_timestamp from page p
join revision r on p.page_latest=r.rev_id
where p.page_namespace=0
and p.page_is_redirect=0
and r.rev_timestamp<'20200101000000'
#limit 5; | {"resultsets": [{"headers": ["Reviewer", "Redirect Reviews"], "rowcount": 8}], "runningtime": "6.12"} | mywiki |
Linter template error report | Create linter template errors report with total per template and pages in error using the template | SELECT linter_template, COUNT( * ) AS pages_using_template, SUM( linter_errors ) AS total_errors
FROM (
SELECT linter_template, COUNT( linter_page ) AS linter_errors
FROM linter
WHERE linter_template != ''
AND linter_template != 'multi-part-template-block'
GROUP BY linter_template, linter_page
) subset
GROUP... | {"resultsets": [{"headers": ["actor_name", "edits"], "rowcount": 1}], "runningtime": "2.48"} | test2wiki_p |
Short-title articles not assigned to WikiProjects | Detects articles WITH SHORT TITLES that are not assigned to any Wikiprojects, regardless of whether or not they have talk pages. | SELECT
article.page_title,
article.page_id,
talk.page_id AS talk_id
FROM
page AS article
LEFT JOIN page_props ON pp_page = article.page_id AND pp_propname = 'disambiguation'
LEFT JOIN page AS talk ON talk.page_title = article.page_title AND talk.page_namespace = 1 AND talk.page_is_redirect = 0
WHERE
arti... | {"resultsets": [{"headers": ["actor_name", "edits"], "rowcount": 1}], "runningtime": "0.38"} | enwiki_p |
Unusual-prefix articles not assigned to WikiProjects | Detects articles WITH TITLES THAT START WITH UNUSUAL CHARACTERS that are not assigned to any Wikiprojects, regardless of whether or not they have talk pages. | SELECT
article.page_title,
article.page_id,
talk.page_id AS talk_id
FROM
page AS article
LEFT JOIN page_props ON pp_page = article.page_id AND pp_propname = 'disambiguation'
LEFT JOIN page AS talk ON talk.page_title = article.page_title AND talk.page_namespace = 1 AND talk.page_is_redirect = 0
WHERE
arti... | {"connection_id": 132884855} | enwiki_p |
Find pages without recent revisions: my | null | select p.page_title as 'Title', group_concat(c.cl_to) as 'Categories', r.rev_timestamp as 'Last edit date',
concat('https://my.wikipedia.org/wiki/', p.page_title) as 'URL'
from page p
join revision r on p.page_latest=r.rev_id
join categorylinks c on c.cl_from=p.page_id
where p.page_namespace=0
and p.page_is_redirec... | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 31}], "runningtime": "2.33"} | mywiki |
Find pages without recent revisions: sw | null | select p.page_title as 'Title', group_concat(c.cl_to) as 'Categories', r.rev_timestamp as 'Last edit date',
concat('https://sw.wikipedia.org/wiki/', p.page_title) as 'URL'
from page p
join revision r on p.page_latest=r.rev_id
join categorylinks c on c.cl_from=p.page_id
where p.page_namespace=0
and p.page_is_redirec... | {"resultsets": [{"headers": ["concat(\"\u09aa\u09be\u09a4\u09be:\", page_title)", "page_len"], "rowcount": 11146}], "runningtime": "17.04"} | swwiki |
Find pages without recent revisions: arz | null | select p.page_title as 'Title', group_concat(c.cl_to) as 'Categories', r.rev_timestamp as 'Last edit date',
concat('https://arz.wikipedia.org/wiki/', p.page_title) as 'URL'
from page p
join revision r on p.page_latest=r.rev_id
join categorylinks c on c.cl_from=p.page_id
where p.page_namespace=0
and p.page_is_redire... | {"resultsets": [{"headers": ["page_id"], "rowcount": 4}], "runningtime": "36.85"} | arzwiki |
WhatLinksHere | null | SELECT
page.page_namespace, page.page_title
FROM
enwikisource_p.page page
INNER JOIN
enwikisource_p.pagelinks pagelinks ON page.page_id = pagelinks.pl_from
WHERE
pagelinks.pl_title LIKE 'Love_Songs/%'
GROUP BY page.page_title | {"resultsets": [{"headers": ["Number of articles"], "rowcount": 1}, {"headers": ["Number of issues"], "rowcount": 1}], "runningtime": "0.07"} | enwikisource_p |
A small sample from the thanks log | null | SELECT logging.*, page_namespace, page_title, actor_name, comment_text
FROM logging
LEFT JOIN page ON page_id=log_page
JOIN actor ON actor_id=log_actor
LEFT JOIN `comment` ON comment_id=log_comment_id
WHERE log_timestamp>'20230322' AND log_type='thanks'
LIMIT 10; | {"resultsets": [{"headers": ["timestamp", "concat(\"\",log_title)", "comment_text", "actor_name"], "rowcount": 48}], "runningtime": "186.24"} | enwiki_p |
WStaஈரோடுமாவட்டவரலாறு | This Query will provide the list of users who did edit on given book with its all pages. | Use tawikisource_p;
SET @w:=0;
select Concat("[[user:",actor_name,"|",actor_name, "]](", edits,")") as "இந்நூலின் மெய்ப்புப்பணியில் ஈடுபட்டோர்:<br/>" from (SELECT actor_name, count(*) as edits FROM revision join actor ON rev_actor = actor_id#total number of users edited in a book
WHERE rev_page IN (select p... | {"resultsets": [{"headers": ["cl_to"], "rowcount": 15}], "runningtime": "0.06"} | tawikisource_p |
WLM-UA participants FILM | null | SELECT CONCAT("# {{#target:User_talk:", actor_name, "|commons.wikimedia.org}}") as line
FROM revision r_prev
join categorylinks on rev_page = cl_from
join actor on rev_actor = actor_id and actor_user is not null
WHERE rev_parent_id = 0
and cl_to IN (
"Wiki Loves Monuments in Ukraine 2022 - Film"
)
GROUP BY actor_na... | {"resultsets": [{"headers": ["cl_to", "count(*)"], "rowcount": 382}], "runningtime": "0.44"} | commonswiki_p |
链入最少的电子游戏条目 (zhwiki) | null | WITH pages_vg AS (
WITH pages_vg_talk AS (
SELECT
page.page_namespace,
page.page_title
FROM
page
JOIN categorylinks ON cl_to IN (
'极高重要度电子游戏条目',
'高重要度电子游戏条目',
'中重要度电子游戏条目',
'低重要度电子游戏条目',
'未知重要度电子游戏条目'
)
AND cl_type = 'page'
AND ... | {"resultsets": [{"headers": ["basepage_title"], "rowcount": 105}], "runningtime": "0.33"} | zhwiki_p |
Wikhttps://quarry.wmcloud.org/i Loves Folklore 2023 in Ukraine Participants | null | SELECT A.actor_name, COUNT(1) as files
FROM commonswiki_p.image I
JOIN commonswiki_p.page P ON I.img_name = P.page_title
JOIN commonswiki_p.categorylinks CL ON P.page_id = CL.cl_from
JOIN commonswiki_p.actor A ON I.img_actor = A.actor_id
WHERE P.page_namespace = 6
AND CL.cl_to = "Images_from_Wiki_Loves_Folklore_202... | {"resultsets": [{"headers": ["actor_name", "rc_this_oldid", "comment_text"], "rowcount": 3}], "runningtime": "87.22"} | commonswiki_p |
orphaned talks | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
... | {"resultsets": [{"headers": ["Usertalk", "page_title", "linter_errors"], "rowcount": 2500}], "runningtime": "28.78"} | enwiki_p |
مستخدمين اليوم | null | /*
#select CONCAT('"',log_title,'",')
select log_title
from logging
where log_type in ("newusers")
and log_timestamp > DATE_SUB(NOW(), INTERVAL 1 day)
and log_title not in (
select page.page_title from categorylinks
inner join page on page.page_id = categorylinks.cl_from
where cl_to like "أسماء_مستخدمين_مخال... | {"resultsets": [{"headers": ["page_title"], "rowcount": 55}], "runningtime": "6.76"} | arwiki_p |
Uploaded while editing page on fi.wikipedia.org | null | SELECT
rc_timestamp, rc_title, rc_user_text, rc_comment
FROM recentchanges_compat WHERE rc_comment LIKE "%fi.wikipedia.org%" AND rc_source="mw.log"
ORDER BY rc_timestamp
; | {"resultsets": [{"headers": ["page_namespace", "page_id", "page_title", "page_is_redirect", "page_len"], "rowcount": 1}], "runningtime": "98.01"} | commonswiki_p |
All orphan no-licensed and non-free files on sq.wiki | null | #USE sqwiki_p;
SELECT CONCAT('# [[:File:', REPLACE(REPLACE(p.page_title, '"', '**DOUBLEQUOTE**'), '_', ' '), ']]') FROM page p
INNER JOIN categorylinks c1 ON p.page_id = c1.cl_from
LEFT JOIN imagelinks i ON p.page_title = i.il_to #AND (i.il_from_namespace = 0)
#LEFT JOIN categorylinks c2 ON p.page_id = c2.cl_from AND c... | {"resultsets": [{"headers": ["title", "count"], "rowcount": 4}], "runningtime": "0.06"} | sqwiki_p |
Find pages without recent revisions: ilo | null | select p.page_title as 'Title', group_concat(c.cl_to) as 'Categories', r.rev_timestamp as 'Last edit date',
concat('https://ilo.wikipedia.org/wiki/', p.page_title) as 'URL'
from page p
join revision r on p.page_latest=r.rev_id
join categorylinks c on c.cl_from=p.page_id
where p.page_namespace=0
and p.page_is_redire... | {"resultsets": [{"headers": ["log_id", "log_type", "log_action", "log_timestamp", "log_actor", "log_namespace", "log_title", "log_comment_id", "log_params", "log_deleted", "log_page"], "rowcount": 10}], "runningtime": "0.06"} | ilowiki |
Explicit deletions at midnight | null | select
distinct substring(log_timestamp, 1, 8)
from
logging_userindex
join actor on log_actor = actor_id
where
actor_name = "Explicit"
and log_type = "delete"
and log_action = "delete"
and log_timestamp like "20______0000%"
order by log_timestamp desc; | {"resultsets": [{"headers": ["user_name", "+\u0628\u0648\u062a", "+\u0625\u062f\u0627\u0631\u064a"], "rowcount": 4}], "runningtime": "0.19"} | enwiki |
Top Wikipedia User by Bytecounts (This month) | Verify each user's contribution here : https://quarry.wmflabs.org/query/54879 | select * /*sum(tdif)*/
from
(select
actor_name,
sum( cast(rc_new_len as int) - cast(rc_old_len as int)) tdif
from recentchanges_userindex
left join actor on rc_actor = actor_id
where rc_timestamp >= 20230301000000 and rc_timestamp <= 20230325000000 and rc_bot = 0 and (rc_source = 'mw.new' or rc_source='mw.edit')
... | {"resultsets": [{"headers": ["log_id", "log_timestamp", "user", "log_title", "log_params", "summary"], "rowcount": 100}], "runningtime": "2.40"} | idwiki_p |
Wikidata stats | null | select
rc_timestamp,
rc_user_text,
rc_source,
count(distinct(rc_this_oldid)) as c,
sum(rc_source="mw.edit") as edits,
sum(rc_source="mw.new") as creation,
count(distinct(user_id*(user_editcount>99))) as uc100,
count(distinct(user_id*(user_editcount>10)))-count(distinct(user_id*(user_... | {"resultsets": [{"headers": ["p", "p\u0422\u041c\u041f1", "p\u0422\u041c\u041f2", "new_text"], "rowcount": 1}], "runningtime": "0.06"} | wikidatawiki_p |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.