title
stringlengths 1
212
| description
stringlengths 1
4.39k
⌀ | query
stringlengths 1
65.5k
⌀ | extra_info
stringlengths 18
31.6k
| wikidb
stringlengths 4
26
⌀ |
---|---|---|---|---|
Sandbox2 | null | With adt AS (
SELECT
min(log_timestamp) as time_of_first_adminship,
log_title
from
logging
INNER JOIN actor ON actor_name = log_title
WHERE
logging.log_type = "rights"
AND logging.log_action = "rights"
/* AND log_timestamp > 20180000000000 */
AND logging.log_params REGEXP 'newgroups".*"sysop"'
and logging.log_title = "28bytes" #this line gets removed in iterating version
)
SELECT
COUNT(*)
FROM
revision
JOIN actor ON rev_actor = actor_id
JOIN user ON actor_user = user_id
JOIN adt ON log_title = actor_name
WHERE
user_name = '28bytes' #this line gets removed in iterating version
AND rev_timestamp > time_of_first_adminship | {"resultsets": [{"headers": ["cl_to", "count(*)"], "rowcount": 0}, {"headers": ["cl_to", "count(*)"], "rowcount": 32}, {"headers": ["cl_to", "count(*)"], "rowcount": 28}, {"headers": ["cl_to", "count(*)"], "rowcount": 35}, {"headers": ["cl_to", "count(*)"], "rowcount": 28}, {"headers": ["cl_to", "count(*)"], "rowcount": 32}, {"headers": ["cl_to", "count(*)"], "rowcount": 25}, {"headers": ["cl_to", "count(*)"], "rowcount": 28}, {"headers": ["cl_to", "count(*)"], "rowcount": 29}, {"headers": ["cl_to", "count(*)"], "rowcount": 21}, {"headers": ["cl_to", "count(*)"], "rowcount": 27}, {"headers": ["cl_to", "count(*)"], "rowcount": 31}, {"headers": ["cl_to", "count(*)"], "rowcount": 30}, {"headers": ["cl_to", "count(*)"], "rowcount": 31}, {"headers": ["cl_to", "count(*)"], "rowcount": 31}, {"headers": ["cl_to", "count(*)"], "rowcount": 32}, {"headers": ["cl_to", "count(*)"], "rowcount": 36}, {"headers": ["cl_to", "count(*)"], "rowcount": 20}, {"headers": ["cl_to", "count(*)"], "rowcount": 17}, {"headers": ["cl_to", "count(*)"], "rowcount": 17}], "runningtime": "196.97"} | enwiki_p |
最近30日有编辑的退休者 | 查询在用户页挂了{{Retired}}但最近30日有编辑的用户。由于技术限制,本查询结果也包含30日内挂了{{Retired}}就再也不回维基编辑的人。 | SELECT a.user_name, STR_TO_DATE(MAX(rev_timestamp), '%Y%m%d%H%i%s') last_edit_time
FROM revision_userindex r
INNER JOIN (
SELECT actor_id, u.user_name
FROM actor a
INNER JOIN (
SELECT user_id, u.user_name
FROM user u
INNER JOIN
(SELECT REPLACE(page_title, '_', ' ') user_name
FROM page p
INNER JOIN (SELECT templatelinks.tl_from pid
FROM templatelinks
INNER JOIN linktarget ON templatelinks.tl_target_id = linktarget.lt_id
WHERE linktarget.lt_title IN ('退休', 'Retired', 'Retirement') AND linktarget.lt_namespace = 10) user1 ON p.page_id = user1.pid
WHERE p.page_namespace = 2
AND p.page_title NOT LIKE '%/%') p ON u.user_name = p.user_name
) u ON a.actor_user = u.user_id
) a ON a.actor_id = r.rev_actor AND r.rev_timestamp >
CONVERT(DATE_FORMAT(DATE_SUB(CURRENT_TIMESTAMP(), INTERVAL 30 DAY),
'%Y%m%d%H%i%s'), UNSIGNED INTEGER) - 30 * 86400
GROUP BY a.user_name
ORDER BY last_edit_time DESC | {"resultsets": [{"headers": ["page_lang", "page_namespace", "page_title"], "rowcount": 165}], "runningtime": "0.26"} | zhwiki_p |
Get user's edit count at certain point in time | Runs faster than expected. Only 0.10 seconds. | SELECT COUNT(*)
FROM revision
JOIN actor ON rev_actor = actor_id
JOIN user ON actor_user = user_id
WHERE user_name = 'Novem Linguae' -- replace 'Novem Linguae' with a field name
AND rev_timestamp < 20210101000000 -- replace '20210101000000' with a field name | {"resultsets": [{"headers": ["contributors of this book:<br/>"], "rowcount": 15}], "runningtime": "0.09"} | enwiki |
knwiki main space edits list | null | SELECT DISTINCT page_title
FROM revision_userindex
JOIN page ON page_id = rev_page
WHERE rev_actor = (
SELECT actor_id
FROM actor
WHERE actor_name = 'రుద్రుడు'
)
AND page_namespace = 0 | {"resultsets": [{"headers": ["Talk page"], "rowcount": 0}], "runningtime": "0.05"} | knwiki |
bnwiki main space edits list | null | SELECT DISTINCT page_title
FROM revision_userindex
JOIN page ON page_id = rev_page
WHERE rev_actor = (
SELECT actor_id
FROM actor
WHERE actor_name = 'రుద్రుడు'
)
AND page_namespace = 0 | {"resultsets": [{"headers": ["Talk page"], "rowcount": 1}], "runningtime": "0.06"} | bnwiki |
huwiki:Articles created by bots | null | USE huwiki_p;
SELECT CONCAT('# [[', page_title ,']]') AS page_title, rev_timestamp, rev_user_text, ug_group, page_len
FROM page, revision, user_groups
WHERE rev_page = page_id
AND ug_user = rev_user
AND rev_parent_id = 0
AND page_namespace = 0
AND page_is_redirect = 0
AND ug_group LIKE '%bot%'
ORDER BY rev_timestamp | {"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_action", "rc_params"], "rowcount": 2465}], "runningtime": "2.84"} | huwiki_p |
Orphaned talk pages | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
FROM
page talkpage
WHERE
talkpage.page_title NOT LIKE '%/%'
AND
talkpage.page_namespace IN (1,11,15,101,119)
AND
NOT EXISTS (
SELECT
1
FROM
page mainpage
WHERE
mainpage.page_namespace=talkpage.page_namespace-1
AND
mainpage.page_title=talkpage.page_title
)
AND
NOT EXISTS (
SELECT
1
FROM
templatelinks
WHERE
talkpage.page_id=tl_from
AND
tl_target_id = 418257
)
LIMIT 100 | {"resultsets": [{"headers": ["count(DISTINCT rev_id)"], "rowcount": 1}, {"headers": ["count(rev_id)"], "rowcount": 1}], "runningtime": "0.42"} | enwiki_p |
Same as query 28286 but on spanish wikisource | null | use eswikisource_p;
SELECT CURRENT_DATE;
select concat("Página:", page_title), page_len, pr_page_id
from page, pr_index
#join categorylinks
#on cl_from = page_id
where
# cl_to = replace("মুদ্রণ সংশোধন করা হয়েছে", ' ', '_')
# and
page_namespace = 102
and page_len < 100
and page_len > 1
group by page_title, page_len
order by page_len; | {"resultsets": [{"headers": ["reviews", "rc_title", "accepted", "accept %", "declined", "decline %"], "rowcount": 1544}], "runningtime": "15.17"} | eswikisource |
WikiProject "Y" bug | null | select count(distinct pa_page_id) from page_assessments where pa_class like "Y%"; | {"resultsets": [{"headers": ["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", "pp_page", "pp_propname", "pp_value", "pp_sortkey"], "rowcount": 11465}], "runningtime": "41.65"} | enwiki_p |
WStaபாவாணர்_தமிழ்க்_களஞ்சியம்_1 | 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 page_id from page where page_title like "பாவாணர்_தமிழ்க்_களஞ்சியம்_1.pdf%")
group by actor_name) as tt
order by edits desc
LIMIT 100; | {"resultsets": [{"headers": ["page_title"], "rowcount": 1}], "runningtime": "72.35"} | tawikisource_p |
Translation pages with quotes in the title | null | select * from templatelinks
left join linktarget on lt_id = tl_target_id
left join page on page_id = tl_from
where lt_namespace = 10 and lt_title = 'trans-top' and page_title like '%"%'
limit 10; | {"resultsets": [{"headers": ["COUNT(DISTINCT page_title)"], "rowcount": 2}], "runningtime": "0.10"} | enwiktionary |
Edit counts by time of +sysop | Users who have been granted administrator since mid-2006, and their edit counts before and after promotion.
Edits are counted as live or deleted based on whether they're currently deleted *now*, not at the time of the rights grant.
The rights log didn't exist until 24 Dec 2004, didn't record which rights were changed until 22 Apr 2006, didn't do so consistently until (at least!) Aug 2006, and the format changed significantly on 19 Nov 2012. Users who have been sysopped more than once will intentionally have more than one row - a trivial example is Northamerica1000, who was sysopped, desysopped, and resysopped all in November 2014 - and early promotions are unavoidably omitted.
Pulling admin promotion dates out of logging necessarily finds their username at the time of promotion; pulling their edits can only be done with their current username. However, it looks like the *LOGS WERE CHANGED* in some cases (both with manual renames, as evidenced by the "Renamed user [gibberish]" entries, and with SUL, from the ~enwiki entries) - but it wasn't done consistently, which is why some accounts have very few edits counted. Sheesh. Accounts with no edits counted at *all* aren't shown, which is fixable but not worth the effort.
I continue to believe that the list of usernames and promotion timestamps really needs to be manually curated to answer the original question with any sort of accuracy - especially since I suspect the intent was to contrast the oldest promotions with the newest - but this should be good enough for a rough overview.
For [[WP:RAQ## of edits each admin had at the time of their RFA]] (how do you even wikilink a section name containing a number sign?) circa 7 Apr 2023. | WITH admins (a_timestamp, a_name, a_actor) AS
(
SELECT log_timestamp, actor_name, actor_id
FROM logging
JOIN actor_logging ON actor_name = REPLACE(log_title, '_', ' ')
WHERE log_type = 'rights'
AND log_action = 'rights'
AND ( -- pre-Nov-2012 format
(log_params LIKE '%\n%sysop%' -- new groups include sysop
AND log_params NOT LIKE '%sysop%\n%') -- old groups don't include sysop
OR -- post-Nov-2012 format
(log_params LIKE '%newgroups%sysop%' -- new groups include sysop
AND log_params NOT LIKE '%oldgroups%sysop%newgroups%') -- old groups don't include sysop
)
)
SELECT a_timestamp,
a_name,
SUM(edits_live_pre) AS edits_live_pre,
SUM(edits_deleted_pre) AS edits_deleted_pre,
SUM(edits_live_pre) + SUM(edits_deleted_pre) AS edits_total_pre,
SUM(edits_live_post) AS edits_live_post,
SUM(edits_deleted_post) AS edits_deleted_post,
SUM(edits_live_post) + SUM(edits_deleted_post) AS edits_total_post
FROM
(
SELECT a_timestamp,
a_name,
SUM(CASE WHEN rev_timestamp < a_timestamp THEN 1 ELSE 0 END) AS edits_live_pre,
SUM(CASE WHEN rev_timestamp < a_timestamp THEN 0 ELSE 1 END) AS edits_live_post,
0 AS edits_deleted_pre,
0 AS edits_deleted_post
FROM admins
JOIN revision ON rev_actor = a_actor -- revision_userindex *should* be indexed here and revision *shouldn't*, but the reverse is the case, and I have no idea why
GROUP BY a_timestamp, a_name
UNION
SELECT a_timestamp,
a_name,
0,
0,
SUM(CASE WHEN ar_timestamp < a_timestamp THEN 1 ELSE 0 END),
SUM(CASE WHEN ar_timestamp < a_timestamp THEN 0 ELSE 1 END)
FROM admins
JOIN archive_userindex ON ar_actor = a_actor
GROUP BY a_timestamp, a_name
) sq
GROUP BY a_timestamp, a_name; | {"resultsets": [{"headers": ["lt_title", "antal"], "rowcount": 85}, {"headers": ["lt_title", "antal"], "rowcount": 78}], "runningtime": "3.83"} | enwiki_p |
Orphaned talk pages | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
FROM
page talkpage
WHERE
talkpage.page_title NOT LIKE '%/%'
AND
talkpage.page_namespace IN (1,11,15,101,119)
AND
NOT EXISTS (
SELECT
1
FROM
page mainpage
WHERE
mainpage.page_namespace=talkpage.page_namespace-1
AND
mainpage.page_title=talkpage.page_title
)
AND
NOT EXISTS (
SELECT
1
FROM
templatelinks
WHERE
talkpage.page_id=tl_from
AND
tl_target_id = 418257
)
LIMIT 100 | {"resultsets": [{"headers": ["actor_id", "actor_user", "actor_name", "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_action", "rc_params"], "rowcount": 5446}], "runningtime": "6.24"} | enwiki_p |
templatelinks to be deleted from enwiki | null | SELECT CONCAT("Template:",page_title,"")
FROM page
WHERE page_namespace = 10
AND page_title RLIKE "Wikiproject"
#ORDER BY RAND()
LIMIT 3999;
| {"resultsets": [{"headers": ["concat(\"[[user:\", user_name, \"]]\")", "page_len", "page_id", "ecount"], "rowcount": 1000}], "runningtime": "31.98"} | enwiki_p |
Orphaned talk pages | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
FROM
page talkpage
WHERE
talkpage.page_title NOT LIKE '%/%'
AND
talkpage.page_namespace IN (1,11,15,101,119)
AND
NOT EXISTS (
SELECT
1
FROM
page mainpage
WHERE
mainpage.page_namespace=talkpage.page_namespace-1
AND
mainpage.page_title=talkpage.page_title
)
AND
NOT EXISTS (
SELECT
1
FROM
templatelinks
WHERE
talkpage.page_id=tl_from
AND
tl_target_id = 418257
)
LIMIT 100 | {"resultsets": [{"headers": ["page_title", "rev_timestamp", "Wikidata"], "rowcount": 5}], "runningtime": "24.74"} | enwiki_p |
Images in certain category by the date of upload | null | SELECT DISTINCT I.img_name, I.img_timestamp, U.user_name
FROM commonswiki_p.image I
LEFT JOIN commonswiki_p.page P ON I.img_name=P.page_title
LEFT JOIN commonswiki_p.categorylinks CL ON P.page_id=CL.cl_from
LEFT JOIN commonswiki_p.actor A ON I.img_actor=A.actor_id
LEFT JOIN commonswiki_p.user U ON A.actor_user=U.user_id
AND P.page_namespace = 6
AND CL.cl_to LIKE "Images from Wiki Loves Folklore 2022 in India"
ORDER BY I.img_timestamp DESC | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 31}], "runningtime": "0.45"} | commonswiki_p |
Users contributions in Wikimedia Commons | Contributions to Wikimedia Commons | SELECT r1.rev_timestamp, actor_name, page_title, comment_text, page_id, cl.cl_to
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title # Join images table
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id # Join categorylinks table
WHERE actor_name IN ('Gnoeee')
AND r1.rev_timestamp > '20230320183100'
AND r1.rev_timestamp < '20230331183000'
# AND cl.cl_to = 'NSS College of Engineering, Palakkad' # Filter by specific category
ORDER BY r1.rev_timestamp desc;
| {"connection_id": 101602051} | commonswiki_p |
ويكيبيديا:إحصاءات العام/2022|عدد عمليات منح الصلاحيات | null | select COUNT(*) from logging where log_timestamp BETWEEN 20220101000000 AND 20231231235959 and log_action = "rights"
| {"resultsets": [{"headers": ["page_title", "page_id", "page_len_today", "categorylinks_today", "created_at", "count_rev_today", "rev_len_today"], "rowcount": 1}], "runningtime": "0.06"} | arwiki_p |
المستخدمون الـ 5 الأوائل في إضافة نصوص|ويكيبيديا:مستخدمو الأسبوع الأكثر نشاطا | null | SELECT actor_name, SUM(CAST(rev.rev_len as signed)-CAST(parent.rev_len as signed)) AS byte_count, COUNT(rev.rev_id) as edit_count
FROM revision rev
INNER JOIN actor on rev.rev_actor = actor_id
JOIN revision parent
ON rev.rev_parent_id = parent.rev_id
INNER JOIN comment_revision on rev.rev_comment_id = comment_id
JOIN page
ON page_id = parent.rev_page
WHERE page_namespace = 0
and comment_text like "%رجوع%"
and comment_text like "%استرجاع%"
AND rev.rev_timestamp BETWEEN 20221231000000 AND 20230165000000
AND parent.rev_timestamp BETWEEN 20221231000000 AND 20230165000000
and ucase(actor_name) not like ucase("%BOT") COLLATE utf8_general_ci
and actor_name not like "%بوت%" collate utf8_general_ci
and actor_name Not IN (SELECT user_name
FROM user_groups
INNER JOIN user ON user_id = ug_user
WHERE ug_group = "bot")
and actor_name IN (SELECT user_name FROM user_groups INNER JOIN user ON user_id = ug_user WHERE ug_group = 'editor' or 'autoreview')
GROUP BY actor_name
having byte_count > 0
ORDER BY byte_count DESC
LIMIT 50; | {"resultsets": [{"headers": ["page_title", "page_namespace"], "rowcount": 1}], "runningtime": "0.05"} | arwiki_p |
Most active Incubator users in ruwiki per year | null | SELECT
actor_name,
COUNT(*) AS edit_count,
MIN(FLOOR(rev_timestamp / 10000000000)) AS first_year,
MAX(FLOOR(rev_timestamp / 10000000000)) AS last_year
FROM revision
JOIN page ON page_id = rev_page
JOIN actor ON rev_actor = actor_id
WHERE (
page_namespace IN (102, 103) -- Инкубатор: и Обсуждение Инкубатора:
OR page_id IN (
SELECT page_id
FROM page
WHERE page_namespace = 104
AND page_title LIKE "Инкубатор%"
) -- Проект:Инкубатор/...
) AND page_id != 8774484 -- Инкубатор:Песочница
GROUP BY rev_actor
ORDER BY COUNT(*) DESC | {"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_action", "rc_params", "comment_id", "comment_hash", "comment_text", "comment_data"], "rowcount": 2516}], "runningtime": "14.11"} | ruwiki_p |
Active Incubator users in ruwiki | null | SELECT
actor_name,
COUNT(*) AS edit_count,
MIN(FLOOR(rev_timestamp / 10000000000)) AS first_year,
MAX(FLOOR(rev_timestamp / 10000000000)) AS last_year
FROM revision
JOIN page ON page_id = rev_page
JOIN actor ON rev_actor = actor_id
WHERE (
page_namespace IN (102, 103) -- Инкубатор: и Обсуждение Инкубатора:
OR page_id IN (
SELECT page_id
FROM page
WHERE page_namespace = 104
AND page_title LIKE "Инкубатор%"
) -- Проект:Инкубатор/...
) AND page_id != 8774484 -- Инкубатор:Песочница
GROUP BY rev_actor
HAVING
last_year = 2023
AND first_year < 2023
AND edit_count > 50
ORDER BY edit_count DESC | {"resultsets": [{"headers": ["pi_property_id", "pi_type", "pi_info"], "rowcount": 0}], "runningtime": "0.05"} | ruwiki_p |
Most pending changes accepts (last 30 days) | 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'
AND DATEDIFF(NOW(), log_timestamp) < 30
GROUP BY log_actor
ORDER BY manual_accept_count DESC
LIMIT 1000 | {"connection_id": 183904423} | enwiki |
redirect | null | SELECT CONCAT("Template:",page_title,"")
FROM page
WHERE page_namespace = 10
AND page_is_redirect = 1
ORDER BY page_title
#ORDER BY RAND()
LIMIT 30000;
| {"resultsets": [{"headers": ["pl_title", "COUNT(*)"], "rowcount": 3}], "runningtime": "0.12"} | enwiki_p |
User Edits to Files in Commons under Specific Categories | Edits made by users participating in Women's Month Datathon on Commons under Specific Categories with the Comments | SELECT r1.rev_timestamp, actor_name, page_title, comment_text, page_id, cl.cl_to
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('Ayshamarjana','Anupamdutta73','Joy sagar Murmu','Sridhar G',
'Meenakshi nandhini','Rajasekhar1961','Sanu N','Mulkh Singh',
'कन्हाई प्रसाद चौरसिया','आर्या जोशी','Kavitha G. Kana','Bijendra Hansda Purudhu',
'J ansari','Kwameghana','Filipinayzd','Gnoeee','Aishik Rehman','Obaid Raza',
'பிரயாணி','कल्पनाशक्ती','Meghdhanu','Sukeerti.Bhopal', 'Salil Kumar Mukherjee',
'~aanzx', 'Ssgapu22', 'K.Venkataramana', 'Kuldeepburjbhalaike', 'Chinmayee_Mishra',
'Kasyap', 'Gabiruban', 'Official Brar harry', 'Simranjeet Sidhu', 'KINNERA ARAVIND')
AND r1.rev_timestamp > '20230320233000'
AND r1.rev_timestamp < '20230331233000'
AND (cl.cl_to LIKE 'Images_from_Wiki_Loves_Folklore_2020_in_India'
OR cl.cl_to LIKE 'Images_from_Wiki_Loves_Folklore_2021_in_India'
OR cl.cl_to LIKE 'Images_from_Wiki_Loves_Folklore_2022_in_India' ) # Filter by specific category
AND (comment_text LIKE '%wbsetlabel-add:1%' #Captions Added
OR comment_text LIKE '%wbsetlabel-set:1%' #Captions Changed
OR comment_text LIKE '%wbeditentity-update:0%' #Statements updated
OR comment_text LIKE '%wbcreateclaim-create:1%' #Statements created/updated
OR comment_text LIKE '%wbsetclaim-create:2%' #Statements Created
OR comment_text LIKE '%wbsetclaim-update:2%' #Statements Updated
OR comment_text LIKE 'added [[Category:%') #Added Category
ORDER BY r1.rev_timestamp desc; | {"resultsets": [{"headers": ["CONCAT(\"Template:\",page_title)"], "rowcount": 52}], "runningtime": "0.14"} | commonswiki_p |
Seltsames DEFAULTSORT | null | SELECT page_title, pp_value
FROM page, page_props
WHERE page_id = pp_page
AND page_namespace = 0
AND pp_propname = 'defaultsort'
AND pp_value NOT RLIKE '^[a-zA-Z0-9 #!]' | {"resultsets": [{"headers": ["page_title", "page_id", "page_len_today", "created_at", "count_rev_today", "count_rev_before_event_day", "count_rev_event_day", "count_rev_event_week", "count_rev_event_month", "rev_len_before_event_day", "prop_minor_before_event_day"], "rowcount": 1}], "runningtime": "0.04"} | dewiki_p |
Peek at wikilove_log | It's all barnstars. Thanks must be stored somewhere else. | SELECT *
FROM wikilove_log
JOIN user ON wll_receiver = user_id
WHERE user_name LIKE '%bot%'
LIMIT 1000 | {"connection_id": 141014050} | enwiki |
Peek at thanks log | null | SELECT log_title as receiver
FROM logging_logindex
WHERE log_action = 'thank'
LIMIT 1000 | {"resultsets": [{"headers": ["count(*)", "month"], "rowcount": 58}], "runningtime": "95.98"} | enwiki |
Most thanked bots | The result set is small because you can't thank accounts with the bot flag. Must be a feature of Extension:Thanks. | SELECT log_title as receiver, COUNT(*)
FROM logging_logindex
WHERE log_action = 'thank' AND (
log_title LIKE '%bot%' OR
log_title LIKE '%Bot%'
)
GROUP BY log_title
ORDER BY COUNT(*) DESC | {"resultsets": [{"headers": ["count(*)", "month"], "rowcount": 29}], "runningtime": "126.27"} | enwiki |
Number of thanks received by a specific user | null | SELECT log_title as receiver, COUNT(*)
FROM logging_logindex
WHERE log_action = 'thank' AND (
log_title = 'Novem_Linguae' -- don't forget underscore for space
)
GROUP BY log_title
ORDER BY COUNT(*) DESC | {"resultsets": [{"headers": ["page_title"], "rowcount": 3268}], "runningtime": "5.27"} | enwiki |
Wikilink im Artikel führt via Weiterleitung zum Ausgangsartikel | null | SELECT P.page_title AS Artikel, W.page_title AS "Weiterleitung im Kreis herum"
FROM page AS P, pagelinks, page AS W, redirect
WHERE P.page_namespace = 0
AND P.page_is_redirect = 0
AND pl_from = P.page_id
AND W.page_title = pl_title
AND W.page_namespace = pl_namespace
AND pl_namespace = 0
AND rd_from = W.page_id
AND rd_title = P.page_title
AND rd_namespace = P.page_namespace
| {"resultsets": [{"headers": ["count(*)", "month"], "rowcount": 6}], "runningtime": "100.26"} | dewiki_p |
Redirects to Arabic entries | null | select
redirect_page.page_namespace as redirect_namespace,
redirect_page.page_title as redirect_title,
entry_page.page_namespace as entry_namespace,
entry_page.page_title as entry_title
from categorylinks
left join page as entry_page on entry_page.page_id = cl_from
left join redirect on rd_namespace = entry_page.page_namespace and rd_title = entry_page.page_title
left join page as redirect_page on redirect_page.page_id = rd_from
where (cl_to like 'Arabic\_lemmas' or cl_to like 'Arabic\_non-lemma\_forms')
and rd_from is not null
order by redirect_namespace asc, redirect_title asc; | {"resultsets": [{"headers": ["\u0627\u0644\u062a\u0635\u0646\u064a\u0641", "\u0639\u062f\u062f \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0627\u062a"], "rowcount": 694}], "runningtime": "1.59"} | enwiktionary |
Articles in a category X whose talk pages are in category Y | null | SELECT article.page_title, talk.*
FROM page AS article
join page as talk on talk.page_namespace=1 and talk.page_title=article.page_title
join categorylinks as articleC on articleC.cl_from=article.page_id
WHERE article.page_is_redirect=0
AND article.page_namespace=0
and articleC.cl_to="Constituencies_of_the_Lok_Sabha"
limit 10; | {"resultsets": [{"headers": ["page_title", "page_id", "page_is_redirect"], "rowcount": 5}], "runningtime": "0.05"} | enwiki_p |
CNAs | null | SELECT
CONCAT ("User talk:", user_name) AS user_name
FROM
user
JOIN user_groups ON user_id = ug_user
WHERE
ug_group = 'centralnoticeadmin'
ORDER BY user_name ASC; | {"resultsets": [{"headers": ["pl_from", "pl_namespace", "pl_title", "pl_from_namespace"], "rowcount": 887}], "runningtime": "0.66"} | metawiki_p |
Redirects to Arabic entries | null | select
redirect_page.page_namespace as redirect_namespace,
redirect_page.page_title as redirect_title,
entry_page.page_namespace as entry_namespace,
entry_page.page_title as entry_title
from categorylinks
left join page as entry_page on entry_page.page_id = cl_from
left join redirect on rd_namespace = entry_page.page_namespace and rd_title = entry_page.page_title
left join page as redirect_page on redirect_page.page_id = rd_from
where (cl_to like 'Arabic\_lemmas' or cl_to like 'Arabic\_non-lemma\_forms')
and rd_from is not null
order by redirect_namespace asc, redirect_title asc; | {"resultsets": [{"headers": ["page_title", "page_id"], "rowcount": 1472}], "runningtime": "7.79"} | enwiktionary |
alla stubbar | null | select p.page_title, p.page_id, cl.cl_to
from svwiki_p.categorylinks cl
join svwiki_p.page p
on p.page_id = cl.cl_from
where p.page_namespace = 0
and cl.cl_to = 'Alla_stubbar'
order by p.page_title asc
limit 100 | {"resultsets": [{"headers": ["rc_user_text", "year", "c"], "rowcount": 2}], "runningtime": "12.09"} | svwiki |
Mallineiden lisäystilasto: perustiedot wikidatassa | null | SET @user_name_match = "Zache%";
SET @bot_name_match = "ZacheBot";
SET @comment_match = "%perusti%";
SET @first_rev_id_to_check = 21339849; -- somewhere early February 2023
SELECT
WEEK(STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s")) as week,
count(distinct(r1.rev_page)) as added_templates,
count(distinct(a3.actor_id)) as editors_before_adding_template_7d,
count(distinct(a2.actor_id)) as editors_after_adding_template_7d,
count(distinct(a5.actor_id)) as editors_before_adding_template_14d,
count(distinct(a4.actor_id)) as editors_after_adding_template_14d
FROM
page as p,
actor_revision as a1,
comment_revision,
revision as r1
-- 7d
LEFT JOIN revision as r2 ON
r2.rev_page=r1.rev_page
AND r2.rev_id>r1.rev_id
AND DATEDIFF(STR_TO_DATE(r2.rev_timestamp, "%Y%m%d%H%i%s"), STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s")) <8
LEFT JOIN actor_revision as a2 ON
r2.rev_actor=a2.actor_id
AND a2.actor_name NOT LIKE @user_name_match
LEFT JOIN revision as r3 ON
r3.rev_page=r1.rev_page
AND r3.rev_id<r1.rev_id
AND DATEDIFF(STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s"), STR_TO_DATE(r3.rev_timestamp, "%Y%m%d%H%i%s")) <8
LEFT JOIN actor_revision as a3 ON
r3.rev_actor=a3.actor_id
AND a3.actor_name NOT LIKE @user_name_match
-- 14d
LEFT JOIN revision as r4 ON
r4.rev_page=r1.rev_page
AND r4.rev_id>r1.rev_id
AND DATEDIFF(STR_TO_DATE(r4.rev_timestamp, "%Y%m%d%H%i%s"), STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s")) <15
LEFT JOIN actor_revision as a4 ON
r4.rev_actor=a4.actor_id
AND a4.actor_name NOT LIKE @user_name_match
LEFT JOIN revision as r5 ON
r5.rev_page=r1.rev_page
AND r5.rev_id<r1.rev_id
AND DATEDIFF(STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s"), STR_TO_DATE(r5.rev_timestamp, "%Y%m%d%H%i%s")) <15
LEFT JOIN actor_revision as a5 ON
r5.rev_actor=a5.actor_id
AND a5.actor_name NOT LIKE @user_name_match
WHERE
r1.rev_comment_id=comment_id
AND r1.rev_actor=a1.actor_id
AND a1.actor_name=@bot_name_match
AND r1.rev_id>@first_rev_id_to_check
AND r1.rev_page = page_id
AND page_namespace = 0
AND comment_text LIKE @comment_match
GROUP BY week
ORDER BY week | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 83}], "runningtime": "0.36"} | fiwiki_p |
Mallineiden lisäystilasto: auktoriteettitunnisteet | null | SET @user_name_match = "Ipr1%";
SET @bot_name_match = "Ipr1Bot";
SET @comment_match = "%auktorit%";
SET @first_rev_id_to_check = 21339849; -- somewhere early February 2023
SELECT
WEEK(STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s")) as week,
count(distinct(r1.rev_page)) as added_templates,
count(distinct(a3.actor_id)) as editors_before_adding_template_7d,
count(distinct(a2.actor_id)) as editors_after_adding_template_7d,
count(distinct(a5.actor_id)) as editors_before_adding_template_14d,
count(distinct(a4.actor_id)) as editors_after_adding_template_14d
FROM
page as p,
actor_revision as a1,
comment_revision,
revision as r1
-- 7d
LEFT JOIN revision as r2 ON
r2.rev_page=r1.rev_page
AND r2.rev_id>r1.rev_id
AND DATEDIFF(STR_TO_DATE(r2.rev_timestamp, "%Y%m%d%H%i%s"), STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s")) <8
LEFT JOIN actor_revision as a2 ON
r2.rev_actor=a2.actor_id
AND a2.actor_name NOT LIKE @user_name_match
LEFT JOIN revision as r3 ON
r3.rev_page=r1.rev_page
AND r3.rev_id<r1.rev_id
AND DATEDIFF(STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s"), STR_TO_DATE(r3.rev_timestamp, "%Y%m%d%H%i%s")) <8
LEFT JOIN actor_revision as a3 ON
r3.rev_actor=a3.actor_id
AND a3.actor_name NOT LIKE @user_name_match
-- 14d
LEFT JOIN revision as r4 ON
r4.rev_page=r1.rev_page
AND r4.rev_id>r1.rev_id
AND DATEDIFF(STR_TO_DATE(r4.rev_timestamp, "%Y%m%d%H%i%s"), STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s")) <15
LEFT JOIN actor_revision as a4 ON
r4.rev_actor=a4.actor_id
AND a4.actor_name NOT LIKE @user_name_match
LEFT JOIN revision as r5 ON
r5.rev_page=r1.rev_page
AND r5.rev_id<r1.rev_id
AND DATEDIFF(STR_TO_DATE(r1.rev_timestamp, "%Y%m%d%H%i%s"), STR_TO_DATE(r5.rev_timestamp, "%Y%m%d%H%i%s")) <15
LEFT JOIN actor_revision as a5 ON
r5.rev_actor=a5.actor_id
AND a5.actor_name NOT LIKE @user_name_match
WHERE
r1.rev_comment_id=comment_id
AND r1.rev_actor=a1.actor_id
AND a1.actor_name=@bot_name_match
AND r1.rev_id>@first_rev_id_to_check
AND r1.rev_page = page_id
AND page_namespace = 0
AND comment_text LIKE @comment_match
GROUP BY week
ORDER BY week | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 31}], "runningtime": "0.23"} | fiwiki_p |
Olabot Lili edits 2022 | On pl:wikt, User:Olafbot Lingualibre edits. | select
rev_id, rev_timestamp, comment_text
from revision
inner join comment on rev_comment_id = comment_id
inner join actor on rev_actor = actor_id
where
comment_text like "%audio|LL-Q%"
and actor_user = 10144# Olafbot
and rev_timestamp like "2022%" # in 2022
; | {"resultsets": [{"headers": ["rev_id", "rev_actor", "rev_timestamp", "rev_len", "rev_parent_id", "page_namespace", "page_id", "prefix"], "rowcount": 36}], "runningtime": "76.62"} | plwiktionary_p |
Query 14 | null | select user_id, user_name, user_registration, concat('https://en.wikipedia.org/wiki/Special:Contributions/', user_name)
from user
where user_name like '%1488%'
and user_editcount > 0
and user_registration > 20220101000000
; | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 83}], "runningtime": "0.32"} | enwiki |
名称中有en dash的页面 | null | SELECT page.page_namespace as 命名空间编号, REPLACE(page.page_title, '_', ' ') as 页面名称 FROM page WHERE page.page_title like '%–%' AND page.page_is_redirect = 0; | {"resultsets": [{"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 11}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 7}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 12}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 4}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 37}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 38}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 11}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}], "runningtime": "741.00"} | zhwiki_p |
Orphaned talk pages | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
FROM
page talkpage
WHERE
talkpage.page_title NOT LIKE '%/%'
AND
talkpage.page_namespace IN (1,11,15,101,119)
AND
NOT EXISTS (
SELECT
1
FROM
page mainpage
WHERE
mainpage.page_namespace=talkpage.page_namespace-1
AND
mainpage.page_title=talkpage.page_title
)
AND
NOT EXISTS (
SELECT
1
FROM
templatelinks
WHERE
talkpage.page_id=tl_from
AND
tl_target_id = 418257
)
LIMIT 100 | {"resultsets": [{"headers": ["page_namespace", "page_title"], "rowcount": 5}], "runningtime": "0.14"} | enwiki_p |
User:DatGuy Olympics GAs | List of GAs to be used when updating the "promote an eighth of the following articles to GA" TODO in User:DatGuy | SELECT page_title
FROM page
JOIN categorylinks ON page_id = cl_from
WHERE page_namespace = 0
AND cl_to = 'Nations_at_the_2016_Summer_Olympics'
-- exclude ones that were already done when the list was created
AND NOT (page_title REGEXP '^(Chad|East_Timor|Federated_States_of_Micronesia|Israel|Ivory_Coast|Kuwait|Maldives|Republic_of_the_Congo|Somalia|South_Sudan|Swaziland|Tanzania)')
AND page_title IN (
SELECT page_title
FROM page
JOIN categorylinks ON page_id = cl_from
WHERE page_namespace = 0
AND cl_to = 'Good_articles' OR cl_to = 'Featured_articles'
)
ORDER BY page_title;
| {"resultsets": [{"headers": ["line"], "rowcount": 0}], "runningtime": "0.04"} | enwiki_p |
Veracious 16.000 Commons campaign243@ISA | null | select now();
SELECT rev_id, rc_timestamp, actor_name, rc_title, comment_text
FROM recentchanges
LEFT JOIN comment ON comment.comment_id = recentchanges.rc_comment_id
LEFT JOIN actor on actor.actor_id = recentchanges.rc_actor
LEFT JOIN revision on revision.rev_id = recentchanges.rc_this_oldid
WHERE actor_name in ('Veracious')
AND rc_type in (0, 1)
ORDER BY rc_id desc; | {"resultsets": [{"headers": ["Page", "Page length", "Re-created at"], "rowcount": 251}], "runningtime": "16.41"} | commonswiki_p |
trwikiquote 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 JOIN page_props pp ON pp.pp_page = p2.page_id AND pp.pp_propname = 'hiddencat'
WHERE pp.pp_page IS NULL
)
AND page_id NOT IN (
SELECT cl_from
FROM categorylinks
WHERE cl_to = "Kategorisiz"
)
AND page_id NOT IN (
SELECT cl_from
FROM categorylinks
WHERE cl_to = "Kategorisiz"
AND cl_type = "page"
)
ORDER BY page_len ASC;
| {"resultsets": [{"headers": ["user_name", "comment_text"], "rowcount": 10}], "runningtime": "0.05"} | trwikiquote_p |
Find pages with references from Wikidata but without Viitteet-malline | null | SELECT
*
FROM
page,
wbc_entity_usage
LEFT JOIN templatelinks ON eu_page_id=tl_from AND tl_target_id=26 -- tl_target_id = 26 = "Malline:Viitteet"
WHERE
eu_entity_id IN ("P123","P248","P854") -- list of most common reference properties
AND tl_from IS NULL
AND page_id=eu_page_id
AND page_namespace=0
| {"resultsets": [{"headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %", "Blocked"], "rowcount": 195}], "runningtime": "18.26"} | fiwiki_p |
Editors preferring visual mode / wikitext mode / both / neither | null | with
data1 as (
select rev_id, rev_actor, change_tag_ve.ct_id as ve, change_tag_wt.ct_id as wt
from revision
left join change_tag change_tag_ve
on change_tag_ve.ct_rev_id=rev_id
and change_tag_ve.ct_tag_id=(select ctd_id from change_tag_def where ctd_name='visualeditor')
left join change_tag change_tag_wt
on change_tag_wt.ct_rev_id=rev_id
and change_tag_wt.ct_tag_id=(select ctd_id from change_tag_def where ctd_name='wikieditor')
straight_join page on rev_page=page_id
left join actor on rev_actor=actor_id
left join user on actor_user=user_id
left join user_groups on user_id=ug_user and ug_group='bot'
where rev_timestamp like '202303%'
and page_namespace=0
and ug_group is null
),
data2 as (
select rev_actor, count(ve) as ve, count(wt) as wt
from data1
group by rev_actor
),
data3 as (
select
case
when ve=0 and wt=0 then 'N/A'
when ve=0 then 'wikitext 100%'
when wt=0 then 'visual 100%'
when ve > wt then 'visual >50%'
when wt > ve then 'wikitext >50%'
else '50%'
end as txt,
wt/(ve+wt) as val
from data2
)
select txt, count(*)
from data3
group by txt
order by val
| {"resultsets": [{"headers": ["cnt"], "rowcount": 1}], "runningtime": "0.15"} | enwiki |
Orphaned talk pages | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
FROM
page talkpage
WHERE
talkpage.page_title NOT LIKE '%/%'
AND
talkpage.page_namespace IN (1,11,15,101,119)
AND
NOT EXISTS (
SELECT
1
FROM
page mainpage
WHERE
mainpage.page_namespace=talkpage.page_namespace-1
AND
mainpage.page_title=talkpage.page_title
)
AND
NOT EXISTS (
SELECT
1
FROM
templatelinks
WHERE
talkpage.page_id=tl_from
AND
tl_target_id = 418257
)
LIMIT 100 | {"resultsets": [{"headers": ["log_title", "log_params"], "rowcount": 0}], "runningtime": "0.05"} | enwiki_p |
Orphaned talk pages | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
FROM
page talkpage
WHERE
talkpage.page_title NOT LIKE '%/%'
AND
talkpage.page_namespace IN (1,11,15,101,119)
AND
NOT EXISTS (
SELECT
1
FROM
page mainpage
WHERE
mainpage.page_namespace=talkpage.page_namespace-1
AND
mainpage.page_title=talkpage.page_title
)
AND
NOT EXISTS (
SELECT
1
FROM
templatelinks
WHERE
talkpage.page_id=tl_from
AND
tl_target_id = 418257
)
LIMIT 100 | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 31}], "runningtime": "0.46"} | enwiki_p |
nlwiki Pages categorized by country but w/o country category | null | SELECT page_namespace AS ns, page_title, cl_to
FROM categorylinks, page
WHERE
cl_to!='Wikipedia:Gewenste_artikelen_naar_land' AND
cl_to REGEXP "_naar_(land|natie|nationaliteit)" AND
cl_from=page_id AND
page_is_redirect=0 AND
page_title NOT REGEXP '_(naa|pe)r_land'
HAVING (SELECT COUNT(*) FROM categorylinks WHERE cl_from=page_id AND cl_to NOT REGEXP '^Wikipedia:')=1 | {"resultsets": [{"headers": ["linter_template"], "rowcount": 15}], "runningtime": "0.29"} | nlwiki |
Vandalismebestrijding nlwiki | 756 backlog / achterstand 13 april 2023 13:30 | # anonymous edits totals
SELECT
CASE rc_patrolled
WHEN 0 THEN 'unpatrolled'
WHEN 1 THEN 'manually patrolled'
WHEN 2 THEN 'autopatrolled'
END AS rc_patrolled,
COUNT(*) AS 'count'
FROM recentchanges, actor
WHERE rc_actor=actor_id AND actor_user IS NULL
GROUP BY rc_patrolled
UNION
SELECT 'total', COUNT(*) FROM recentchanges, actor WHERE rc_actor=actor_id AND actor_user IS NULL;
# top 15 anonymous users with the most unpatrolled edits
SELECT actor_name AS 'user', COUNT(*) AS 'unpatrolled'
FROM recentchanges, actor
WHERE rc_actor=actor_id AND actor_user IS NULL AND rc_patrolled=0
GROUP BY actor_name
ORDER BY `unpatrolled` DESC
LIMIT 15;
# anonymous edits per day
SELECT
LEFT(rc_timestamp, 8) AS day,
SUM(rc_patrolled=0) AS 'unpatrolled',
SUM(rc_patrolled=1) AS 'manually patrolled',
SUM(rc_patrolled=2) AS 'autopatrolled',
COUNT(*) AS total
FROM recentchanges, actor
WHERE rc_actor=actor_id AND actor_user IS NULL
GROUP BY day;
# unpatrolled anonymous edits per namespace
SELECT rc_namespace, COUNT(*) AS 'unpatrolled'
FROM recentchanges, actor
WHERE rc_actor=actor_id AND actor_user IS NULL AND rc_patrolled=0
GROUP BY rc_namespace;
# top 10 pages with the most unpatrolled anonymous edits
SELECT rc_namespace, rc_title, COUNT(*) AS 'unpatrolled'
FROM recentchanges, actor
WHERE rc_actor=actor_id AND actor_user IS NULL AND rc_patrolled=0
GROUP BY rc_namespace, rc_title
ORDER BY `unpatrolled` DESC
LIMIT 15; | {"resultsets": [{"headers": ["\u0639\u062f\u062f \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062a \u0627\u0644\u062c\u062f\u064a\u062f\u0629"], "rowcount": 1}, {"headers": ["\u0639\u062f\u062f \u0627\u0644\u062a\u0639\u062f\u064a\u0644\u0627\u062a"], "rowcount": 1}, {"headers": ["\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0627\u0644\u062c\u062f\u062f"], "rowcount": 13849}, {"headers": ["\u0639\u062f\u062f \u0627\u0644\u0642\u0648\u0627\u0644\u0628 \u0627\u0644\u062c\u062f\u064a\u062f\u0629"], "rowcount": 1}, {"headers": ["\u0639\u062f\u062f \u0627\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0627\u0644\u062c\u062f\u064a\u062f\u0629"], "rowcount": 1}, {"headers": ["\u0639\u062f\u062f \u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u062c\u062f\u064a\u062f\u0629"], "rowcount": 1}, {"headers": ["\u0639\u062f\u062f \u0639\u0645\u0644\u064a\u0627\u062a \u0627\u0644\u062d\u0630\u0641"], "rowcount": 1}, {"headers": ["\u0639\u062f\u062f \u062d\u0627\u0644\u0627\u062a \u0627\u0644\u0645\u0646\u0639"], "rowcount": 1}], "runningtime": "14.52"} | nlwiki_p |
All campaign243@ISA contributions | null | select now();
SELECT rev_id, rc_timestamp, actor_name, rc_title, comment_text
FROM recentchanges
LEFT JOIN comment ON comment.comment_id = recentchanges.rc_comment_id
LEFT JOIN actor on actor.actor_id = recentchanges.rc_actor
LEFT JOIN revision on revision.rev_id = recentchanges.rc_this_oldid
WHERE comment_text LIKE '%wbsetclaim-create%campaign243@ISA%'
AND rc_timestamp >= 20230406000000
AND rc_timestamp < 20230413000000
AND rc_type in (0, 1)
ORDER BY rc_id desc; | {"resultsets": [{"headers": ["Page", "Page length", "Re-created at"], "rowcount": 248}], "runningtime": "15.13"} | commonswiki_p |
Find pages with references from Wikidata but without Viitteet-malline | null | SELECT
*
FROM
page,
wbc_entity_usage
LEFT JOIN templatelinks ON eu_page_id=tl_from AND tl_target_id=26 -- tl_target_id = 26 = "Malline:Viitteet"
WHERE
eu_entity_id IN ("P123","P248","P854") -- list of most common reference properties
AND tl_from IS NULL
AND page_id=eu_page_id
AND page_namespace=0
| {"resultsets": [{"headers": ["page_title", "cl_sortkey", "#p"], "rowcount": 2}], "runningtime": "0.09"} | eswiki_p |
random template @ enwiki | null | SELECT CONCAT("Template:",page_title,"")
FROM page
WHERE page_namespace = 10
AND page_is_redirect =0
#AND page_title LIKE "%nimation_directors%"
#AND (page_title LIKE "%peopel%" OR page_title LIKE "%Peopel%")
ORDER BY RAND()
LIMIT 10000; | {"resultsets": [{"headers": ["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"], "rowcount": 28}], "runningtime": "1.44"} | enwiki_p |
vector.{css,js} user subpages on huwiki | null | SELECT CONCAT('Szerkesztő:', page_title)
FROM page
WHERE page_namespace = 2 AND (page_title LIKE '%/vector.css' OR page_title LIKE '%/vector.js'); | {"resultsets": [{"headers": ["concat(\"Category:\",page_title)", "page_len", "cat_pages", "cat_subcats"], "rowcount": 8402}], "runningtime": "17.86"} | huwiki_p |
Test | null | SELECT now();
SELECT r1.rev_timestamp, actor_name, page_title, comment_text, page_id
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('Veracious')
AND (comment_text LIKE '%campaign243@ISA%') #campaign243@ISA
ORDER BY r1.rev_timestamp desc
LIMIT 10; | {"resultsets": [{"headers": ["date", "count(*)", "avg(page_len)", "sum(page_len)"], "rowcount": 83}], "runningtime": "0.96"} | commonswiki_p |
All campaign230@ISA contributions | null | SELECT now();
SELECT r1.rev_id, r1.rev_timestamp, actor_name, page_title, comment_text
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('JumadilM','Arcuscloud','Volstand','Agus Damanik','Ah.Masyhar','Taufik Hadris','Wulan cnms','Tyagita','FenyMufyd','Tanvirusmnr','Lnahdiya','Empat Tilda','Salmaadhy','Istrinya Empat Tilda','Pijri Paijar','Akbar Soepadhi','Bennylin','S Kartika','Fexpr','Kenny.t.88','Zhilal Darma','Arupako')
AND (comment_text LIKE '%wbsetclaim-create%campaign230@ISA%')
AND r1.rev_timestamp >= 20221224000000
AND r1.rev_timestamp < 20230101000000
ORDER BY r1.rev_id desc; | {"resultsets": [{"headers": ["pl_title", "user_editcount", "min(rev_timestamp)", "max(rev_timestamp)"], "rowcount": 1}, {"headers": ["pl_title"], "rowcount": 22}], "runningtime": "0.11"} | commonswiki_p |
All campaign208@ISA contributions | null | SELECT now();
SELECT r1.rev_id, r1.rev_timestamp, actor_name, page_title, comment_text
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('Pijri Paijar','Fuadi Zikri','Agus Damanik','Salmaadhy','Ikanahampun','Nefrit Lazurit','Ulumarifah','Bayuandhini','Muhamri','Madiba.pata','Caturwijiutomo','Lnahdiya','Mnafisalmukhdi1','Marchellangelina','Zhilal Darma','Rtnf','Titanboo','Diahasy','Cosinus Alfa')
AND (comment_text LIKE '%wbsetclaim-create%campaign208@ISA%')
ORDER BY r1.rev_id desc; | {"resultsets": [{"headers": ["pl_title", "user_editcount", "min(rev_timestamp)", "max(rev_timestamp)"], "rowcount": 1}, {"headers": ["pl_title"], "rowcount": 22}], "runningtime": "0.11"} | commonswiki_p |
All campaign183@ISA contributions | null | SELECT now();
SELECT r1.rev_id, r1.rev_timestamp, actor_name, page_title, comment_text
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('Devi 4340','Yasanto Lase','Nefrit Lazurit','S Kartika','JumadilM','Adhmi','Lnahdiya','Ulumarifah','Volstand','Akbar Soepadhi','SutanKart','Uni Riska','Tyagita','Muhammad Faisal Ansa','Zhilal Darma','Wulan cnms','Fuadi Zikri','Rachmat04','Shinta Jasmen')
AND (comment_text LIKE '%wbsetclaim-create%campaign183@ISA%')
ORDER BY r1.rev_id desc; | {"resultsets": [{"headers": ["pl_title", "user_editcount", "min(rev_timestamp)", "max(rev_timestamp)"], "rowcount": 10}, {"headers": ["pl_title"], "rowcount": 22}], "runningtime": "0.53"} | commonswiki_p |
All campaign178@ISA contributions | null | SELECT now();
SELECT r1.rev_id, r1.rev_timestamp, actor_name, page_title, comment_text
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('Yasanto Lase','FenyMufyd','Ulumarifah','Adhmi','Empat Tilda','Akbar Soepadhi','Devi 4340','S Kartika','Uni Riska','Wulan cnms','JumadilM','Agus Damanik','Amalinazk','Diahasy','Rachmat04','Tyagita','Zhilal Darma','Nefrit Lazurit','Mnafisalmukhdi1','Muhammad Faisal Ansa','Teguh Ridho Nugraha','Onyaso','NawanP','Rachmat (WMID)','Harditaher')
AND (comment_text LIKE '%wbsetclaim-create%campaign178@ISA%')
ORDER BY r1.rev_id desc; | {"resultsets": [{"headers": ["pl_title", "user_editcount", "min(rev_timestamp)", "max(rev_timestamp)"], "rowcount": 100}, {"headers": ["pl_title"], "rowcount": 22}], "runningtime": "56.06"} | commonswiki_p |
All campaign83@ISA contributions | null | SELECT now();
SELECT r1.rev_id, r1.rev_timestamp, actor_name, page_title, comment_text
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('Veracious','Yasanto Lase','Devi 4340','Akbar Soepadhi','Adhmi','Edgina36','NFarras','Blue Sonic','Tanvirusmnr','Muhammad Faisal Ansa','RaFaDa20631','Rachmat04','Lnahdiya')
AND (comment_text LIKE '%wbsetclaim-create%campaign83@ISA%')
ORDER BY r1.rev_id desc; | {"resultsets": [{"headers": ["pl_title", "user_editcount", "min(rev_timestamp)", "max(rev_timestamp)"], "rowcount": 1415}, {"headers": ["pl_title"], "rowcount": 22}], "runningtime": "567.60"} | commonswiki_p |
All campaign68@ISA contributions | null | SELECT now();
SELECT r1.rev_id, r1.rev_timestamp, actor_name, page_title, comment_text
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('Cbcbberhadiah16','Edgina36','Muhammad Machrus Jau','Alyadulyaiman','Pungkas nurrohman','Hilmanasdf','Lnahdiya','Muhammad Faisal Ansa','Adhmi','Daffaghifarri06','Muntiaha','Rachmat04','Yogwi21','Titanboo','Devi pluto')
AND (comment_text LIKE '%wbsetclaim-create%campaign68@ISA%')
ORDER BY r1.rev_id desc; | {"resultsets": [{"headers": ["Reviewer", "Article Reviews"], "rowcount": 4}], "runningtime": "9.24"} | commonswiki_p |
All campaign58@ISA contributions | null | SELECT now();
SELECT r1.rev_id, r1.rev_timestamp, actor_name, page_title, comment_text
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('Devi pluto','S Kartika','Lnahdiya','Nastiwang','Rachmat04','Fadirra','Ester Apriana','Tanvirusmnr','Alviyya tsaqila','RXerself','FenyMufyd','Veracious','Ezagren')
AND (comment_text LIKE '%wbsetclaim-create%ampaign58@ISA%')
ORDER BY r1.rev_id desc; | {"resultsets": [{"headers": ["Reviewer", "Article Reviews"], "rowcount": 2}], "runningtime": "2.51"} | commonswiki_p |
بوت الصيانة - مقالات بحاجة لإزالة وسم غير مراجعة | null | use arwiki_p;
select page_title from page
where page.page_is_redirect = 0
and page.page_namespace = 0
and page_id in (select fp_page_id from flaggedpages where fp_page_id = page_id)
and page_id in (select cl_from from categorylinks where cl_to like "جميع_المقالات_غير_المراجعة"); | {"resultsets": [{"headers": ["page_title", "pl_title"], "rowcount": 650}], "runningtime": "17.91"} | arwiki_p |
Editors preferring visual mode / wikitext mode / both / neither (counting more wikitext modes) | null | with
data1 as (
select rev_id, rev_actor, change_tag_ve.ct_id as ve, change_tag_wt.ct_id as wt
from revision
left join change_tag change_tag_ve
on change_tag_ve.ct_rev_id=rev_id
and change_tag_ve.ct_tag_id=(select ctd_id from change_tag_def where ctd_name='visualeditor')
left join change_tag change_tag_wt
on change_tag_wt.ct_rev_id=rev_id
and change_tag_wt.ct_tag_id in (select ctd_id from change_tag_def where ctd_name in ('wikieditor','visualeditor-switched','visualeditor-wikitext'))
straight_join page on rev_page=page_id
left join actor on rev_actor=actor_id
left join user on actor_user=user_id
left join user_groups on user_id=ug_user and ug_group='bot'
where rev_timestamp like '202303%'
and page_namespace=0
and ug_group is null
),
data2 as (
select rev_actor, count(ve) as ve, count(wt) as wt
from data1
group by rev_actor
),
data3 as (
select
case
when ve=0 and wt=0 then 'N/A'
when ve=0 then 'wikitext 100%'
when wt=0 then 'visual 100%'
when ve > wt then 'visual >50%'
when wt > ve then 'wikitext >50%'
else '50%'
end as txt,
wt/(ve+wt) as val
from data2
)
select txt, count(*)
from data3
group by txt
order by val
| {"resultsets": [{"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 6}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 19}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 10}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 12}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 37}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 13}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 37}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 13}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 12}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 37}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 37}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 10}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 37}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 19}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 12}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 37}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 19}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 13}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 19}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 38}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 19}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 15}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 12}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 19}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 6}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 38}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 37}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 38}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 27}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 11}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 10}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 21}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 19}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 37}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 20}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 36}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 14}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 28}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 17}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 25}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 22}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 24}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 26}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 18}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 34}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 23}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 19}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 9}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 32}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 0}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 16}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 31}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 12}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 33}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 30}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 29}, {"headers": ["page_id", "cl_to", "count(*)"], "rowcount": 35}], "runningtime": "4552.58"} | enwiki |
All orphan non-free files on bn.wiki | null | #USE viwiki_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 c2.cl_to = "All_orphaned_non-free_use_Wikipedia_files"
WHERE c1.cl_to = "সকল_অ-মুক্ত_মিডিয়া"
AND i.il_from IS NULL
AND c2.cl_from IS NULL
AND p.page_namespace = 6
GROUP BY page_title ASC | {"resultsets": [{"headers": ["user_name", "user_editcount"], "rowcount": 0}], "runningtime": "0.05"} | bnwiki_p |
huwiki:Articles created by bots | null | USE huwiki_p;
SELECT CONCAT('# [[', page_title ,']]') AS page_title, rev_timestamp, ug_group, page_len
FROM page, revision, user_groups
WHERE rev_page = page_id
AND rev_parent_id = 0
AND page_namespace = 0
AND page_is_redirect = 0
AND ug_group LIKE '%bot%'
ORDER BY rev_timestamp
limit 100 | {"resultsets": [{"headers": ["User page", "User edit count", "Page last edited", "Page length", "Is new?"], "rowcount": 754}], "runningtime": "25.69"} | huwiki_p |
Obtener títulos de artículos de Wikipedia a partir de identificadores de items de Wikidata | null | SELECT *
FROM page JOIN page_props ON page_id=pp_page
WHERE (pp_propname='wikibase_item' AND pp_value IN ("Q1","Q1000462","Q1001","Q1003","Q1006733","Q101017","Q101274","Q10135","Q101362","Q101373","Q101395","Q101420429","Q101487","Q101497","Q101534","Q1016","Q1019","Q101935","Q101949","Q101965","Q101998","Q102083","Q102192","Q102205","Q1022111","Q102416","Q1024999","Q102500","Q102532","Q102585","Q10261","Q102761","Q1028","Q102851","Q10288","Q102932","Q1029676","Q1029907","Q1031802","Q103184","Q103191","Q1032","Q1032190","Q103230","Q103237","Q1033","Q103639","Q1037499","Q103983","Q104021","Q104053","Q104057283","Q104083","Q1041","Q1042024","Q104394","Q1045","Q1045266","Q1047682","Q1048","Q1048268","Q104837","Q1048468","Q104851","Q104884","Q1049","Q104946","Q1049476","Q1049866","Q1050744","Q1051175","Q105210","Q1052120","Q105290","Q1053185","Q1053313","Q1053947","Q1054168","Q1054254","Q1055609","Q1056761","Q1057","Q105763","Q1058748","Q1058842","Q1059","Q105985","Q106016","Q106032","Q1061030","Q1061693","Q106227","Q1062677","Q1062932","Q1063","Q1063076","Q1064","Q1065","Q1065257","Q1067","Q1068091","Q1068675","Q1069090","Q10693","Q106997429","Q1069998","Q10701282","Q1070421","Q107047419","Q107087885","Q107087895","Q107099","Q1071270","Q1072140","Q1072751","Q107342","Q1074","Q107410","Q107425","Q10749030","Q10764194","Q107715","Q1079788","Q1079958","Q10806","Q1080711","Q10811","Q1081300","Q108376","Q1084","Q10858537","Q10859","Q10872","Q10876","Q10892","Q10908","Q1091461","Q1092339","Q1092462","Q10925","Q109251","Q1092661","Q1094061","Q1094598","Q1094908","Q10955875","Q1100446","Q1101896","Q11019","Q11030584","Q11033","Q11053","Q11068","Q11078","Q110786","Q1108445","Q1109552","Q11101","Q1111","Q1112860","Q1113267","Q11135","Q1114493","Q11158","Q11169","Q11173","Q1117578","Q1118145","Q11188","Q11193","Q11197","Q11203","Q11204","Q11214","Q112154","Q11216","Q1122094","Q1122484","Q11229","Q1123201","Q1123840","Q11255","Q1125955","Q1127188","Q112754","Q1129196","Q1129469","Q1130200","Q1131281","Q1132008","Q11336","Q1133779","Q1134177","Q11344","Q11345","Q113453","Q11348","Q11352","Q1135521","Q11358","Q1136305","Q11364","Q1136575","Q11367","Q1136880","Q11369","Q11376","Q11379","Q11382","Q11398","Q114","Q11402","Q1140370","Q1140685","Q1140772","Q11409","Q11412","Q11421","Q11423","Q11426","Q11427","Q1142948","Q11430","Q11432","Q114326","Q1143413","Q11435","Q1143556","Q11438","Q11448","Q11451","Q11464","Q11465","Q11466","Q11469","Q11471","Q114717","Q11472","Q11473","Q11474","Q11476","Q1147832","Q115","Q11500","Q115089","Q1150997","Q11518","Q11523","Q11567","Q11570","Q11573","Q11574","Q11582","Q1159457","Q1159675","Q1164398","Q11651","Q11660","Q11663","Q11690026","Q11691","Q11698","Q11708","Q1172506","Q117364","Q11750","Q11768","Q117701","Q1179618","Q1179737","Q1180565","Q118171","Q1185557","Q1186690","Q1187312","Q1187484","Q1189238","Q1191320","Q1192894","Q1193736","Q1194697","Q1195304","Q1197114","Q119716","Q11978","Q11982","Q11995","Q1202252","Q1203075","Q1203182","Q1203607","Q1205637","Q12089457","Q1209449","Q1209716","Q120976","Q120993","Q1210","Q121117","Q12132","Q12143","Q12147","Q12151382","Q12152","Q1216","Q121610","Q1216707","Q1216998","Q1217677","Q1217941","Q1219705","Q12203","Q1221208","Q1222","Q122371","Q12244504","Q122508","Q1226528","Q1226939","Q1227375","Q1230918","Q123150","Q1232053","Q1233645","Q123397","Q1234585","Q1234617","Q123619","Q1237","Q1238338","Q12385831","Q123991","Q1240211","Q124255","Q124291","Q1243","Q124354","Q12444025","Q1244890","Q12453","Q1245589","Q12457","Q1246","Q1246315","Q1246333","Q1246391","Q1247524","Q1247570","Q124794","Q1248697","Q1248722","Q1248980","Q12490507","Q124988","Q1250","Q12503","Q1250322","Q12507","Q1250763","Q12519","Q125249","Q12536","Q12539","Q12544","Q12546","Q12547192","Q12548","Q12551","Q125551","Q12557","Q1256","Q12560","Q1256164","Q12562","Q12567","Q12571883","Q1257878","Q125928","Q126065","Q1261544","Q126236","Q1263","Q126692","Q1269827","Q127006","Q127013","Q12705","Q12707","Q12713481","Q12718","Q12725","Q1273","Q127398","Q1274327","Q12760","Q1279","Q127912","Q127920","Q127993","Q1280","Q12807","Q128093","Q128115","Q128135","Q128160","Q128168","Q1282","Q128234","Q12831143","Q12837","Q1284","Q1284512","Q1285","Q1286","Q128709","Q128751","Q1290","Q12916","Q129167","Q129238","Q129286","Q1294142","Q12969754","Q1301371","Q130221","Q130531","Q1307214","Q130796","Q130901","Q130998","Q131013","Q131015","Q131105","Q131117","Q131123","Q13116","Q131164","Q131201","Q131221","Q131449","Q131524","Q131594","Q13166","Q131683","Q131719","Q131752","Q1317831","Q131805","Q131808","Q1318388","Q1321131","Q132157","Q13218676","Q1328015","Q133032","Q133132","Q133235","Q133250","Q1333433","Q133641","Q133732","Q133895","Q13405524","Q13407144","Q13416790","Q134178","Q134189","Q13420283","Q134221","Q134237","Q134267","Q13468437","Q13475484","Q134783","Q134840","Q134856","Q1348910","Q1349158","Q1352178","Q13533728","Q13582","Q1362030","Q1362251","Q1364","Q136407","Q1365292","Q1366302","Q1367590","Q137056","Q1370714","Q13741","Q1377174","Q1378456","Q1378741","Q1379344","Q138246","Q1384267","Q1385607","Q1390924","Q1394","Q1394847","Q1394860","Q1399","Q1401","Q1401935","Q1402","Q1402059","Q1402912","Q1403","Q1403517","Q1404472","Q1405","Q1406","Q140694","Q1410","Q1410539","Q1411112","Q14116","Q1412733","Q1413460","Q1415187","Q14185","Q1419215","Q142","Q1420791","Q1421436","Q1422116","Q1426186","Q1430","Q1431376","Q1435490","Q1436","Q14373","Q14378","Q1438","Q1439991","Q144019","Q1443","Q1447","Q145","Q1452","Q145599","Q1456635","Q1457297","Q1458","Q1460","Q146078","Q1462","Q14620","Q146233","Q1463832","Q1463845","Q1463941","Q146505","Q14656","Q146786","Q1468684","Q1468865","Q146924","Q1469987","Q147276","Q1473417","Q1475560","Q147572","Q14763008","Q1479995","Q148","Q148540","Q148836","Q148837","Q14890574","Q148993","Q14947899","Q149537","Q1496","Q15","Q1502460","Q1502853","Q150611","Q150642","Q1507074","Q150812","Q1508721","Q1509757","Q15098088","Q1509829","Q151047","Q151060","Q151090","Q151340","Q15140913","Q15140974","Q15141402","Q15141478","Q1517200","Q1517385","Q1517519","Q151803","Q152","Q1520033","Q15212432","Q1522115","Q15221996","Q152415","Q152509","Q152989","Q1530280","Q153034","Q15316","Q153232","Q153650","Q153660","Q153670","Q153688","Q153793","Q15402102","Q1541","Q1541064","Q154278","Q154340","Q154439","Q154611","Q154720","Q154751","Q154756","Q154764","Q154954","Q154959","Q155","Q1550557","Q155076","Q155640","Q155972","Q156","Q156312","Q156733","Q1569011","Q156986","Q157002","Q1570124","Q1570397","Q1570510","Q15733698","Q157648","Q15777","Q15790","Q15792","Q158688","Q15890801","Q159","Q15912661","Q159226","Q159297","Q159462","Q159719","Q15975","Q159758","Q15978631","Q159810","Q159905","Q16","Q160077","Q160091","Q160149","Q160151","Q16021","Q160362","Q160460","Q160538","Q1605411","Q160590","Q160710","Q1610116","Q161064","Q16110","Q1612119","Q161254","Q161462","Q161519","Q161549","Q161635","Q16166477","Q161736","Q1618027","Q161859","Q161933","Q1621273","Q162145","Q162167","Q162219","Q162297","Q162362","Q162378","Q162401","Q162643","Q162657","Q16266320","Q162668","Q162908","Q1632269","Q16323364","Q163310","Q163740","Q1638370","Q163891","Q16399","Q164","Q1641089","Q164321","Q164348","Q16438","Q1645075","Q1645406","Q164573","Q16482934","Q165","Q165005","Q165301","Q165309","Q16531303","Q165425","Q16543336","Q165474","Q165534","Q165589","Q1656724","Q165725","Q16577084","Q165848","Q16592298","Q165939","Q16605989","Q166092","Q166154","Q16619154","Q166224","Q166231","Q166234","Q1664027","Q16656295","Q166656","Q166764","Q166955","Q167","Q167198","Q167287","Q167336","Q167466","Q1675084","Q167751","Q167903","Q16817","Q168182","Q168210","Q168691","Q168962","Q169243","Q169324","Q169336","Q169759","Q169953","Q17","Q170008","Q170058","Q170075","Q170130","Q170153","Q170161","Q170181","Q170196","Q170239","Q170321","Q170332","Q170350","Q1703635","Q170409","Q170430","Q170472","Q170519","Q170541","Q170731","Q170744","Q170749","Q170770","Q171","Q1710033","Q171043","Q171407","Q17161","Q17167","Q171677","Q17169","Q1717246","Q172008","Q172048","Q172280","Q172579","Q172599","Q172771","Q17278","Q17285","Q172881","Q172948","Q172991","Q173100","Q173183","Q173212","Q173285","Q173523","Q173527","Q173710","Q173817","Q174211","Q174306","Q174330","Q174361","Q174565","Q174728","Q1747618","Q1747853","Q174929","Q174948","Q174989","Q175036","Q17514","Q1753097","Q1753902","Q1754072","Q1754940","Q175582","Q175974","Q176165","Q17628883","Q176483","Q1765465","Q1765801","Q1766450","Q1768303","Q177051","Q177239","Q177302","Q177449","Q1775415","Q177567","Q177625","Q177646","Q177691","Q177692","Q177819","Q177854","Q1778604","Q177918","Q177935","Q178043","Q178048","Q1780774","Q178192","Q178354","Q1783714","Q178476","Q178540","Q178605","Q1786087","Q178648","Q178668","Q178694","Q178697","Q178709","Q178733","Q178790","Q178803","Q178890","Q178897","Q1789540","Q178977","Q179073","Q179080","Q179164","Q179177","Q179217","Q179230","Q179235","Q179250","Q179380","Q179388","Q179436","Q179541","Q1796098","Q179635","Q179684","Q179785","Q179788","Q179840","Q179856","Q179876","Q17996169","Q179997","Q18","Q180081","Q180107","Q180184","Q180309","Q180388","Q180544","Q180548","Q180568","Q180600","Q18081","Q18084","Q180907","Q180927","Q180943","Q181026","Q181175","Q181264","Q181328","Q181365","Q181404","Q181551","Q181593","Q181658","Q181767","Q181780","Q182003","Q182046","Q182062","Q182076","Q182123","Q182128","Q182270","Q182274","Q182353","Q182527","Q182664","Q182726","Q182854","Q182865","Q18288972","Q182897","Q182985","Q183","Q183039","Q183065","Q183144","Q183197","Q183225","Q183384","Q183427","Q183725","Q184","Q184183","Q184226","Q184274","Q1842924","Q184313","Q184382","Q184395","Q184500","Q184550","Q184554","Q184558","Q184708","Q184725","Q184754","Q184793","Q184876","Q184890","Q184928","Q184932","Q184996","Q185077","Q185092","Q1851928","Q185357","Q185359","Q185427","Q18550","Q185565","Q185589","Q185598","Q185729","Q18578423","Q1858041","Q185837","Q18590159","Q186018","Q186152","Q186162","Q186167","Q186202","Q186300","Q186368","Q186517","Q186748","Q186885","Q187","Q187149","Q187181","Q187215","Q187336","Q187520","Q187650","Q187742","Q187819","Q187998","Q188063","Q18817","Q188191","Q188193","Q188267","Q188419","Q18845397","Q188468","Q188485","Q188494","Q18869","Q188712","Q188719","Q188804","Q188843","Q188862","Q188883","Q188909","Q188941","Q189","Q1890411","Q189066","Q189072","Q189088","Q189136","Q189210","Q189266","Q189380","Q189508","Q189520","Q189597","Q18965","Q1898328","Q189967","Q1900125","Q190070","Q190107","Q190116","Q19013759","Q190212","Q19024","Q190258","Q190279","Q190291","Q190382","Q190444","Q190474","Q190553","Q190557","Q190656","Q19081","Q19088","Q190944","Q191","Q191086","Q191089","Q191218","Q191324","Q191359","Q191390","Q19140289","Q191489","Q191624","Q191776","Q191785","Q191850","Q191884","Q191890","Q191934","Q192050","Q192222","Q192270","Q192292","Q1923028","Q192311","Q192313","Q192374","Q192388","Q192439","Q192447","Q192488","Q192525","Q192560","Q192627","Q192630","Q192690","Q192735","Q192788","Q192796","Q192841","Q19287983","Q192886","Q192995","Q193058","Q193068","Q193168","Q193217","Q193235","Q193236","Q193254","Q193270","Q193286","Q193422","Q193523","Q193547","Q1935489","Q193623","Q1937490","Q193769","Q193796","Q193846","Q193885","Q193927","Q194029","Q194277","Q194404","Q1945600","Q19541","Q19557","Q19563","Q19596","Q19600","Q19609","Q19622368","Q196502","Q196538","Q1968864","Q1971429","Q198","Q19814","Q19819479","Q19821","Q19828","Q1983009","Q1987553","Q1988505","Q19885988","Q19933904","Q199403","Q199588","Q19960681","Q199820","Q19984772","Q19985151","Q1998646","Q199955","Q2","Q20","Q200034","Q20009493","Q20010053","Q2001617","Q200227","Q200286","Q200435","Q200464","Q200565","Q200779","Q200790","Q201038","Q201339","Q201456","Q201559","Q201620","Q201684","Q202142","Q2022","Q202207","Q2022868","Q202444","Q202558","Q202805","Q2029841","Q203066","Q2030685","Q203445","Q2035846","Q2037576","Q203824","Q2038843","Q204037","Q204058","Q2041172","Q204554","Q205","Q205034","Q205084","Q205259","Q2054","Q205665","Q206049","Q206229","Q206285","Q20630333","Q206913","Q20702","Q2073517","Q207449","Q207509","Q207648","Q207929","Q2080788","Q208208","Q208216","Q208238","Q20823810","Q208348","Q208465","Q208701","Q208742","Q208758","Q208791","Q209","Q209082","Q210","Q210189","Q210539","Q210546","Q210854","Q210947","Q211","Q21100485","Q2110225","Q211101","Q211459","Q211496","Q2116320","Q211674","Q211675","Q21192549","Q21192987","Q21193084","Q211935","Q21198","Q21199","Q212","Q212079","Q212114","Q212126","Q212141","Q2121876","Q21235336","Q212542","Q212616","Q212667","Q212794","Q213","Q213185","Q213449","Q213457","Q213482","Q214","Q214078","Q214100","Q214115","Q2142166","Q2142347","Q214609","Q214816","Q215","Q215007","Q215198","Q215206","Q215382","Q216042","Q216200","Q216320","Q2164653","Q216478","Q216582","Q216601","Q21670147","Q216818","Q216989","Q217","Q217113","Q217175","Q217196","Q217200","Q217981","Q218","Q2185042","Q218678","Q219","Q219060","Q219142","Q2192","Q219207","Q219447","Q219491","Q219817","Q219934","Q220089","Q220563","Q220596","Q220849","Q220859","Q220984","Q221","Q221043","Q222","Q2225","Q223569","Q2236765","Q223679","Q2236965","Q223723","Q223725","Q223750","Q223767","Q2238230","Q224","Q224055","Q2245347","Q2245489","Q2246931","Q2249636","Q225","Q2250271","Q2253464","Q2258559","Q2260521","Q226183","Q22633","Q22645","Q22656","Q22664","Q22687","Q22688","Q2269","Q2271183","Q22716","Q2272119","Q22738","Q227564","Q2277","Q2279483","Q228","Q228197","Q228201","Q228284","Q2289594","Q229","Q229102","Q229367","Q2294","Q2294393","Q2297853","Q2301091","Q230533","Q2305665","Q230731","Q230937","Q231781","Q232","Q232207","Q232913","Q233","Q233711","Q23380","Q23384","Q23387","Q23392","Q23397","Q2342867","Q2348","Q235","Q23522","Q2352880","Q2353775","Q23540","Q23559","Q2356529","Q2356542","Q2357153","Q236","Q2362761","Q2364239","Q2366155","Q237","Q237131","Q23718","Q237789","Q238","Q23808","Q23809","Q238231","Q23852","Q2386606","Q2397918","Q2403074","Q240576","Q2407","Q241","Q241059","Q241087","Q241284","Q2413988","Q2419844","Q242069","Q242095","Q242125","Q2422375","Q242352","Q2424752","Q242644","Q2426831","Q242767","Q243240","Q243721","Q243723","Q24384","Q244145","Q244326","Q244752","Q244761","Q2450161","Q245031","Q245260","Q245423","Q2457695","Q245992","Q2465530","Q2472587","Q2476047","Q248137","Q2481895","Q2487","Q2487023","Q24905","Q24933000","Q2494008","Q24940421","Q24962887","Q250","Q250414","Q251","Q25106","Q2511733","Q25120","Q251355","Q2517983","Q252","Q25235","Q25241","Q25257","Q25261","Q25276","Q25288","Q25314","Q25322","Q25328","Q25342","Q2535546","Q25358","Q253684","Q25399103","Q2541435","Q254183","Q2542563","Q254329","Q25445","Q254982","Q2553591","Q255368","Q25546","Q25619773","Q2566559","Q256922","Q2571696","Q2577303","Q257758","Q258","Q258369","Q2585623","Q2602944","Q2604547","Q2604642","Q26082","Q2608426","Q2608489","Q262","Q2623458","Q262525","Q2630581","Q2632167","Q2635326","Q2636432","Q26382","Q26388","Q26401","Q264028","Q2640512","Q2641199","Q2641256","Q2641504","Q264164","Q2642081","Q264592","Q2648497","Q26513","Q265236","Q265868","Q2661322","Q2663007","Q266459","Q2666904","Q26702","Q2672914","Q267298","Q267304","Q2674302","Q267596","Q268166","Q2694178","Q27","Q270227","Q2704282","Q2704619","Q2707809","Q2708273","Q271580","Q2717283","Q2717398","Q271814","Q271855","Q272119","Q27273707","Q272777","Q273120","Q273182","Q273328","Q273348","Q2733908","Q27381","Q27394","Q27407","Q274116","Q27433","Q274404","Q274511","Q27468","Q275051","Q275131","Q275411","Q275447","Q275918","Q275979","Q2760651","Q27611","Q2763","Q27645","Q27716","Q277560","Q2778917","Q27809","Q27955084","Q28","Q2802178","Q28113351","Q2824480","Q2827083","Q283","Q283102","Q283364","Q2838118","Q2838189","Q28491","Q2850020","Q2853205","Q2855609","Q28567","Q28573","Q28598","Q2864673","Q28653","Q28669829","Q287","Q28730","Q28784","Q2884586","Q289285","Q29","Q290720","Q29175","Q2945123","Q2946","Q29473","Q2949884","Q2949890","Q29521085","Q29539","Q29548","Q29581660","Q296","Q296244","Q296272","Q297","Q297190","Q2976560","Q2979","Q29867336","Q298729","Q2989771","Q2990574","Q29996","Q30","Q3007315","Q300914","Q3010313","Q301920","Q30198","Q3021244","Q302218","Q3028597","Q3030513","Q30404748","Q3044","Q304479","Q304546","Q30487","Q305176","Q305186","Q3057447","Q3064117","Q3064603","Q3064604","Q306786","Q307","Q30755","Q3079079","Q3080284","Q30849","Q30888465","Q30890756","Q30894408","Q30898828","Q309157","Q309579","Q309786","Q309818","Q31","Q310916","Q311287","Q311674","Q311802","Q3118964","Q3119190","Q312392","Q312617","Q313600","Q3136905","Q314488","Q314677","Q3151690","Q315357","Q316559","Q316876","Q317098","Q317142","Q317267","Q318","Q318394","Q3185305","Q318787","Q31929","Q319557","Q319622","Q319891","Q32","Q3200440","Q320388","Q3204179","Q32043","Q3209720","Q32098","Q321","Q3210444","Q321219","Q321245","Q3220391","Q3221445","Q322666","Q323","Q3230","Q3231688","Q3233315","Q3240252","Q3242046","Q32500","Q3250296","Q32518","Q325519","Q325656","Q3258694","Q327675","Q328293","Q32833","Q328747","Q3294789","Q329838","Q32993","Q33","Q331439","Q332489","Q332626","Q3330103","Q3338723","Q334154","Q334188","Q33456","Q33477","Q335234","Q33540","Q3354732","Q3358290","Q3359409","Q336","Q3365552","Q337120","Q337311","Q3374400","Q33745","Q337547","Q338","Q338257","Q33829","Q338478","Q3388095","Q339072","Q3392","Q3394849","Q33971","Q34","Q34027","Q3407566","Q3417663","Q3428776","Q344","Q34417","Q34503","Q34508","Q3454555","Q34581","Q34618","Q34636","Q34698","Q347","Q3473948","Q34740","Q34777","Q34793275","Q3484042","Q3487980","Q35","Q3502541","Q3502544","Q3502553","Q35032","Q350781","Q3510521","Q35127","Q352","Q35222","Q35314","Q35355","Q3538152","Q355472","Q35548","Q3557053","Q3559","Q356711","Q35758","Q35798","Q35802","Q35865","Q3588","Q35942","Q35966","Q36","Q3602853","Q3602986","Q3603993","Q3606519","Q3606520","Q3606523","Q3606525","Q3607564","Q361","Q3612319","Q3612364","Q36133","Q3614420","Q3614629","Q3614974","Q3614985","Q3614989","Q36161","Q3617415","Q362","Q3620859","Q3621595","Q3621603","Q36224","Q3624106","Q3624124","Q3624131","Q3624151","Q3624153","Q3624154","Q3624161","Q3624391","Q36244","Q36253","Q3625580","Q3627284","Q36288","Q3629172","Q3629385","Q36303","Q3630915","Q3631250","Q36330","Q363404","Q3639759","Q36422","Q36477","Q36484","Q3649503","Q36496","Q3650501","Q36534","Q3655711","Q3655724","Q3658348","Q366270","Q3664263","Q3664678","Q3664681","Q3667928","Q36732","Q36756","Q3676454","Q3676496","Q3676498","Q3677192","Q3678183","Q3679730","Q3680468","Q36810","Q368206","Q3684237","Q3685146","Q3685147","Q3685150","Q3685151","Q3685153","Q3685154","Q3685155","Q3685156","Q3685157","Q3685158","Q3685159","Q3685160","Q3685162","Q3685163","Q3685168","Q3685169","Q3685171","Q3686031","Q3686204","Q368639","Q3686414","Q3686839","Q3687261","Q3687301","Q3687318","Q3699","Q3699374","Q3699556","Q37","Q37045","Q37068","Q3708094","Q3709055","Q3709090","Q3709150","Q3710001","Q3710003","Q3710006","Q3710007","Q3710008","Q37105","Q3712200","Q3712790","Q3713933","Q37147","Q3714733","Q37160","Q37187","Q3718728","Q3718889","Q37221","Q3724493","Q3726248","Q3730656","Q3730666","Q3730872","Q3730878","Q3730882","Q3730901","Q3731066","Q3733063","Q3734048","Q3734051","Q3734806","Q37388","Q37394","Q3739874","Q3743412","Q3745515","Q37470","Q3747503","Q3747514","Q3748031","Q3748032","Q3748186","Q3748394","Q3748395","Q3748907","Q3749017","Q3751591","Q3752897","Q37555","Q37560","Q37562","Q37571","Q37577","Q375998","Q376","Q3760348","Q3760900","Q3761391","Q37621","Q3762204","Q37654","Q37693","Q3771771","Q3772477","Q3773812","Q37739","Q3773955","Q3773971","Q3774124","Q37748","Q3778681","Q37813","Q37853","Q378645","Q378658","Q37868","Q378706","Q378751","Q3790944","Q3791315","Q3791396","Q3792578","Q3792632","Q3792638","Q3792984","Q3793899","Q3794211","Q3795058","Q3795119","Q3795657","Q3796473","Q3796476","Q3797326","Q3797511","Q3797566","Q3798919","Q3799475","Q38","Q380023","Q380057","Q3800893","Q3801281","Q3802136","Q38035","Q3804209","Q38066","Q380933","Q380971","Q3814255","Q3817873","Q3817893","Q38193","Q3821511","Q3821715","Q3821831","Q3822537","Q3822884","Q3822967","Q3823572","Q3823759","Q3823943","Q3824693","Q38272","Q3828360","Q3828598","Q382861","Q3828908","Q3829715","Q3829739","Q3829748","Q3829749","Q3829752","Q3829757","Q3831119","Q3831189","Q3831756","Q3832507","Q3832975","Q3833332","Q38370","Q383973","Q3840065","Q384014","Q38433","Q385239","Q38526","Q3853760","Q385378","Q3855153","Q3858037","Q3858501","Q3859450","Q3863","Q3866233","Q3866304","Q3866451","Q3866557","Q3869127","Q3873325","Q38768","Q3877913","Q3878016","Q388","Q3880609","Q3880858","Q3880861","Q3884062","Q3884066","Q3884075","Q3884076","Q3884085","Q3884093","Q3884099","Q3885112","Q3885626","Q3885695","Q3885696","Q3886299","Q3886794","Q38918","Q389380","Q3895154","Q3896644","Q3896851","Q3897842","Q389813","Q38994","Q3899885","Q3899904","Q3899915","Q39","Q3902076","Q3902653","Q3902654","Q390557","Q3906988","Q3906998","Q3907003","Q3907449","Q3909444","Q3909466","Q3910094","Q3911174","Q3913","Q391511","Q3921569","Q3921587","Q3921589","Q3921592","Q3921796","Q3922436","Q3923912","Q3923913","Q3923915","Q3923993","Q3923994","Q3923995","Q3923997","Q3923998","Q3923999","Q3924002","Q3924006","Q3924007","Q3924009","Q3924012","Q3924013","Q3924014","Q3924015","Q3924016","Q3924018","Q3924019","Q3924020","Q3924021","Q3924022","Q3924023","Q3924076","Q3926560","Q3926645","Q3927097","Q3927678","Q3927762","Q3927887","Q3929379","Q39297","Q3930234","Q3930272","Q3931202","Q3931574","Q3931588","Q3932296","Q3935126","Q3935349","Q3935840","Q3935849","Q3937297","Q3938047","Q3938059","Q394","Q39427","Q3950773","Q3950814","Q3951866","Q3952676","Q3953977","Q3953978","Q3953983","Q3954040","Q39546","Q39552","Q3955454","Q39572","Q3958154","Q3960105","Q3960106","Q3961444","Q3962","Q3962179","Q3962183","Q3964389","Q3965152","Q3966","Q3966553","Q3968617","Q3968632","Q3968723","Q397","Q39731","Q3974136","Q3975713","Q3975763","Q3976804","Q3978557","Q3980923","Q3982439","Q3983121","Q39833","Q39837","Q3983979","Q3983985","Q3984001","Q3984062","Q3984067","Q3984773","Q3984890","Q3984892","Q39931","Q3997732","Q3998560","Q3998572","Q3998573","Q40","Q40015","Q4003208","Q4004349","Q4004472","Q40056","Q4006","Q4006171","Q4006386","Q4009863","Q4009866","Q4009868","Q401","Q4010225","Q40112","Q4011400","Q4011409","Q40157","Q40164","Q40171","Q40185","Q4022","Q4024389","Q40260","Q40276","Q4029560","Q403","Q40397","Q40415","Q405","Q40591","Q40599","Q40614","Q40631","Q407142","Q40754","Q40763","Q408","Q40936","Q40949","Q41","Q41088690","Q41118","Q41137","Q4115173","Q41155","Q41159","Q41171","Q41207","Q41273","Q41299","Q41304","Q414","Q41500","Q41509","Q41550","Q41568","Q41581","Q41630","Q41760","Q41796","Q418","Q41803","Q41866","Q419","Q41931","Q41980","Q4198718","Q420","Q42005","Q42008","Q42045","Q4213","Q42138","Q42156","Q42195","Q42207","Q422106","Q42213","Q42225","Q42244","Q42278","Q422812","Q423","Q423189","Q42320","Q42344","Q42395","Q42458","Q42515","Q42534","Q42544","Q425597","Q425698","Q42591","Q426221","Q426853","Q427030","Q42762","Q428","Q428253","Q42827","Q42834","Q42876","Q428995","Q4290","Q42918","Q4291933","Q42934","Q4295","Q42970","Q42976","Q42979","Q429811","Q42982","Q43","Q430","Q4302","Q43054","Q430726","Q43109","Q43116","Q432","Q4321","Q43216","Q43260","Q43262","Q43287","Q43332","Q43440","Q43478","Q4348882","Q435006","Q43533","Q436048","Q43619","Q43637","Q43648","Q43702","Q43746","Q437882","Q43806","Q43922","Q43936","Q43939","Q4394526","Q44007","Q440928","Q4412","Q44127","Q44197","Q442145","Q44235","Q442485","Q44272","Q442781","Q44311","Q4439","Q444143","Q44424","Q44432","Q44528","Q44601","Q44613","Q447","Q447058","Q447131","Q44777","Q4479242","Q448","Q4489699","Q44946","Q45","Q45003","Q4501","Q451312","Q452421","Q4530482","Q45315","Q454","Q455037","Q45670","Q456993","Q45745","Q457986","Q458","Q45813","Q45918","Q46","Q461886","Q46261","Q46276","Q46303","Q46362","Q46373","Q463846","Q46441","Q465627","Q465800","Q466","Q466588","Q466811","Q466887","Q466969","Q46805","Q46825","Q46857","Q468658","Q468662","Q468801","Q468804","Q468823","Q4692","Q470067","Q47041","Q470596","Q47069","Q47089","Q47130","Q47146","Q471523","Q47154","Q47160","Q471822","Q471831","Q471855","Q472246","Q47232","Q4724","Q47273","Q47306354","Q47319","Q47359","Q473716","Q473746","Q47423","Q474328","Q474628","Q474717","Q475025","Q47506","Q475477","Q47551","Q47574","Q47607","Q4763720","Q47690","Q4774913","Q47783","Q477973","Q479844","Q48","Q48103","Q48204","Q48235","Q48244","Q48297","Q48301","Q48314","Q483213","Q483261","Q4833830","Q483639","Q483769","Q484152","Q484298","Q484623","Q484632","Q484637","Q484652","Q484847","Q48493","Q4850939","Q485100","Q486598","Q486831","Q487112","Q487756","Q488","Q48800454","Q48800793","Q48801296","Q48900","Q48922","Q4897191","Q49","Q49008","Q4916","Q491689","Q492173","Q49389","Q494603","Q4948","Q4951","Q495300","Q495423","Q497173","Q497743","Q499327","Q49974","Q50020","Q50380212","Q504","Q5043","Q5051","Q5055020","Q506","Q506623","Q50695","Q50698","Q50701","Q50708","Q507738","Q5082128","Q5086","Q50868","Q509504","Q51","Q510621","Q5107","Q5107861","Q51122","Q5113","Q51178","Q51189","Q514423","Q515","Q5151","Q5157342","Q51648","Q51649","Q5167679","Q517","Q517408","Q52","Q52062","Q520878","Q52090","Q52109","Q521191","Q521868","Q523","Q52418","Q524447","Q525","Q5254619","Q52834234","Q52847","Q529146","Q5292","Q5295","Q5300","Q536814","Q5369651","Q538","Q53859","Q53860","Q53875","Q5402094","Q54050","Q540912","Q540978","Q5409928","Q54111","Q541880","Q541961","Q542036","Q542039","Q54277","Q542929","Q5432","Q544","Q5442839","Q5447188","Q545449","Q5456","Q546297","Q547858","Q548470","Q55","Q550318","Q550383","Q5547","Q55474570","Q555118","Q555291","Q555911","Q556036","Q55638","Q55639","Q55640","Q5580","Q558066","Q55811","Q55813","Q5582","Q5589","Q558929","Q5592","Q5593","Q5594","Q5597","Q5599","Q55996","Q5604","Q560570","Q56155","Q5641190","Q56682909","Q5681","Q5684","Q5690","Q57196","Q573","Q574985","Q575","Q576670","Q577","Q577185","Q5775114","Q577714","Q579258","Q579486","Q580462","Q5811","Q581767","Q5822","Q582577","Q582659","Q582706","Q58296","Q583038","Q5830907","Q583960","Q584","Q584804","Q585259","Q585401","Q58586","Q587309","Q58734","Q5912","Q59138","Q596373","Q5977111","Q5978303","Q59816","Q598188","Q5983857","Q598854","Q600093","Q60022","Q60070","Q60080","Q601053","Q601211","Q60140","Q601401","Q60186","Q602201","Q6034","Q604448","Q604733","Q604984","Q60661","Q60670","Q60837604","Q608613","Q60864","Q6093518","Q609647","Q6101","Q61064","Q61071","Q611474","Q611895","Q614082","Q6186","Q6206","Q620615","Q620620","Q6216","Q622099","Q6223","Q622649","Q622774","Q622896","Q6229","Q623","Q623164","Q623476","Q6235","Q623742","Q6241","Q624546","Q62500","Q62506","Q625356","Q625581","Q6265342","Q6266","Q627319","Q628036","Q62825","Q62912","Q62927","Q6303109","Q630832","Q63116","Q631635","Q633872","Q634","Q635162","Q636109","Q636771","Q638094","Q638608","Q639681","Q641651","Q641668","Q642379","Q643488","Q64403","Q646","Q6472","Q6473564","Q6485344","Q6498784","Q650250","Q6502703","Q6503924","Q650401","Q650906","Q651022","Q6512","Q65131318","Q6527","Q6534","Q653953","Q6540361","Q654562","Q655275","Q655618","Q656365","Q6581615","Q6583","Q6583695","Q659991","Q660359","Q66055","Q66065","Q66100","Q6615800","Q661655","Q66392","Q664","Q666014","Q6661985","Q667340","Q667552","Q668","Q668645","Q669479","Q669701","Q670484","Q670694","Q673166","Q673175","Q674775","Q675287","Q677173","Q677316","Q678909","Q679842","Q68","Q682111","Q683560","Q685342","Q685744","Q6881511","Q690940","Q690959","Q692","Q693288","Q693411","Q694740","Q695497","Q69564","Q698178","Q6987428","Q699511","Q6999","Q700924","Q7020","Q70235","Q704179","Q7060553","Q706633","Q708321","Q70991","Q71084","Q712378","Q712604","Q714196","Q714886","Q714946","Q7150","Q715347","Q715380","Q715391","Q7155","Q715746","Q7162","Q7164","Q7167","Q716915","Q7174","Q7178","Q7181","Q7184","Q7184037","Q7187","Q718909","Q719461","Q719967","Q720060","Q720362","Q7204","Q7207","Q722507","Q723569","Q723643","Q7239","Q7243161","Q7247260","Q7247856","Q724922","Q72499","Q7252","Q7257739","Q725939","Q7260","Q7264","Q726543","Q726805","Q7269","Q7270","Q7275","Q7278","Q728001","Q729","Q7310","Q731298","Q7317","Q7318","Q7322","Q7325","Q7326","Q7328","Q733342","Q735660","Q736","Q736348","Q7364","Q7365","Q737533","Q737560","Q7377","Q737907","Q7380","Q738680","Q73880","Q7391292","Q739302","Q7397","Q74011","Q740308","Q740522","Q7406919","Q741862","Q742139","Q7430","Q7432","Q744738","Q744962","Q745578","Q745799","Q746242","Q746515","Q746863","Q747074","Q747081","Q748720","Q748780","Q749635","Q75","Q750663","Q751124","Q752112","Q753683","Q753858","Q7559698","Q756","Q756914","Q757520","Q75813","Q75865","Q7590","Q759835","Q76026","Q762","Q76325","Q76356","Q764","Q764285","Q7649586","Q76516","Q767253","Q768575","Q7692360","Q769831","Q77120","Q7722","Q7725","Q7727","Q7742","Q774625","Q7748","Q7751","Q7755","Q777913","Q777948","Q7783183","Q7785","Q7791","Q779955","Q7801","Q7804","Q7809","Q780989","Q7813","Q7814","Q781650","Q782287","Q7825","Q783794","Q78484","Q786171","Q7868","Q7873","Q7877","Q7886","Q7886088","Q7891","Q7892","Q7895","Q78974","Q78994","Q79","Q7937","Q794","Q794077","Q7942","Q7944","Q7946","Q79460","Q7950","Q79529","Q796","Q796897","Q79749","Q79782","Q79789","Q79791","Q79854","Q7987","Q79896","Q79899","Q79911","Q79913","Q79927","Q80006","Q80026","Q80034","Q80091","Q80097","Q801","Q8011","Q80113","Q8018","Q80398","Q8043","Q8047","Q805130","Q80535","Q8054","Q80612","Q806176","Q8063","Q8070","Q80702","Q8072","Q80726","Q8074","Q808","Q8084","Q808561","Q80863","Q8094","Q80962","Q80968","Q81041","Q81163","Q81244","Q812880","Q81329802","Q8134","Q81365","Q8137","Q81406","Q81414","Q814722","Q8148","Q815844","Q81659","Q81809","Q818632","Q8188","Q818930","Q81945","Q82049","Q821413","Q822938","Q823002","Q824165","Q82435","Q82480","Q82551","Q82580","Q82622","Q826582","Q82674","Q82682","Q82708","Q82753","Q82778","Q828","Q828047","Q828224","Q82828","Q828435","Q829564","Q82972","Q830012","Q83003","Q830331","Q83034","Q83038","Q83041","Q830626","Q83147","Q83155","Q83169","Q83174","Q83181","Q83219","Q83229","Q83330","Q83356","Q83371","Q83375","Q83405","Q83418","Q83425","Q835309","Q835520","Q835649","Q836036","Q8366","Q838092","Q838119","Q83864","Q83944","Q839452","Q839475","Q83958","Q839954","Q8409","Q8413","Q841424","Q842083","Q842112","Q8425","Q842936","Q843","Q8436","Q844342","Q844586","Q844675","Q844718","Q844930","Q845060","Q845114","Q845118","Q8458","Q8459","Q846094","Q8463","Q846303","Q846324","Q846505","Q846677","Q846882","Q846933","Q847204","Q847797","Q849378","Q849680","Q8502","Q851","Q8513","Q8514","Q852201","Q854415","Q855","Q855270","Q855747","Q856544","Q8575586","Q857809","Q858520","Q85861623","Q858700","Q859","Q860372","Q861581","Q861986","Q8641370","Q865920","Q86670010","Q8669","Q8676","Q868","Q8683","Q868454","Q869548","Q8698","Q8729","Q873000","Q8736","Q8739","Q8740","Q874405","Q875937","Q876333","Q8768","Q877619","Q877674","Q877729","Q877977","Q878070","Q8789","Q8799","Q8805","Q8811","Q8815","Q8819","Q884","Q8880","Q8886","Q8889","Q889","Q8896","Q8901","Q891130","Q891408","Q8958","Q8963","Q89640","Q898312","Q899359","Q900337","Q900557","Q900636","Q901417","Q9041","Q9047","Q9050360","Q9061","Q9068","Q906964","Q907823","Q908686","Q911437","Q911916","Q9121","Q912546","Q912751","Q9128","Q912825","Q913","Q9135","Q9143","Q914425","Q915425","Q9158","Q917440","Q918230","Q9191","Q920890","Q920894","Q921273","Q921474","Q9215","Q921657","Q9235","Q924","Q924424","Q926295","Q927629","Q928","Q93113","Q9312","Q9317","Q9319","Q93241","Q93284","Q93288","Q93304","Q93312","Q93344","Q933483","Q933661","Q934729","Q9353","Q9358","Q9368","Q937330","Q937378","Q9377","Q9381","Q9391","Q93996","Q94","Q9430","Q943313","Q943326","Q9438","Q9440","Q9444","Q944863","Q9458","Q947129","Q948","Q94916","Q953219","Q954078","Q954112","Q955276","Q9554","Q956030","Q958","Q96","Q9606","Q9618","Q9621","Q9631101","Q963619","Q9639","Q9644","Q964699","Q9649","Q965842","Q9662","Q9696","Q971176","Q97284968","Q97371599","Q97371805","Q97372079","Q97372097","Q974","Q975837","Q977345","Q981005","Q982945","Q983263","Q985318","Q988343","Q989","Q99309","Q995745","Q995950")) | {"resultsets": [{"headers": ["page_namespace", "kategori", "antal"], "rowcount": 171}], "runningtime": "0.49"} | eswiki_p |
Query | null | SELECT page_title
FROM page, redirect
WHERE page_id = rd_from
AND rd_interwiki = ''
AND page_namespace = 0
AND NOT EXISTS ( SELECT 1
FROM page
WHERE page_title = rd_title
AND page_namespace = rd_namespace
) | {"resultsets": [{"headers": ["Kategori", "Namnrymd", "Sida", "Antal_sidor"], "rowcount": 1}], "runningtime": "2.52"} | enwiki_p |
Orphaned talk pages | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
FROM
page talkpage
WHERE
talkpage.page_title NOT LIKE '%/%'
AND
talkpage.page_namespace IN (1,11,15,101,119)
AND
NOT EXISTS (
SELECT
1
FROM
page mainpage
WHERE
mainpage.page_namespace=talkpage.page_namespace-1
AND
mainpage.page_title=talkpage.page_title
)
AND
NOT EXISTS (
SELECT
1
FROM
templatelinks
WHERE
talkpage.page_id=tl_from
AND
tl_target_id = 418257
)
LIMIT 100 | {"resultsets": [{"headers": ["CONCAT('* [[:\u062a\u0635\u0646\u064a\u0641:', cat_title, ']]>[[:\u062a\u0635\u0646\u064a\u0641:')", "cat2", "cat_pages"], "rowcount": 426}], "runningtime": "1.33"} | enwiki_p |
AP districts restructure edit in enwiki activity from 20220404 to 20230403 | AP districts restructure edit activity in enwiki from 20220404 to 20230403, with atleast 3 edits, group by each article, with corresponding number of editors and sum of total such edits. | Select
SR.page_title,
COUNT(SR.user_name) as Num_users,
SUM(SR.Edits) AS Tot_Edits
FROM (
SELECT
page_title,
user_name,
COUNT(*) as Edits
FROM page
JOIN categorylinks ON cl_from = page_id AND cl_to="Districts_of_Andhra_Pradesh" AND cl_type="page"
JOIN revision ON page_id = rev_page
JOIN actor ON rev_actor = actor_id
JOIN user ON user_id =actor_user
where rev_actor != 0 AND page_namespace=0
AND LEFT(rev_timestamp,8) >= "20220404" and LEFT(rev_timestamp,8) <= "20230403"
AND NOT (user_name LIKE '%AWB%' OR user_name LIKE '%Bot%' OR user_name LIKE'%bot%' OR user_name LIKE '%BOT%' OR user_name ='CommonsDelinker')
GROUP BY page_title,user_name
HAVING Edits > 2
ORDER BY page_title ASC, Edits DESC
) as SR
GROUP BY page_title; | {"resultsets": [{"headers": ["concat(\"[[user:\", user_name, \"]]\")", "page_len", "page_id", "ecount"], "rowcount": 319}], "runningtime": "1266.86"} | enwiki_p |
thwiki: Stats of sysops | This query list the name o sysops, in a specific wiki. | SELECT
user_name,
IFNULL(del.cnt, 0),
IFNULL(res.cnt, 0),
IFNULL(revdel.cnt, 0),
IFNULL(logdel.cnt, 0),
IFNULL(prot.cnt, 0),
IFNULL(unprot.cnt, 0),
IFNULL(editprot.cnt, 0),
IFNULL(block.cnt, 0),
IFNULL(unblock.cnt, 0),
IFNULL(editblock.cnt, 0),
IFNULL(renames.cnt, 0),
IFNULL(rights.cnt, 0),
(
IFNULL(del.cnt, 0) +
IFNULL(res.cnt, 0) +
IFNULL(revdel.cnt, 0) +
IFNULL(logdel.cnt, 0) +
IFNULL(prot.cnt, 0) +
IFNULL(unprot.cnt, 0) +
IFNULL(editprot.cnt, 0) +
IFNULL(block.cnt, 0) +
IFNULL(unblock.cnt, 0) +
IFNULL(editblock.cnt, 0) +
IFNULL(renames.cnt, 0) +
IFNULL(rights.cnt, 0)
) tot
FROM user JOIN user_groups
ON user_id = ug_user
AND ug_group = 'sysop'
join logging on user_id = logging.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'delete'
AND log_action='delete'
GROUP BY log_user
) del
ON user_id = del.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'delete'
AND log_action='restore'
GROUP BY log_user
) res
ON user_id = res.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'delete'
AND log_action='revision'
GROUP BY log_user
) revdel
ON user_id = revdel.log_user
LEFT JOIN (
SELECT
log_user, COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'delete'
AND log_action = 'event'
GROUP BY log_user
) logdel
ON user_id = logdel.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'protect'
AND log_action = 'protect'
GROUP BY log_user
) prot
ON user_id = prot.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'protect'
AND log_action = 'unprotect'
GROUP BY log_user
) unprot
ON user_id = unprot.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'protect'
AND log_action = 'modify'
GROUP BY log_user
) editprot
ON user_id = editprot.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'block'
AND log_action = 'block'
GROUP BY log_user
) block
ON user_id = block.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'block'
AND log_action = 'unblock'
GROUP BY log_user
) unblock
ON user_id = unblock.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE
log_type = 'block'
AND log_action = 'reblock'
GROUP BY log_user
) editblock
ON user_id = editblock.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE log_type = 'renameuser'
GROUP BY log_user
) renames
ON user_id = renames.log_user
LEFT JOIN (
SELECT
log_user,
COUNT(log_id) cnt
FROM logging
WHERE log_type = 'rights'
AND log_action = 'rights'
GROUP BY log_user
) rights
ON user_id = rights.log_user
where log_timestamp > 20171200000000
ORDER BY tot DESC | {"resultsets": [{"headers": ["date", "reviews", "accepts", "declines", "rejects", "accept %", "decline %", "reject %"], "rowcount": 31}], "runningtime": "18.37"} | thwiki_p |
A10 speedy deletions | This is a list of X2 speedy deletions, code shamelessly stolen from Cryptic. | SELECT DATE_FORMAT(log_timestamp, '%Y-%m-%d %H:%i:%s') AS timestamp,
concat("",log_title) as page,
comment_text
FROM logging
JOIN comment_logging ON comment_id = log_comment_id
WHERE log_type = 'delete'
AND log_action = 'delete'
AND log_namespace = 0
AND comment_text RLIKE '\\bA10\\b'
ORDER BY log_id DESC
LIMIT 1000; | {"resultsets": [{"headers": ["page_title"], "rowcount": 10}], "runningtime": "0.06"} | enwiki |
Locked since January 1 | null | select log_title as account, DATE_FORMAT(log_timestamp, "%Y-%m-%d") as date_locked from logging where log_type = "globalauth" and (log_title like "%(WMF)@global" or log_title like "%WMF@global") and log_timestamp > "20230101"
order by date_locked | {"resultsets": [{"headers": ["reviews", "rc_title", "accepted", "accept %", "declined", "decline %"], "rowcount": 1237}], "runningtime": "14.51"} | metawiki |
lista redaktorów plwikisource z ponad 10 edycjami w ostatnim 3/4 roku | lista redaktorów plwikisource z ponad 10 edycjami w ostatnim roku | USE plwiki_p;
SELECT actor_name FROM
(SELECT COUNT(*) AS n, actor_name
FROM revision JOIN actor ON rev_actor = actor_id
JOIN user_groups ON actor_user = ug_user
JOIN page ON page_id = rev_page
WHERE ug_group = 'editor' AND rev_timestamp > '20230101000000' AND page_namespace % 2 = 0
GROUP BY rev_actor
HAVING n > 10) AS a
order by n DESC
LIMIT 300;
| {"resultsets": [{"headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %", "Blocked"], "rowcount": 33}], "runningtime": "8.45"} | plwikisource_p |
lista redaktorów plwikisource z ponad 10 edycjami w ostatnim 3/4 roku | lista redaktorów plwikisource z ponad 10 edycjami w ostatnim roku | Use plwiki_p;
Select * from revision
limit 30;
| {"resultsets": [{"headers": ["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", "cl_from", "cl_to", "cl_sortkey", "cl_timestamp", "cl_sortkey_prefix", "cl_collation", "cl_type"], "rowcount": 100}], "runningtime": "0.15"} | plwiki_p |
Alexandre056 categories | fr:Wikipédia:Bulletin_des_administrateurs/2023/Semaine_14#Création_de_catégories_à_la_chaîne | SELECT
CONCAT('Catégorie:', page.page_title) AS Category,
page.page_touched AS Date_Created
FROM
page
WHERE
page_namespace = 14
AND page.page_creator = 1495469; | {"resultsets": [{"headers": ["actor_name", "count"], "rowcount": 7244}], "runningtime": "19.38"} | frwiki |
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) -- Exclude IPv6
AND p.page_title NOT LIKE '%.css'
AND p.page_title NOT LIKE '%.cs'
AND p.page_title NOT LIKE '%.js'
AND p.page_title NOT LIKE '%.charset'
AND p.page_title NOT LIKE '%.%.%.xxx'
AND p.page_title NOT IN ('Unknown_user', 'Global_rename_script', 'Sec\"\'27\\u00226\\x3ETest_(WMF)') -- Exclude technical user pages
AND p.page_id NOT IN (
SELECT cl.cl_from FROM
enwiki_p.categorylinks cl
WHERE cl.cl_to IN ('User_soft_redirects', 'Wikipedia_doppelganger_accounts', 'Wikipedia_alternative_accounts') -- Exclude these categories
)
AND p.page_id NOT IN (
SELECT tl.tl_from FROM
enwiki_p.templatelinks tl
WHERE tl.tl_target_id IN (32197, 277052, 282063, 115252, 1968835) -- Exclude pages tagged with sockpuppet template
)
AND p.page_title NOT LIKE '%/%' | {"resultsets": [{"headers": ["actor_name", "page_title", "COUNT(*)"], "rowcount": 50}], "runningtime": "1.38"} | enwiki_p |
Orphaned talk pages | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
FROM
page talkpage
WHERE
talkpage.page_title NOT LIKE '%/%'
AND
talkpage.page_namespace IN (1,11,15,101,119)
AND
NOT EXISTS (
SELECT
1
FROM
page mainpage
WHERE
mainpage.page_namespace=talkpage.page_namespace-1
AND
mainpage.page_title=talkpage.page_title
)
AND
NOT EXISTS (
SELECT
1
FROM
templatelinks
WHERE
talkpage.page_id=tl_from
AND
tl_target_id = 418257
)
LIMIT 100 | {"resultsets": [{"headers": ["up_user", "up_property", "up_value"], "rowcount": 19025}], "runningtime": "20.94"} | enwiki_p |
lista stron zawierających jakieś znaki | lista redaktorów plwikisource z ponad 10 edycjami w ostatnim roku | USE plwikisource_p;
SELECT page_title
FROM page
WHERE page_is_redirect=1 AND page_namespace=0 AND page_title LIKE "%\_-\_%" and page_title Not Like "%/%"
LIMIT 10000;
| {"resultsets": [{"headers": ["page_id", "page_namespace", "page_title", "qid"], "rowcount": 100}], "runningtime": "0.21"} | plwikisource_p |
User Edits to Files in Commons under Specific Categories | Edits made by users participating in Women's Month Datathon on Commons under Specific Categories with the Comments | SELECT r1.rev_timestamp, actor_name, page_title, comment_text, page_id, cl.cl_to
FROM revision_userindex r1
JOIN actor_revision ON actor_id = r1.rev_actor
LEFT JOIN page ON page_id = r1.rev_page
LEFT JOIN comment_revision ON comment_id = r1.rev_comment_id
LEFT JOIN image img ON img.img_name = page.page_title
LEFT JOIN categorylinks cl ON cl.cl_from = page.page_id
WHERE actor_name IN ('Ayshamarjana','Anupamdutta73','Joy sagar Murmu','Sridhar G',
'Meenakshi nandhini','Rajasekhar1961','Sanu N','Mulkh Singh',
'कन्हाई प्रसाद चौरसिया','आर्या जोशी','Kavitha G. Kana','Bijendra Hansda Purudhu',
'J ansari','Kwameghana','Filipinayzd','Gnoeee','Aishik Rehman','Obaid Raza',
'பிரயாணி','कल्पनाशक्ती','Meghdhanu','Sukeerti.Bhopal', 'Salil Kumar Mukherjee',
'~aanzx', 'Ssgapu22', 'K.Venkataramana', 'Kuldeepburjbhalaike', 'Chinmayee_Mishra',
'Kasyap', 'Gabiruban', 'Official Brar harry', 'Simranjeet Sidhu', 'KINNERA ARAVIND')
AND r1.rev_timestamp > '20230320233000'
AND r1.rev_timestamp < '20230331233000'
AND (cl.cl_to LIKE 'Images_from_Wiki_Loves_Folklore_2020_in_India'
OR cl.cl_to LIKE 'Images_from_Wiki_Loves_Folklore_2021_in_India'
OR cl.cl_to LIKE 'Images_from_Wiki_Loves_Folklore_2022_in_India' ) # Filter by specific category
AND (comment_text LIKE '%wbsetlabel-add:1%' #Captions Added
OR comment_text LIKE '%wbsetlabel-set:1%' #Captions Changed
OR comment_text LIKE '%wbeditentity-update:0%' #Statements updated
OR comment_text LIKE '%wbcreateclaim-create:1%' #Statements created/updated
OR comment_text LIKE '%wbsetclaim-create:2%' #Statements Created
OR comment_text LIKE '%wbsetclaim-update:2%' #Statements Updated
OR comment_text LIKE 'added [[Category:%') #Added Category
ORDER BY r1.rev_timestamp desc; | {"resultsets": [], "runningtime": "0.02"} | commonswiki_p |
Page creation timestamp | null | USE eowiki_p;
select page_id, page_title, page_namespace, rev_timestamp from revision join page on revision.rev_page = page.page_id where page_namespace = 0 and rev_parent_id = 0 and LEFT(rev_timestamp,4)="2022" | {"resultsets": [{"headers": ["thanked", "count"], "rowcount": 100}, {"headers": ["thanking", "count"], "rowcount": 100}, {"headers": ["thanked_last_year", "count"], "rowcount": 100}, {"headers": ["thanking_last_year", "count"], "rowcount": 100}], "runningtime": "1.04"} | eowiki_p |
New editors comment at AfD | null | SELECT DISTINCT(CONCAT("Wikipedia:",page_title)) AS title, page_id, actor_name, actor_id, user_editcount, date
FROM (
SELECT page_id, page_title, LEFT(rev_timestamp, 8) as date
FROM page
JOIN revision ON rev_page = page_id AND rev_parent_id = 0
WHERE page_namespace = 4
AND page_title LIKE "Articles_for_deletion/%"
AND page_title NOT LIKE "Articles_for_deletion/Log/%"
AND rev_timestamp > 20230320000000
) AS AfD
JOIN revision ON rev_page = page_id
JOIN actor ON actor_id = rev_actor
JOIN user ON actor_user = user_id
WHERE user_editcount < 1000 | {"resultsets": [{"headers": ["count(page_title)"], "rowcount": 1}], "runningtime": "0.17"} | enwiki_p |
DISPLAYTITLE = Lemma | null | SELECT page_namespace, page_title, pp_value
FROM page, page_props
WHERE pp_page = page_id
AND pp_propname = "displaytitle"
AND REPLACE(page_title, '_', ' ') = pp_value
| {"resultsets": [{"headers": ["dow", "hour", "edits"], "rowcount": 0}], "runningtime": "0.06"} | dewiki_p |
Dagwiki: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 >= 20221206000000 and rc_timestamp <= 20221231000000 and rc_bot = 0 and (rc_source = 'mw.new' or rc_source='mw.edit')
group by actor_name) a
where tdif >= 10
order by tdif desc | {"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_action", "rc_params", "actor_id", "actor_user", "actor_name", "ct_id", "ct_rc_id", "ct_log_id", "ct_rev_id", "ct_params", "ct_tag_id"], "rowcount": 0}], "runningtime": "0.07"} | dagwiki_p |
Pages matching "Special talk:" | Pages starting with "Special talk:" or "Special Talk", existing or deleted.
For [[MediaWiki talk:Titleblacklist#Protected edit request on 10 April 2023]] circa 17 Apr 2023. | SET @pat1 = 'Special\_talk:%';
SET @pat2 = 'Special\_Talk:%';
SELECT CONCAT('[[', REPLACE(page_title, '_', ' '), ']]') AS title,
EXISTS (SELECT 1
FROM page p2
WHERE p2.page_namespace = sq.page_namespace
AND p2.page_title = sq.page_title) AS existing,
COUNT(log_namespace) AS `times deleted`,
GROUP_CONCAT(log_timestamp SEPARATOR ' // ') AS `deletion times`,
GROUP_CONCAT(comment_text SEPARATOR ' // ') AS `deletion comments`,
(SELECT GROUP_CONCAT(comment_text SEPARATOR ' // ')
FROM logging_logindex
JOIN comment_logging ON comment_id = log_comment_id
WHERE log_namespace = page_namespace
AND log_title = page_title
AND log_type = 'protect'
AND log_action = 'protect'
AND log_params LIKE '%create=%') AS `salt comments`
FROM (SELECT page_namespace, page_title
FROM page
WHERE page_namespace = 0
AND (page_title LIKE @pat1
OR page_title LIKE @pat2)
UNION DISTINCT
SELECT ar_namespace, ar_title
FROM archive
WHERE ar_namespace = 0
AND (ar_title LIKE @pat1
OR ar_title LIKE @pat2)) sq
LEFT JOIN logging_logindex ON log_namespace = page_namespace
AND log_title = page_title
AND log_action = 'delete'
AND log_type = 'delete'
LEFT JOIN comment_logging ON comment_id = log_comment_id
GROUP BY page_namespace, page_title
ORDER BY `existing` DESC, page_namespace ASC, page_title ASC;
| {"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_action", "rc_params", "actor_id", "actor_user", "actor_name", "ct_id", "ct_rc_id", "ct_log_id", "ct_rev_id", "ct_params", "ct_tag_id"], "rowcount": 2033}], "runningtime": "2.23"} | enwiki_p |
مُهِمّة إِنقاذ المقالات قد تُحَذف بِسَبَبِ الترجمة الآلية | null | select CONCAT('[[',page.page_title,']]'),page.page_len from categorylinks
join page on page.page_id = categorylinks.cl_from
where cl_to like "مقالات_يتيمة_(أعلام)" and cl_type = "page"
and page.page_namespace in (0)
and page.page_len <= 1500
and page.page_len >= 500 | {"resultsets": [{"headers": ["dow", "hour", "edits"], "rowcount": 20}], "runningtime": "0.08"} | arwiki_p |
Orphaned talk pages | null | SELECT
page_namespace,
page_id,
page_title,
page_is_redirect,
page_len
FROM
page talkpage
WHERE
talkpage.page_title NOT LIKE '%/%'
AND
talkpage.page_namespace IN (1,11,15,101,119)
AND
NOT EXISTS (
SELECT
1
FROM
page mainpage
WHERE
mainpage.page_namespace=talkpage.page_namespace-1
AND
mainpage.page_title=talkpage.page_title
)
AND
NOT EXISTS (
SELECT
1
FROM
templatelinks
WHERE
talkpage.page_id=tl_from
AND
tl_target_id = 418257
)
LIMIT 100 | {"resultsets": [{"headers": ["page_title", "el_to"], "rowcount": 9}], "runningtime": "0.09"} | barwiki_p |
Articles tagged as citation needed on enwp | null | select * from category where cat_title = 'Candidates for speedy deletion as having been created by blocked or banned users'; | {"resultsets": [{"headers": ["\u0b87\u0ba8\u0bcd\u0ba8\u0bc2\u0bb2\u0bbf\u0ba9\u0bcd \u0bae\u0bc6\u0baf\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0baa\u0bcd\u0baa\u0ba3\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b88\u0b9f\u0bc1\u0baa\u0b9f\u0bcd\u0b9f\u0bcb\u0bb0\u0bcd:<br/>"], "rowcount": 14}], "runningtime": "0.15"} | enwiki_p |
All Blocked Admins | null | SELECT ug_group, CONCAT('{{userrights|', ipb_address, '}}') as `Username`, user_editcount as `Edit count`, comment_text as `Block reason`
FROM ipblocks
JOIN user ON ipb_user = user_id
JOIN user_groups ON ug_user = user_id
JOIN comment ON comment_id = ipb_reason_id
WHERE ug_group != 'extendedconfirmed'
ORDER BY user_editcount ASC LIMIT 1000; | {"resultsets": [{"headers": ["\u0b87\u0ba8\u0bcd\u0ba8\u0bc2\u0bb2\u0bbf\u0ba9\u0bcd \u0bae\u0bc6\u0baf\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0baa\u0bcd\u0baa\u0ba3\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b88\u0b9f\u0bc1\u0baa\u0b9f\u0bcd\u0b9f\u0bcb\u0bb0\u0bcd:<br/>"], "rowcount": 15}], "runningtime": "0.15"} | enwiki_p |
Blocked User | null | SELECT log_title
FROM logging
WHERE log_type = 'block'
ORDER BY log_timestamp DESC
LIMIT 70;
| {"resultsets": [{"headers": ["page_title", "cl_from", "cl_to", "cl_sortkey", "cl_timestamp", "cl_sortkey_prefix", "cl_collation", "cl_type"], "rowcount": 2}], "runningtime": "0.06"} | jawikiversity_p |
plwikisource - Autor:Józef Ignacy Kraszewski | lista page_id stron z przestrzeni Strona do których są linki ze stron z przestrzeni Indeks (jako pagelinks lub jako templatelinks), ale tylko z tych stron z przestrzeni indeks, które linkują do "Autor:Józef Ignacy Kraszewski" (jako pagelink) | set @ns_strona = 100;
set @ns_indeks = 102;
set @target_ns = 104;
set @target_title = "Józef_Ignacy_Kraszewski";
select
distinct p_strona.page_id,
p_strona.page_title
from page as p_strona
left join linktarget as linktarget_strona
on linktarget_strona.lt_namespace = @ns_strona and linktarget_strona.lt_title = p_strona.page_title
left join templatelinks as templatelinks_strona
on templatelinks_strona.tl_target_id = linktarget_strona.lt_id
left join pagelinks as pagelinks_strona
on pagelinks_strona.pl_namespace = @ns_strona and pagelinks_strona.pl_title = p_strona.page_title
where
(templatelinks_strona.tl_from is not null and templatelinks_strona.tl_from_namespace = @ns_indeks and exists (
select page_id
from pagelinks as pagelinks_tl
where
pagelinks_tl.pl_from = templatelinks_strona.tl_from and
pagelinks_tl.pl_namespace = @target_ns and
pagelinks_tl.pl_title = @target_title
))
or
(pagelinks_strona.pl_from is not null and pagelinks_strona.pl_from_namespace = @ns_indeks and exists (
select page_id
from pagelinks as pagelinks_pl
where
pagelinks_pl.pl_from = pagelinks_strona.pl_from and
pagelinks_pl.pl_namespace = @target_ns and
pagelinks_pl.pl_title = @target_title
))
; | {"resultsets": [], "runningtime": "0.03"} | plwikisource_p |
Tewiki Date-wise pages published from Content translation | null | use cebwiki_p;
select
substr(rev_timestamp, 1, 8) as Datee,
count(substr(rev_timestamp, 1, 8)) as Translated_articles
from
change_tag,
change_tag_def,
revision,
page
where
ct_tag_id = ctd_id
and rev_id = ct_rev_id
and page_id = rev_page
and page_namespace = 0
and page_is_redirect = 0
and ctd_name = "contenttranslation-v2"
and rev_parent_id = 0
and substr(rev_timestamp, 1, 4) = "2022"
group by substr(rev_timestamp, 1, 8)
order by
rev_timestamp | {"resultsets": [{"headers": ["page_title"], "rowcount": 12}], "runningtime": "1.02"} | cebwiki_p |
hewiki most prolific translators | null | use cebwiki_p;
SELECT
rev_actor,
actor_name,
count(revision.rev_id) as articles_created
FROM
change_tag,
actor,
revision
WHERE
revision.rev_parent_id = 0 AND
ct_tag_id = (select ctd_id from change_tag_def where ctd_name = 'contenttranslation') AND
rev_id = ct_rev_id AND
rev_actor = actor_id
GROUP BY
rev_actor
ORDER BY
articles_created DESC
LIMIT
100; | {"resultsets": [{"headers": ["cl_to", "count_cl_to"], "rowcount": 12223}], "runningtime": "41.64"} | cebwiki_p |
show enwiki_p tables | null | SHOW TABLES FROM enwiki_p; | {"resultsets": [{"headers": ["rev_timestamp", "page_title"], "rowcount": 435}], "runningtime": "0.82"} | enwiki_p |
Self-unblocks | On enwiki since 1 January 2017.
Note the query can be a bit slow, there are a lot of log entries to go through. | null | {"resultsets": [{"headers": ["concat('{{\u0648\u064a\u0643\u064a\u0628\u064a\u062f\u064a\u0627:\u0623\u0633\u0628\u0648\u0639 \u0627\u0644\u0648\u064a\u0643\u064a/\u0642\u0627\u0644\u0628 \u062d\u062c\u0645 \u0627\u0644\u0645\u0642\u0627\u0644\u06292|\u0627\u0633\u0645=','{{#invoke:WikidataIB|getLink|{{#invoke:WikidataIB|getEntityFromTitle|',page_title,'|site=enwiki}}}}','|\u0647\u062f\u0641 = 50|\u0645\u0633\u062a\u062e\u062f\u0645 = |\u0645\u0644\u0627\u062d\u0638\u0629=}}')"], "rowcount": 55}], "runningtime": "0.67"} | enwiki |
Edit counts by time of +sysop | See original query for further explanation.
Changes: removing bots and accounting for early admin right grants (third OR condition) | WITH admins (a_timestamp, a_name, a_actor) AS
(
SELECT log_timestamp, actor_name, actor_id
FROM logging
JOIN actor_logging ON actor_name = REPLACE(log_title, '_', ' ')
JOIN comment on log_comment_id = comment_id
WHERE log_type = 'rights'
AND log_action = 'rights'
AND ( -- pre-Nov-2012 format
(log_params LIKE '%\n%sysop%' -- new groups include sysop
AND log_params NOT LIKE '%sysop%\n%' AND NOT log_params LIKE '%bot%' AND NOT comment_text LIKE '%Wikipedia:Bots%') -- old groups don't include sysop
OR -- post-Nov-2012 format
(log_params LIKE '%newgroups%sysop%' -- new groups include sysop
AND log_params NOT LIKE '%oldgroups%sysop%newgroups%' AND NOT log_params LIKE '%bot%' AND NOT comment_text LIKE '%Wikipedia:Bots%') -- old groups don't include sysop
OR -- early sysops
(comment_text LIKE '%+sysop%' AND NOT comment_text LIKE '%Wikipedia:Bots%' AND NOT log_params LIKE '%bot%')
)
AND actor_name NOT LIKE '%bot'
AND actor_name not like '%Bot'
GROUP BY actor_name
)
SELECT a_timestamp,
a_name,
SUM(edits_live_pre) AS edits_live_pre,
SUM(edits_deleted_pre) AS edits_deleted_pre,
SUM(edits_live_pre) + SUM(edits_deleted_pre) AS edits_total_pre,
SUM(edits_live_post) AS edits_live_post,
SUM(edits_deleted_post) AS edits_deleted_post,
SUM(edits_live_post) + SUM(edits_deleted_post) AS edits_total_post
FROM
(
SELECT a_timestamp,
a_name,
SUM(CASE WHEN rev_timestamp < a_timestamp THEN 1 ELSE 0 END) AS edits_live_pre,
SUM(CASE WHEN rev_timestamp < a_timestamp THEN 0 ELSE 1 END) AS edits_live_post,
0 AS edits_deleted_pre,
0 AS edits_deleted_post
FROM admins
JOIN revision ON rev_actor = a_actor -- revision_userindex *should* be indexed here and revision *shouldn't*, but the reverse is the case, and I have no idea why
GROUP BY a_timestamp, a_name
UNION
SELECT a_timestamp,
a_name,
0,
0,
SUM(CASE WHEN ar_timestamp < a_timestamp THEN 1 ELSE 0 END),
SUM(CASE WHEN ar_timestamp < a_timestamp THEN 0 ELSE 1 END)
FROM admins
JOIN archive_userindex ON ar_actor = a_actor
GROUP BY a_timestamp, a_name
) sq
GROUP BY a_timestamp, a_name; | {"resultsets": [{"headers": ["user_name", "user_editcount"], "rowcount": 34}], "runningtime": "0.81"} | enwiki_p |
lista redaktorów plwikisource z ponad 10 edycjami w ostatnim 3/4 roku | lista redaktorów plwikisource z ponad 10 edycjami w ostatnim roku | USE plwiki_p;
select *
from page
where page_title like "%\"%"
limit 100;
| {"resultsets": [{"headers": ["user_name", "user_editcount"], "rowcount": 29}], "runningtime": "0.33"} | plwiki_p |
Lista indeksów wikiprojektu Kraszewski 2012 | null | # lista indeksów linkujących do Kraszewskiego
SELECT page_id, page_title
FROM pagelinks JOIN page ON pl_from=page_id
WHERE pl_title='Józef_Ignacy_Kraszewski' AND pl_namespace=104
AND pl_from_namespace=102 AND page_content_model='proofread-index'
AND page_id NOT IN (199070,323326,693304,693305,693309,694580,694582,694583,694584,694585,694586,694590,694593,694594)
; | {"resultsets": [{"headers": ["user_name", "user_editcount"], "rowcount": 1821}], "runningtime": "1.96"} | plwikisource_p |
Liczba stron wikiprojektu Kraszewski wg statusu | null | # status istniejących stron z indeksów Kraszewskiego
SELECT pp_value, `Bez treści` AS "status", COUNT(*) AS liczba
FROM (SELECT page_id AS ind_id
FROM pagelinks JOIN page ON pl_from=page_id
WHERE pl_title='Józef_Ignacy_Kraszewski' AND pl_namespace=104 AND pl_from_namespace=102
AND page_content_model='proofread-index'
AND page_id NOT IN (199070,323326,693304,693305,693309,694580,694582,694583,694584,694585,694586,694590,694593,694594)
) AS ind JOIN
(SELECT pl_from, page_namespace, page_title, page_id
FROM pagelinks JOIN page ON pl_title=page_title AND pl_namespace=page_namespace
WHERE page_namespace=100
UNION SELECT tl_from AS pl_from, page_namespace, page_title, page_id
FROM templatelinks JOIN linktarget ON tl_target_id=lt_id JOIN page ON lt_title=page_title AND lt_namespace=page_namespace
WHERE page_namespace=100
) AS p ON ind_id=pl_from JOIN page_props ON page_id=pp_page JOIN
(VALUES (0,'Bez treści'), (1,'Przepisana'), (2,'Problemy'), (3,'Skorygowana'), (4,'Uwierzytelniona')) AS v ON pp_value=v.0
WHERE pp_propname='proofread_page_quality_level'
GROUP BY pp_value
;
| {"resultsets": [{"headers": ["p", "p\u0422\u041c\u041f1", "p\u0422\u041c\u041f2", "new_text"], "rowcount": 1}], "runningtime": "0.07"} | plwikisource_p |
enwiki random cats1 | null | SELECT CONCAT("Category talk:",cat_title,"")
FROM category
WHERE cat_title RLIKE "^C[Aa]"
#ORDER BY RAND()
LIMIT 33333;
| {"resultsets": [{"headers": ["p", "p\u0422\u041c\u041f1", "p\u0422\u041c\u041f2", "new_text"], "rowcount": 1}], "runningtime": "0.06"} | enwiki_p |