title stringlengths 1 212 | description stringlengths 1 4.39k ⌀ | query stringlengths 1 65.5k ⌀ | extra_info stringlengths 18 31.6k | wikidb stringlengths 4 26 ⌀ |
|---|---|---|---|---|
Find number of files present on Commons on April 1st | null | use commonswiki_p;
select img_media_type, count(*) as num from image where img_timestamp < 20190417000000 group by img_media_type; | {"runningtime": "0.11", "resultsets": [{"rowcount": 0, "headers": ["page_title"]}]} | null |
Categories with "parameter" in their title | null | USE etwiki_p;
SELECT page_title
FROM page
WHERE
page_namespace = 14
AND page_title LIKE '%parameet%'
LIMIT 50; | {"runningtime": "0.15", "resultsets": [{"rowcount": 1, "headers": ["page_title", "page_is_redirect"]}]} | null |
Women in STEM | List of articles created for Women in STEM article contest on UkWiki | USE ukwiki_p;
SET SESSION group_concat_max_len = 10000;
SELECT @rownum := @rownum + 1 AS rank,
IFNULL(actor_name, 'Всього'),
created,
total_len,
articles
FROM
(
SELECT
CONCAT('[[Користувач:', actor_name, '|', actor_name, ']]') as actor_name,
COUNT(1) AS created,
SUM(article.page_len) as... | {"runningtime": "1.36", "resultsets": [{"rowcount": 160, "headers": ["page_title", "page_is_redirect AND 'redirect'"]}]} | null |
Checking for usernames with "/" | These should not exist, because they would interfere with the subpage model. | SELECT *
FROM user
WHERE user_name LIKE "%/%"
LIMIT 100 | {"runningtime": "459.89", "resultsets": [{"rowcount": 2050, "headers": ["ll_count", "title_de", "title_en", "title_cs", "title_pl", "title_hu", "wb_item"]}]} | null |
Replica revisions query with CID 1232 | null | SELECT g.page_id, g.page_title, g.page_namespace from page g WHERE g.page_namespace IN (120, 122, 146);
| {"runningtime": "175.70", "resultsets": [{"rowcount": 18766, "headers": ["rev_page", "rev_comment_id", "rev_timestamp", "comment_id", "comment_text", "COUNT(comment_id)"]}]} | null |
Replica revisions query with CID 1232 | null | use wikidatawiki_p;
SELECT g.page_id, g.page_title, g.page_namespace from page g WHERE g.page_namespace IN (122) limit 10; | {"runningtime": "0.20", "resultsets": [{"rowcount": 10, "headers": ["rev_id", "rev_page", "rev_text_id", "rev_comment_id", "rev_user", "rev_user_text", "rev_actor", "rev_timestamp", "rev_minor_edit", "rev_deleted", "rev_len", "rev_parent_id", "rev_sha1", "rev_content_model", "rev_content_format"]}]} | null |
User pages for nonexistent users (II) | null | SELECT COUNT(*)
FROM page
LEFT JOIN user ON REGEXP_REPLACE(user_name, ' ', '_') = REGEXP_REPLACE(page_title, '/.*', '')
WHERE
page_namespace IN (2,3) | {"runningtime": "0.67", "resultsets": [{"rowcount": 100, "headers": ["page_title"]}]} | null |
Proof-reader pages for a book | Change the actor_name and page_title for your search.
Choose either validated or proofread line and comment another | use tawikisource_p;
SELECT distinct page_title as Title, actor_name as user, comment_text as comment
FROM revision
join page ON page_id = rev_page
join comment on comment_id = rev_comment_id
join actor ON rev_actor = actor_id where
#(comment_text like "%மெய்ப்புப் பார்க்கப்பட்டவை%" or comment_text like "%Proofread%")
... | {"connection_id": 2556681} | null |
WikiDaheim 2019 media by date | null | USE commonswiki_p;
SELECT /* SLOW_OK */ SUBSTR(img_timestamp, 1, 8) AS DAY, COUNT(image.img_name)
FROM image, page, categorylinks
WHERE page.page_id=categorylinks.cl_from
AND image.img_name = page.page_title
AND .categorylinks.cl_to = "Media_from_WikiDaheim_2019_in_Austria/all"
AND img... | {"connection_id": 2812177} | null |
Replica revisions query with CID 1232 | null | use wikidatawiki_p;
SELECT * from page g WHERE g.page_namespace IN (120) limit 10; | {"runningtime": "0.08", "resultsets": [{"rowcount": 0, "headers": ["CONCAT('# [[', page_title, ']]')"]}]} | null |
Real list of pages in CAT:G6 | null | SELECT pg.page_id AS "page ID", pg.page_title AS "pages" FROM page AS pg
LEFT JOIN categorylinks AS cl ON cl.cl_from = pg.page_id
WHERE cl.cl_to = "Candidates_for_uncontroversial_speedy_deletion"
| {"runningtime": "8.39", "resultsets": [{"rowcount": 436, "headers": ["CONCAT('# [[', page_title, ']]')"]}]} | null |
Replica revisions query with CID 1232 | null | select * from revision_userindex limit 10 | {"runningtime": "13.54", "resultsets": [{"rowcount": 462, "headers": ["CONCAT('# [[', page_title, ']]')"]}]} | null |
Replica revisions query with CID 1232 | null | use wikidatawiki_p;
SELECT g.page_id, g.page_title, g.page_namespace from page g WHERE g.page_namespace IN (120, 122, 146) limit 10; | {"runningtime": "5.25", "resultsets": [{"rowcount": 178, "headers": ["page_name", "link"]}]} | null |
# | null | USE arwiki_p;
SELECT
creations_ns0.user,
first_edit.timestamp as first_edit,
creations_ns0.count as article_creations,
creations_ns10.count as template_creations,
creations_ns12.count as help_creations,
creations_ns14.count as category_creations,
creations_ns100.count as portal_creations,
creations_ns104.count a... | {"connection_id": 4094216} | null |
WikiDaheim users 2019 | null | USE commonswiki_p;
SELECT /* SLOW_OK */ DISTINCT actor_name AS user, COUNT(image.img_name) as img_count
FROM actor, image, page, categorylinks
WHERE page.page_id=categorylinks.cl_from
AND actor.actor_id = image.img_actor
AND image.img_name = page.page_title
AND categorylinks.cl_to = "... | {"connection_id": 4423918} | null |
the username and editcounts of a single arabic users | null | use arwiki_p;
select user_name, user_id, user_editcount, user_registration from user where user_name = 'Ircpresident';
| {"connection_id": 3825963} | null |
WikiDaheim users 2019 (by first revision, by uploader) | null | USE commonswiki_p;
SELECT /* SLOW_OK */ DISTINCT actor_name AS user, COUNT(image.img_name) as img_count
FROM actor, revision, image, page, categorylinks
WHERE page.page_id=categorylinks.cl_from
AND actor.actor_id = revision.rev_actor
AND image.img_name = page.page_title
and revision.r... | {"runningtime": "84.55", "resultsets": [{"rowcount": 1, "headers": ["num"]}, {"rowcount": 2, "headers": ["num"]}, {"rowcount": 2, "headers": ["num"]}, {"rowcount": 2, "headers": ["rev_id", "rev_page"]}, {"rowcount": 10, "headers": ["user_name", "edits"]}]} | null |
Swedish Week Improved | List of articles created for the Investigative Journalism Week on UkWiki | USE ukwiki_p;
SET SESSION group_concat_max_len = 10000;
SELECT @rownum := @rownum + 1 AS rank,
IFNULL(actor_name, 'Всього'),
created,
total_len,
articles
FROM
(
SELECT
CONCAT('[[Користувач:', actor_name, '|', actor_name, ']]') as actor_name,
COUNT(1) AS created,
SUM(article.page_len) as... | {"runningtime": "21.37", "resultsets": [{"rowcount": 3, "headers": ["Voce", "Flag"]}]} | null |
Swedish Week New | List of articles created for the Investigative Journalism Week on UkWiki | USE ukwiki_p;
SET SESSION group_concat_max_len = 10000;
SELECT @rownum := @rownum + 1 AS rank,
IFNULL(actor_name, 'Всього'),
created,
total_len,
articles
FROM
(
SELECT
CONCAT('[[Користувач:', actor_name, '|', actor_name, ']]') as actor_name,
COUNT(1) AS created,
SUM(article.page_len) as... | {"runningtime": "1.57", "resultsets": [{"rowcount": 212, "headers": ["Voce", "Flag"]}]} | null |
Swedish Week Improved 2 | null | USE ukwiki_p;
SET SESSION group_concat_max_len = 10000;
SELECT @rownum := @rownum + 1 AS rank,
IFNULL(article, 'Всього'),
actor_number,
size_increase,
actors
FROM
(
SELECT
CONCAT('[[', REPLACE(page_title, '_', ' '), ']]') as article,
COUNT(1) AS actor_number,
SUM(actor_size_increase) a... | {"runningtime": "1.42", "resultsets": [{"rowcount": 209, "headers": ["Voce", "Flag"]}]} | null |
Aliases تحتوي كلمة إرهاب | null | use wikidatawiki_p;
select * from wb_terms
where term_type = "alias"
and term_language = "ar"
and term_text like "%إرهاب%"; | {"runningtime": "0.23", "resultsets": [{"rowcount": 1, "headers": ["CONCAT('# [[',REPLACE(page_title,'_',' '),']]')"]}]} | null |
فارغ | null | null | {"runningtime": "12.43", "resultsets": [{"rowcount": 98, "headers": ["page_title"]}]} | null |
Fiwiki top 2019 editors | null | SET @first_rev_id_in_2019 = 17811427 ;
SET @first_timestamp = 20190000000000 ;
select
count(distinct(rev_id)) as c,
actor_name
from
fiwiki_p.revision,
fiwiki_p.actor
where
actor_id=rev_actor
and rev_timestamp > @first_timestamp
and rev_id > @first_rev_id_in_2019
group by
actor_id
order by c... | {"runningtime": "65.29", "resultsets": [{"rowcount": 136, "headers": ["user_name", "comment_text", "ipb_create_account"]}]} | null |
Old ویرایش templates in fawiki | null | use fawiki_p;
select distinct page_title
from page
join templatelinks
on tl_from=page_id
join revision
on rev_page=page_id
where page_latest < '20190625000000'
-- where page_touched < '20190625000000'
and page_namespace=0
and tl_from_namespace=0
and tl_namespace=10
and tl_title='ویرایش'; | {"runningtime": "100.51", "resultsets": [{"rowcount": 460, "headers": ["article", "recent_edits", "inbound_wikilinks"]}]} | null |
Wikimedia Commons media with Czech description needing categories | null | SELECT CONCAT('*[[:File:', page_title, ']]') AS wikitext FROM commonswiki_p.page JOIN commonswiki_p.categorylinks ON cl_from = page_id JOIN commonswiki_p.templatelinks ON tl_from = page_id WHERE page_namespace = 6 AND cl_to IN (SELECT page_title FROM commonswiki_p.categorylinks JOIN commonswiki_p.page ON cl_from = page... | {"connection_id": 8549645} | null |
Fiwiki public art stats. Editors | null | use fiwiki_p;
select
floor(r1.rev_timestamp/10000000000) as d,
count(distinct(p1.page_title)) as edited_page_count,
count(distinct(actor_user)) as editor_count
from
page as p1,
categorylinks as cl,
revision as r1,
actor as a1
where
r1.rev_page=p1.page_id
and r1.rev_actor=a1.actor_i... | {"runningtime": "8.70", "resultsets": [{"rowcount": 1737, "headers": ["img_name", "img_timestamp", "img_user", "oi_user"]}]} | null |
Rolling back my bot | null | SELECT
revision_userindex.rev_page,
revision_userindex.rev_comment_id,
revision_userindex.rev_user,
revision_userindex.rev_minor_edit,
page.page_namespace,
page.page_title,
comment.comment_text
FROM
revision_userindex
LEFT JOIN page ON page_id = rev_page
LEFT JOIN comment ON comment_id = rev_comment... | {"runningtime": "40.19", "resultsets": [{"rowcount": 9255, "headers": ["page_id", "page_namespace", "page_title", "page_restrictions", "page_is_redirect", "page_is_new", "page_random", "page_touched", "page_links_updated", "page_latest", "page_len", "page_content_model", "page_lang"]}]} | null |
Halaman mengandung kategori merah | null | use idwiki_p;
SELECT
page_title, GROUP_CONCAT(cl_to)
FROM page
inner join
categorylinks
on cl_from = page_id
where page_is_redirect = 0
and page_namespace = 0
and cl_to not in (select page_title from page where page_namespace = 14 and page_is_redirect = 0 and cl_to = page_title)
group by page_title
limit 1000; | {"runningtime": "3.88", "resultsets": [{"rowcount": 300, "headers": ["page_title", "creation_date"]}]} | null |
Halaman pembicaraan terpanjang | null | use idwiki_p;
select distinct page_title, page_namespace, page_len from page
inner join revision
on rev_page = page_id
where page_len >1000
and page_namespace%2=1
and page_is_redirect = 0
order by page_len desc
limit 100; | {"runningtime": "0.29", "resultsets": [{"rowcount": 4, "headers": ["rev_id", "rev_page", "rev_text_id", "rev_comment_id", "rev_user", "rev_user_text", "rev_actor", "rev_timestamp", "rev_minor_edit", "rev_deleted", "rev_len", "rev_parent_id", "rev_sha1", "rev_content_model", "rev_content_format"]}]} | null |
Users eligible to vote on skwiki | null | USE skwiki_p;
SELECT
user_name, user_registration, user_editcount
FROM
user
WHERE
user_registration < DATE_FORMAT(DATE_SUB(now() /* '2019-06-24 00:07:00' */, INTERVAL 2 MONTH), '%Y%m%d%H%i%s') AND
user_editcount >= 200 AND
user_id IN (SELECT DISTINCT actor_user FROM revision r, actor a WHERE a.... | {"runningtime": "7.21", "resultsets": [{"rowcount": 10, "headers": ["log_id", "log_type", "log_action", "log_timestamp", "log_actor", "log_namespace", "log_title", "log_comment_id", "log_params", "log_deleted", "log_page", "actor_id", "actor_user", "actor_name", "user_id", "user_name", "user_real_name", "user_password"... | null |
#/mainspace pages in Category:Living people 190705 | Number of pages in the enwiki main namespace that are in [[Category:Living people]]. For [[w:en:User:Levivich/Footy AfDs]]. | SELECT COUNT(*)
FROM categorylinks
JOIN page
ON page_id = cl_from
WHERE page_namespace = 0
AND cl_to = 'Living_people'; | {"runningtime": "13.14", "resultsets": [{"rowcount": 66, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount"]}]} | null |
#/living footballers in main namespace 190705 | Number of pages in the enwiki main namespace that are in [[Category:Living people]] and transclude {{Infobox football biography}}. For [[w:en:User:Levivich/Footy AfDs]]. | SELECT COUNT(*)
FROM page
JOIN templatelinks
ON page_id = tl_from
JOIN categorylinks
ON page_id = cl_from
WHERE page_namespace = 0
AND cl_to = 'Living_people'
AND tl_namespace = 10
AND tl_title = 'Infobox_football_biography'; | {"runningtime": "1.13", "resultsets": [{"rowcount": 0, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration"]}]} | null |
Tool Labs metadata database | Content of the metadata database; see https://wikitech.wikimedia.org/wiki/Help:Tool_Labs/Database#Metadata_database for more information. | use meta_p;
SELECT * FROM wiki; | {"runningtime": "0.22", "resultsets": [{"rowcount": 1, "headers": ["log_id", "log_type", "log_action", "log_timestamp", "log_actor", "log_namespace", "log_title", "log_comment_id", "log_params", "log_deleted", "log_page"]}]} | null |
Articles without wikidata item | null | use idwiki_p;
select CONCAT ("#[[",page_title,"]]")
from page
where page_id not in (select pp_page from page_props where pp_propname = "wikibase_item" and pp_page = page_id)
and page_namespace = 0
and page_is_redirect = 0
limit 100;
| {"runningtime": "28.36", "resultsets": [{"rowcount": 1, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration"]}, {"rowcount": 100, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration"]}]} | null |
Latest contribution date by users | null | use idwiki_p;
select user_id, user_name, user_editcount, user_registration
from user
where lcase (user_name) not like "%bot%"
and user_editcount >100
LIMIT 100; | {"connection_id": 9650079} | null |
Most thanked users | null | USE idwiki_p;
SELECT log_title, COUNT(*) FROM logging WHERE log_type="thanks" GROUP BY log_title ORDER BY COUNT(*) DESC LIMIT 500; | {"runningtime": "3.49", "resultsets": [{"rowcount": 1, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration"]}, {"rowcount": 50, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration"]}]} | null |
Number of articles 2017 | null | use idwiki_p;
SELECT COUNT(*) AS "jumlah"
FROM revision r
join page p on p.page_id=r.rev_page
WHERE p.page_namespace=0 and p.page_is_redirect=0 and r.rev_timestamp between 20170101000000 and 20171228000000 and r.rev_parent_id=0
ORDER BY COUNT(*) DESC
LIMIT 1; | {"runningtime": "14.96", "resultsets": [{"rowcount": 1, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration"]}, {"rowcount": 18, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration", "log_params"]}]} | null |
Number of registered users 2018 | null | use idwiki_p;
SELECT COUNT(user_name)
FROM user
WHERE user_registration BETWEEN 20180101000000 AND 20181228000000; | {"connection_id": 9668980} | null |
anononlyanons.py | https://github.com/mzmcbride/database-reports/blob/master/reports/general/anononlyanons.py | use idwiki_p;
SELECT
ipb_address,
CONVERT(ipb_by_text USING utf8),
ipb_timestamp,
ipb_expiry,
CONVERT(ipb_reason USING utf8)
FROM ipblocks_compat
WHERE ipb_expiry > DATE_FORMAT(DATE_ADD(NOW(),INTERVAL 2 YEAR),'%Y%m%d%H%i%s')
AND ipb_expiry != "in... | {"runningtime": "3.42", "resultsets": [{"rowcount": 1000, "headers": ["rev_id", "rev_page", "rev_text_id", "rev_comment_id", "rev_actor", "rev_timestamp", "rev_minor_edit", "rev_deleted", "rev_len", "rev_parent_id", "rev_sha1", "rev_content_model", "rev_content_format", "actor_id", "actor_user", "actor_name", "ct_id", ... | null |
Top 10.000 linked disambiguation pages | null | use idwiki_p;
SELECT CONCAT('# [[', pl.pl_title, ']] (', COUNT(pl.pl_from), ' Links)')
FROM pagelinks pl
INNER JOIN page p ON (p.page_title = pl.pl_title AND p.page_namespace = pl.pl_namespace)
INNER JOIN page_props pp ON (pp.pp_page = p.page_id AND pp.pp_propname = 'disambiguation')
WHERE pl.pl_namespace = 0
AND pl.pl... | {"runningtime": "0.15", "resultsets": [{"rowcount": 0, "headers": ["actor_id", "actor_user", "actor_name"]}]} | null |
Empty article talks on plwiki | null | USE plwiki_p;
SELECT concat("# [[Dyskusja:",page_title,"]]") AS page_title
FROM plwiki_p.page
WHERE page_namespace = 1 AND page_len = 0
ORDER BY page_title; | {"runningtime": "14.02", "resultsets": [{"rowcount": 25, "headers": ["Suspicious_file_title"]}]} | null |
Uncategorized templates on arwiki | null | use arwiki_p;
select CONCAT('قالب:',page_title,'') as page_title
from page
left outer join categorylinks
on cl_from = page_id
where cl_from is null
and page_namespace = 10
and page_title not like '%ملعب'
and page_title not like 'مختبر'
;
| {"runningtime": "2.99", "resultsets": [{"rowcount": 46, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 10, "headers": ["linter_cat", "count(*)"]}, {"rowcount": 16, "headers": ["page_namespace", "count(*)"]}]} | null |
zhwikt: article title ends with "་" | null | USE zhwiktionary_p;
SELECT page_title
FROM page
WHERE page_title LIKE "%་"
AND page_namespace = 0
ORDER BY page_title ASC | {"runningtime": "0.17", "resultsets": [{"rowcount": 10, "headers": ["rc_timestamp", "rc_actor", "rc_title", "rc_this_oldid", "rc_old_len", "rc_new_len", "actor_name"]}]} | null |
Redirects to nonexistent pages | null | # Turns outs this is handled by AnomieBOT III
/*SELECT rd_from, rd_namespace
FROM redirect
LEFT JOIN page ON page_namespace = rd_namespace AND page_title = rd_title
-- WHERE rd_interwiki IS NULL
-- AH, this is empty because rd_interwiki is not used on the English Wikipeda; soft redirects are used instead.
WHERE page_id... | {"runningtime": "0.22", "resultsets": [{"rowcount": 25, "headers": ["user_id", "is_official_bot"]}]} | null |
Number of lexemes with a single form without grammatical features | We can’t directly query for the grammatical features of a lexeme in SQL, but except in rare special cases, a lexeme with two links from its page will have a language and a lexical category (which are not the same and therefore two links) and no grammatical features on any of its forms (unless they match one of the othe... | USE `wikidatawiki_p`;
SELECT COUNT(*)
FROM `page_props`
WHERE `pp_propname` = 'wbl-forms'
AND `pp_sortkey` = 1
AND (
SELECT COUNT(*)
FROM `pagelinks`
WHERE `pl_from` = `pp_page`
) = 2; | {"runningtime": "0.17", "resultsets": [{"rowcount": 1, "headers": ["user_id"]}]} | null |
Number of lexemes with no forms | null | USE `wikidatawiki_p`;
SELECT COUNT(*)
FROM `page_props`
WHERE `pp_propname` = 'wbl-forms'
AND `pp_sortkey` = 0; | {"runningtime": "3.27", "resultsets": [{"rowcount": 36, "headers": ["log_actor", "blocked_user_name"]}]} | null |
Commons Admins | null | USE
commonswiki_p;
SELECT
user_name
FROM
user
JOIN user_groups ON user_id = ug_user
WHERE
ug_group = 'sysop'
ORDER BY
user_name | {"runningtime": "9.06", "resultsets": [{"rowcount": 36, "headers": ["log_actor", "actor_user", "blocked_user_name"]}]} | null |
Doc pages without templates | null | SELECT page_title, SUBSTR(page_title, 1, LENGTH(page_title) - 4) FROM page
WHERE page_namespace = 10
AND page_title LIKE '%/doc'
AND page_title NOT LIKE 'Editnotices/%'
AND SUBSTR(page_title, 1, LENGTH(page_title) - 4) NOT IN (SELECT page_title FROM page WHERE page_namespace = 10)
AND page_is_redirect = 0
LIMIT 100 | {"runningtime": "0.19", "resultsets": [{"rowcount": 1, "headers": ["GROUP_CONCAT(page2_title SEPARATOR \"; \")"]}]} | null |
Hewiki multiwiki missing articles | null | use ruwiki_p;
select (select count(ll_lang) from langlinks
where ll_from = page_id) + 1 as "number", (select ll_title from langlinks where ll_from = page_id and ll_lang = "en") as "name"
from page
where page_namespace = 0
and (select count(ll_lang) from langlinks where ll_from = page_id) > 48
and exists (select... | {"runningtime": "113.19", "resultsets": [{"rowcount": 357, "headers": ["unspaced_page_title", "child_titles"]}]} | null |
Hewiki multiwiki missing articles | null | use ruwiki_p;
select (select count(ll_lang) from langlinks
where ll_from = page_id) + 1 as "number", (select ll_title from langlinks where ll_from = page_id and ll_lang = "en") as "name"
from page
where page_namespace = 0
and (select count(ll_lang) from langlinks where ll_from = page_id) > 48
and exists (select... | {"runningtime": "13.23", "resultsets": [{"rowcount": 1, "headers": ["thank_timestamp", "receiver", "receiver_id", "sender", "sender_id"]}]} | null |
Beiträge zu Commonscat Stolpersteine und Unterkategorien (2) | Aufsummierte Hochlader von Erstversionen von Bildern in einem snapshot der Stolpersteinkategorien vom 7.7.2019 (Teil 2) | USE commonswiki_p;
SELECT /* SLOW_OK */ DISTINCT actor_name AS user, COUNT(image.img_name) as img_count
FROM actor, revision, image, page, categorylinks
WHERE page.page_id=categorylinks.cl_from
AND actor.actor_id = revision.rev_actor
AND image.img_name = page.page_title
and revision.r... | {"runningtime": "0.69", "resultsets": [{"rowcount": 54, "headers": ["page_id", "page_namespace", "page_title", "page_restrictions", "page_is_redirect", "page_is_new", "page_random", "page_touched", "page_links_updated", "page_latest", "page_len", "page_content_model", "page_lang"]}]} | null |
Beiträge zu Commonscat Stolpersteine und Unterkategorien (1) | Aufsummierte Hochlader von Erstversionen von Bildern in einem snapshot der Stolpersteinkategorien vom 7.7.2019 (Teil 1) | USE commonswiki_p;
SELECT /* SLOW_OK */ DISTINCT actor_name AS user, COUNT(image.img_name) as img_count
FROM actor, revision, image, page, categorylinks
WHERE page.page_id=categorylinks.cl_from
AND actor.actor_id = revision.rev_actor
AND image.img_name = page.page_title
and revision.r... | {"runningtime": "0.53", "resultsets": [{"rowcount": 54, "headers": ["page_id", "page_namespace", "page_title", "page_restrictions", "page_is_redirect", "page_is_new", "page_random", "page_touched", "page_links_updated", "page_latest", "page_len", "page_content_model", "page_lang"]}]} | null |
FULLY & INDEFINITELTY PROTECTED TEMPLATES ON COMMONS | null | USE
commonswiki_p;
SELECT
concat('#[[Template:', page_title, ']]')
FROM
page
JOIN page_restrictions ON page_id = pr_page
WHERE
pr_type = 'edit'
AND pr_level = 'sysop'
AND pr_expiry = 'infinity'
AND page_namespace = 10
ORDER BY
page_title | {"runningtime": "119.92", "resultsets": [{"rowcount": 42, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration", "log_params"]}, {"rowcount": 9, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration", "log_params"]}, {"rowcount": 5... | null |
All templates used on the different Main Pages of Commons | null | USE commonswiki_p;
SELECT
CONCAT('*[[Template:',tl_title,']]')
FROM
templatelinks
LEFT JOIN page ON tl_from = page_id
WHERE
(page_id=3520421 OR page_id=563300 OR page_id=269886 OR page_id=350219 OR page_id=110865 OR page_id=123978 OR page_id=34606503 OR page_id=9883540 OR page_id=87957 OR page_id=30954802 OR pa... | {"runningtime": "5.75", "resultsets": [{"rowcount": 500, "headers": ["user_name", "user_editcount"]}]} | null |
Wikimedia Commons media with Czech description needing categories | null | SELECT CONCAT('*[[:File:', page_title, ']]') AS wikitext FROM commonswiki_p.page JOIN commonswiki_p.categorylinks ON cl_from = page_id JOIN commonswiki_p.templatelinks ON tl_from = page_id WHERE page_namespace = 6 AND cl_to IN (SELECT page_title FROM commonswiki_p.categorylinks JOIN commonswiki_p.page ON cl_from = page... | {"connection_id": 14316076} | null |
Wikimedia Commons media with Czech description needing categories | null | SELECT CONCAT('*[[:File:', page_title, ']]') AS wikitext FROM commonswiki_p.page JOIN commonswiki_p.categorylinks ON cl_from = page_id JOIN commonswiki_p.templatelinks ON tl_from = page_id WHERE page_namespace = 6 AND cl_to IN (SELECT page_title FROM commonswiki_p.categorylinks JOIN commonswiki_p.page ON cl_from = page... | {"runningtime": "0.27", "resultsets": [{"rowcount": 10, "headers": ["rev_id", "rev_page", "rev_text_id", "rev_comment_id", "rev_actor", "rev_timestamp", "rev_minor_edit", "rev_deleted", "rev_len", "rev_parent_id", "rev_sha1", "rev_content_model", "rev_content_format"]}]} | null |
Hewiki multiwiki missing articles | null | use ruwiki_p;
select (select count(ll_lang) from langlinks
where ll_from = page_id) + 1 as "number", (select ll_title from langlinks where ll_from = page_id and ll_lang = "en") as "name"
from page
where page_namespace = 0
and (select count(ll_lang) from langlinks where ll_from = page_id) > 48
and exists (select... | {"runningtime": "0.15", "resultsets": [{"rowcount": 0, "headers": ["user_name"]}]} | null |
Editors from Grants:Modjou/Wiki Kouman en Côte d'Ivoire 2019 | Get reused photos | SELECT r.rev_user_text AS Editors,
COUNT(p.page_title) AS Edits,
COUNT(DISTINCT p.page_title) AS Articles
FROM
# get edits by users
frwiktionary_p.revision_userindex r
# get get edits by users
LEFT JOIN frwiktionary_p.page p
ON r.rev_page = p.page_id
WHERE
# Filter by date: to the April 2019 to Ma... | {"runningtime": "0.22", "resultsets": [{"rowcount": 10, "headers": ["user_name"]}]} | null |
Hewiki fair use unused pictures 1 | null | use hewiki_p; select concat('# [[:קובץ:', replace(page_title, "_", " "), ']]') as Suspicious_file_title from page as p1 join image on exists
(select * from categorylinks as cl1 where cl_from = page_id and (cl_to = "ויקיפדיה_-_תמונות_שימוש_הוגן" or exists (select * from page as
p2 where p2.page_namespace = 14 and p2.pag... | {"connection_id": 15065772} | null |
WikiDaheim users 2019 (by first revision, by uploader) for WLM 2019 | null | USE commonswiki_p;
SELECT /* SLOW_OK */ DISTINCT rev_user_text AS user, COUNT(image.img_name) as img_count
FROM revision, image, page, categorylinks
WHERE page.page_id=categorylinks.cl_from
AND image.img_name = page.page_title
and revision.rev_page = page.page_id
and revision.rev_pare... | {"connection_id": 16844433} | null |
AbuseLog entries EN Wiki in January 2016 | null | use enwiki_p;
select * from abuse_filter_log
where afl_timestamp < 20160201000000 and afl_timestamp >= 20160101000000; | {"runningtime": "61.10", "resultsets": [{"rowcount": 1, "headers": ["rev_id", "rev_page", "rev_text_id", "rev_comment_id", "rev_actor", "rev_timestamp", "rev_minor_edit", "rev_deleted", "rev_len", "rev_parent_id", "rev_sha1", "rev_content_model", "rev_content_format", "page_id", "page_namespace", "page_title", "page_re... | null |
for memory institutions + universities | null | USE etwiki_p;
SELECT pl_title, pl_from_namespace, pl_namespace
FROM pagelinks AS pl
WHERE pl_title RLIKE '[Mm]uuseum'
#AND pl_title RLIKE '[Mm]useum'
AND pl_title NOT IN (SELECT page_title FROM page WHERE page_namespace = 0)
GROUP BY pl_title
LIMIT 10;
| {"connection_id": 20128888} | null |
AbuseLog entries EN Wiki in March 2016 | null | use enwiki_p;
select * from abuse_filter_log
where afl_timestamp < 20160401000000 and afl_timestamp >= 20160301000000; | {"runningtime": "727.32", "resultsets": [{"rowcount": 10, "headers": ["page_id", "title", "edits", "users"]}]} | null |
Which user's talk pages are most edited by non-bots in fawiki? | null | use fawiki_p;
SELECT
user_name,
SUM(freq) AS total_edits
FROM
(
SELECT
page_title,
CASE
WHEN LOCATE('/', page_title) > 0 THEN LEFT(page_title, LOCATE('/', page_title) - 1)
ELSE page_title
END AS user_name,
freq
FROM
(
SELECT
page_title,
COUNT(*) freq
FROM page
... | {"runningtime": "140.26", "resultsets": [{"rowcount": 10, "headers": ["page_id", "title", "edits", "users"]}]} | null |
Wikimedia Commons media with Czech description needing categories | null | SELECT CONCAT('*[[:File:', page_title, ']]') AS wikitext FROM commonswiki_p.page JOIN commonswiki_p.categorylinks ON cl_from = page_id JOIN commonswiki_p.templatelinks ON tl_from = page_id WHERE page_namespace = 6 AND cl_to IN (SELECT page_title FROM commonswiki_p.categorylinks JOIN commonswiki_p.page ON cl_from = page... | {"runningtime": "1.23", "resultsets": [{"rowcount": 100, "headers": ["FILE"]}]} | null |
Seiten nach Anzahl Begriffsklärungen | Seiten mit 5 oder mehr verlinkten Begriffsklärungen
(!) Man beachte, dass in Etymologie-Artikeln Links auf BKS erwünscht sind, weil ja expressis verbis „alle dieses Namens“ gemeint sind. | USE dewiki_p;
SELECT COUNT(*) AS Anzahl, REPLACE(sPage.page_title, '_', ' ') AS Artikel
FROM page AS sPage, pagelinks, page AS rPage, templatelinks
WHERE sPage.page_namespace = 0
AND sPage.page_id = pl_from
AND pl_title = rPage.page_title
AND pl_namespace = rPage.page_namespace
AND rPage.page_id = tl_fro... | {"runningtime": "0.33", "resultsets": [{"rowcount": 3, "headers": ["ct_tag_id", "ctd_name", "ctd_count"]}]} | null |
Sample revisions reverted by ClueBotNG | null | /*
SELECT revision_userindex.rev_id, revision_userindex.rev_comment_id, revision_userindex.rev_deleted,
revision_userindex.rev_timestamp, revision_userindex.rev_minor_edit, revision_userindex.rev_parent_id,
revision_userindex.rev_len, comment.comment_text, page.*, actor.*
FROM revision_userindex
JOIN actor ON re... | {"runningtime": "3.19", "resultsets": [{"rowcount": 45, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 10, "headers": ["linter_cat", "count(*)"]}, {"rowcount": 16, "headers": ["page_namespace", "count(*)"]}]} | null |
wikidata: search in terms (times out) | null | USE wikidatawiki_p;
SELECT * FROM wb_terms WHERE term_language='de' AND term_type='description' AND term_search_key REGEXP '.*premium.*'; | {"runningtime": "0.83", "resultsets": [{"rowcount": 45, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 10, "headers": ["linter_cat", "count(*)"]}, {"rowcount": 16, "headers": ["page_namespace", "count(*)"]}]} | null |
arwiki most transcluded templates without TemplateData | null | use arwiki_p;
select tl_title as "القالب", count(tl_from) as "الاستخدام" from templatelinks
where tl_namespace = 10
and not tl_title like "%/%"
and exists
(select * from page
where page_namespace = 10
and page_title = tl_title
and not exists
(select * from page_props
where pp_page = page_id
and pp_propname = "t... | {"runningtime": "26.47", "resultsets": [{"rowcount": 673, "headers": ["page_title"]}]} | null |
Wikimedia Commons media with Czech description needing categories | null | SELECT CONCAT('*[[:File:', page_title, ']]') AS wikitext FROM commonswiki_p.page JOIN commonswiki_p.categorylinks ON cl_from = page_id JOIN commonswiki_p.templatelinks ON tl_from = page_id WHERE page_namespace = 6 AND cl_to IN (SELECT page_title FROM commonswiki_p.categorylinks JOIN commonswiki_p.page ON cl_from = page... | {"runningtime": "4.76", "resultsets": [{"rowcount": 1, "headers": ["ss_total_edits"]}, {"rowcount": 1, "headers": ["SUM(user_editcount)"]}, {"rowcount": 791, "headers": ["userid", "name", "editcount", "admin", "bot"]}]} | null |
Articles, created in certain period | null | USE ukwiki_p;
SELECT article.page_title
FROM ukwiki_p.revision R
JOIN ukwiki_p.page article ON R.rev_page = article.page_id
-- JOIN ukwiki_p.page P2 ON P1.page_title = P2.page_title
-- JOIN ukwiki_p.categorylinks CL ON P2.page_id = CL.cl_from
JOIN page talk
ON talk.page_title = article.page_title AND
... | {"runningtime": "13.01", "resultsets": [{"rowcount": 673, "headers": ["page_title"]}]} | null |
Articles, created in certain period | null | USE ukwiki_p;
SELECT article.page_title
FROM ukwiki_p.revision R
JOIN ukwiki_p.page article ON R.rev_page = article.page_id
-- JOIN ukwiki_p.page P2 ON P1.page_title = P2.page_title
-- JOIN ukwiki_p.categorylinks CL ON P2.page_id = CL.cl_from
JOIN page talk
ON talk.page_title = article.page_title AND
... | {"runningtime": "12.20", "resultsets": [{"rowcount": 50, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration", "log_params"]}]} | null |
Number of mediainfo entities on commons | null | SELECT COUNT(DISTINCT rev_page)
FROM commonswiki_p.revision
INNER JOIN commonswiki_p.slots ON revision.rev_id = slots.slot_revision_id
WHERE slots.slot_role_id = 2; | {"runningtime": "2.14", "resultsets": [{"rowcount": 10, "headers": ["log_id", "log_type", "log_action", "user_name", "user_editcount", "user_registration", "log_params"]}]} | null |
Templates used more than 100 times in dewiki | null | use dewiki_p;
SELECT pl_title, COUNT(*)
from pagelinks
WHERE pl_namespace = 10
GROUP BY pl_title
HAVING COUNT(*) > 1000
ORDER By COUNT(*) DESC | {"runningtime": "90.20", "resultsets": [{"rowcount": 1, "headers": ["bot_edits", "bot_count", "bot_titles"]}]} | null |
মোট সম্পাদনার সংখ্যা | ০২-০৯-২০১৮ | USE bnwiki_p;
SET @counter:=0; SELECT CONCAT("}}{{subst:সসংঅউতা|",@counter:=@counter+1,"") AS rank, CONCAT("|",user_name,"|") AS user_name, user_editcount
FROM user
WHERE user_id NOT IN (SELECT ug_user FROM user_groups WHERE ug_group = 'bot')
AND user_name NOT RLIKE "(.*)([Bb][Oo][Tt])(.*)"
ORDER BY user_editcount DESC... | {"runningtime": "354.57", "resultsets": [{"rowcount": 1, "headers": ["tl_title", "COUNT(*)"]}]} | null |
Templates used more than 100 times in dewiki | null | use dewiki_p;
SELECT page_title, COUNT(*)
from page LEFT JOIN pagelinks
ON page_namespace = pl_namespace and page_title = pl_title
WHERE page_namespace = 10
GROUP BY pl_title
HAVING COUNT(*) > 1000
ORDER By COUNT(*) DESC | {"runningtime": "455.38", "resultsets": [{"rowcount": 5683, "headers": ["tl_title", "COUNT(*)"]}]} | null |
বাংলা উইকিতে সবচেয়ে বেশী নিবন্ধ তৈরি করা ব্যবহারকারী | ২৫-০১-২০১৯ অনুসারে | USE bnwiki_p;
SELECT
CONCAT("[[ব্যবহারকারী:",user_name,"|",user_name,"]]") AS user_name,
COUNT(rev_id) AS মোট_নিবন্ধ
FROM user INNER JOIN revision
ON revision.rev_user = user.user_id
JOIN page
ON page.page_id = revision.rev_page
WHERE page_is_redirect = 0
AND rev_parent_id = 0
AND page_namespace = 0
AND rev_timestamp <... | {"runningtime": "93.07", "resultsets": [{"rowcount": 23, "headers": ["user_name", "user_editcount", "user_registration", "rev_id", "page_namespace", "page_title"]}]} | null |
Wikidata edits with wikimedia-commons-app tag (change_tag_def) | null | use wikidatawiki_p;
select rev_id, rev_user_text, page_title
from change_tag
join revision on rev_id=ct_rev_id
join page on page_id=rev_page where ct_tag_id=(
SELECT ctd_id
FROM change_tag_def
WHERE ctd_name="wikimedia-commons-app"
)
| {"connection_id": 18376253} | null |
Wikidata edits with wikimedia-commons-app tag (change_tag_def) | null | use wikidatawiki_p;
select rev_id, actor_name, page_title
from change_tag
join revision on rev_id=ct_rev_id
join actor on actor_id=rev_actor
join page on page_id=rev_page where ct_tag_id=(
SELECT ctd_id
FROM change_tag_def
WHERE ctd_name="wikimedia-commons-app"
)
| {"runningtime": "25.25", "resultsets": [{"rowcount": 21, "headers": ["Suspicious_file_title"]}]} | null |
SVG defect thumbs (Commons) | null | USE commonswiki_p;
SELECT i.img_name FROM image i
WHERE
-- p.page_is_redirect = FALSE
-- AND p.page_len > 0
-- AND p.page_namespace = 6
i.img_media_type = "DRAWING"
AND (i.img_width = 0)
LIMIT 100
| {"connection_id": 19197345} | null |
بوابات من بوابات التصانيف | null | use arwiki_p;
select p1.page_title, (select group_concat(distinct cl2.pl_title)
from categorylinks cl1
inner join page p2
on p2.page_title = cl1.cl_to
inner join pagelinks cl2
on cl2.pl_from = p2.page_id
... | {"runningtime": "0.29", "resultsets": [{"rowcount": 51, "headers": ["actor_name", "log_title", "log_params", "log_timestamp"]}]} | null |
قائمة المستخدمين الأكثر مراجعةً للمقالات في يوم ويكيبيديا العربية الخامس عشر | null | use arwiki_p;
select CONCAT('[[مستخدم:',actor_name,'|',actor_name,']]'), COUNT(*)
from logging
INNER JOIN actor ON logging.log_actor = actor.actor_id
LEFT JOIN page ON log_title = page_title
where log_timestamp between 20190713000000 and 20190714000000
and log_action = "approve-i"
and log_namespace = 0
and page_is_redi... | {"runningtime": "35.46", "resultsets": [{"rowcount": 2, "headers": ["has_wbl_senses", "count"]}]} | null |
قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الخامس عشر | قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الثالث عشر. | use arwiki_p;
SELECT concat('[[مستخدم:',actor_name,'|',actor_name,']]') AS "المستخدم", COUNT(*) AS "عدد المقالات"
FROM revision r
INNER JOIN actor ON r.rev_actor = actor.actor_id
INNER JOIN page p on r.rev_page = p.page_id
WHERE p.page_namespace =0 and p.page_is_redirect =0 and r.rev_timestamp between 20190713000000 an... | {"runningtime": "1.04", "resultsets": [{"rowcount": 100, "headers": ["actor_id", "actor_user", "actor_name"]}]} | null |
قائمة المستخدمين الأكثر مراجعةً للمقالات في يوم ويكيبيديا العربية الخامس عشر | null | use arwiki_p;
select CONCAT('[[مستخدم:',actor_name,'|',actor_name,']]'), COUNT(*)
from logging
INNER JOIN actor ON logging.log_actor = actor.actor_id
LEFT JOIN page ON log_title = page_title
where log_timestamp between 20190713000000 and 20190714000000
and log_action = "approve-i"
and log_namespace = 0
and page_is_redi... | {"runningtime": "23.74", "resultsets": [{"rowcount": 38, "headers": ["CONCAT('# [[:File:', page_title, ']]')"]}]} | null |
قائمة المستخدمين الأكثر مراجعةً للتعديلات في يوم ويكيبيديا العربية الخامس عشر | null | use arwiki_p;
select CONCAT('[[مستخدم:',actor_name,'|',actor_name,']]'), COUNT(*)
from logging
INNER JOIN actor ON logging.log_actor = actor.actor_id
where log_timestamp between 20190713000000 and 20190714000000
and log_action = "approve"
and log_namespace = 0
group by actor_name
having COUNT(*)>1
ORDER BY COUNT(*) DES... | {"runningtime": "9.45", "resultsets": [{"rowcount": 610, "headers": ["page_title"]}]} | null |
قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الخامس عشر | قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الثالث عشر. | use arwiki_p;
SELECT concat('[[مستخدم:',actor_name,'|',actor_name,']]') AS "المستخدم", COUNT(*) AS "عدد المقالات"
FROM revision r
INNER JOIN actor ON r.rev_actor = actor.actor_id
INNER JOIN page p on r.rev_page = p.page_id
WHERE p.page_namespace =0 and p.page_is_redirect =0 and r.rev_timestamp between 20190713000000 an... | {"runningtime": "28.10", "resultsets": [{"rowcount": 1, "headers": ["page_title"]}, {"rowcount": 2, "headers": ["page_title"]}, {"rowcount": 2, "headers": ["page_title"]}]} | null |
2019أكثر المستخدمين تعديلًا ضمن مقالات مشروع ويكي طب | null | USE arwiki_p;
select concat('[[مستخدم:',actor_name,'|',actor_name,']]') AS "المستخدم", count(rev_actor)
FROM revision r
INNER JOIN actor ON r.rev_actor = actor.actor_id
where rev_timestamp between 20190101000000 AND 20191231235959
and rev_page in (select cl_from from categorylinks where cl_from = rev_page and cl_to = "... | {"connection_id": 27149787} | null |
قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الخامس عشر | قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الثالث عشر. | use arwiki_p;
SELECT concat('[[مستخدم:',actor_name,'|',actor_name,']]') AS "المستخدم", COUNT(*) AS "عدد المقالات"
FROM revision r
INNER JOIN actor ON r.rev_actor = actor.actor_id
INNER JOIN page p on r.rev_page = p.page_id
WHERE p.page_namespace =0 and p.page_is_redirect =0 and r.rev_timestamp between 20190713000000 an... | {"runningtime": "2.15", "resultsets": [{"rowcount": 343, "headers": ["page_title"]}]} | null |
Wikidata items created by [[User:GZWDer (flood)]] without statements | null | use wikidatawiki_p;
SELECT (SELECT page_title FROM page WHERE page_id=rev_page AND page_namespace=0) AS page_title FROM `revision_userindex` WHERE rev_user=690508 AND rev_parent_id=0 AND NOT EXISTS (SELECT * FROM pagelinks WHERE pl_from=rev_page) | {"runningtime": "4.17", "resultsets": [{"rowcount": 1, "headers": ["log_title", "COUNT(*)"]}]} | null |
قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الخامس عشر | قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الثالث عشر. | use arwiki_p;
SELECT concat('[[مستخدم:',actor_name,'|',actor_name,']]') AS "المستخدم", COUNT(*) AS "عدد المقالات"
FROM revision r
INNER JOIN actor ON r.rev_actor = actor.actor_id
INNER JOIN page p on r.rev_page = p.page_id
WHERE p.page_namespace =0 and p.page_is_redirect =0 and r.rev_timestamp between 20190713000000 an... | {"runningtime": "2.29", "resultsets": [{"rowcount": 381, "headers": ["page_title", "page_is_redirect"]}]} | null |
قائمة المستخدمين الأكثر مراجعةً للمقالات في يوم ويكيبيديا العربية الخامس عشر | null | use arwiki_p;
select CONCAT('[[مستخدم:',actor_name,'|',actor_name,']]'), COUNT(*)
from logging
INNER JOIN actor ON logging.log_actor = actor.actor_id
LEFT JOIN page ON log_title = page_title
where log_timestamp between 20190713000000 and 20190714000000
and log_action = "approve-i"
and log_namespace = 0
and page_is_redi... | {"runningtime": "1185.73", "resultsets": [{"rowcount": 972, "headers": ["page_title", "rev_id", "rev_timestamp", "comment_text"]}]} | null |
قائمة المستخدمين الأكثر مراجعةً للتعديلات في يوم ويكيبيديا العربية الخامس عشر | null | use arwiki_p;
select CONCAT('[[مستخدم:',actor_name,'|',actor_name,']]'), COUNT(*)
from logging
INNER JOIN actor ON logging.log_actor = actor.actor_id
where log_timestamp between 20190713000000 and 20190714000000
and log_action = "approve"
and log_namespace = 0
group by actor_name
having COUNT(*)>1
ORDER BY COUNT(*) DES... | {"connection_id": 28273443} | null |
قائمة المستخدمين الأكثر مراجعةً للمقالات في يوم ويكيبيديا العربية الخامس عشر | null | use arwiki_p;
select CONCAT('[[مستخدم:',actor_name,'|',actor_name,']]'), COUNT(*)
from logging
INNER JOIN actor ON logging.log_actor = actor.actor_id
LEFT JOIN page ON log_title = page_title
where log_timestamp between 20190713000000 and 20190714000000
and log_action = "approve-i"
and log_namespace = 0
and page_is_redi... | {"connection_id": 28283146} | null |
قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الخامس عشر | قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الثالث عشر. | use arwiki_p;
SELECT concat('[[مستخدم:',actor_name,'|',actor_name,']]') AS "المستخدم", COUNT(*) AS "عدد المقالات"
FROM revision r
INNER JOIN actor ON r.rev_actor = actor.actor_id
INNER JOIN page p on r.rev_page = p.page_id
WHERE p.page_namespace =0 and p.page_is_redirect =0 and r.rev_timestamp between 20190713000000 an... | {"connection_id": 28283163} | null |
قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الخامس عشر | قائمة المستخدمين الأكثر إنشاءً للمقالات في يوم ويكيبيديا العربية الثالث عشر. | use arwiki_p;
SELECT concat('[[مستخدم:',actor_name,'|',actor_name,']]') AS "المستخدم", COUNT(*) AS "عدد المقالات"
FROM revision r
INNER JOIN actor ON r.rev_actor = actor.actor_id
INNER JOIN page p on r.rev_page = p.page_id
WHERE p.page_namespace =0 and p.page_is_redirect =0 and r.rev_timestamp between 20190713000000 an... | {"connection_id": 28283166} | null |
قائمة المستخدمين الأكثر مراجعةً للمقالات في يوم ويكيبيديا العربية الخامس عشر | null | use arwiki_p;
select CONCAT('[[مستخدم:',actor_name,'|',actor_name,']]'), COUNT(*)
from logging
INNER JOIN actor ON logging.log_actor = actor.actor_id
LEFT JOIN page ON log_title = page_title
where log_timestamp between 20190713000000 and 20190714000000
and log_action = "approve-i"
and log_namespace = 0
and page_is_redi... | {"connection_id": 28270137} | null |
Validated-theEmployeeKaniyam-book8-TamilProverbs1 | Change the actor_name and page_title for your search.
Choose either validated or proofread line and comment another | use tawikisource_p;
SELECT distinct page_title as Title, actor_name as user, comment_text as comment
FROM revision
join page ON page_id = rev_page
join comment on comment_id = rev_comment_id
join actor ON rev_actor = actor_id where
#(comment_text like "%மெய்ப்புப் பார்க்கப்பட்டவை%" or comment_text like "%Proofread%")
... | {"connection_id": 28351280} | null |
Proofread-MuthulakshmiKaniyam-book1-ulagaVaralatril | Change the actor_name and page_title for your search.
Choose either validated or proofread line and comment another | use tawikisource_p;
SELECT distinct page_title as Title, actor_name as user, comment_text as comment
FROM revision
join page ON page_id = rev_page
join comment on comment_id = rev_comment_id
join actor ON rev_actor = actor_id where
(comment_text like "%மெய்ப்புப் பார்க்கப்பட்டவை%" or comment_text like "%Proofread%")
#... | {"connection_id": 28367310} | null |
Validated-DeepaArulKaniyam-book1-elavathuVasal | Change the actor_name and page_title for your search.
Choose either validated or proofread line and comment another | use tawikisource_p;
SELECT distinct page_title as Title, actor_name as user, comment_text as comment
FROM revision
join page ON page_id = rev_page
join comment on comment_id = rev_comment_id
join actor ON rev_actor = actor_id where
#(comment_text like "%மெய்ப்புப் பார்க்கப்பட்டவை%" or comment_text like "%Proofread%")
... | {"connection_id": 28367360} | null |
Proofread-SasiKaniyam-book2-TamilProverb1 | Change the actor_name and page_title for your search.
Choose either validated or proofread line and comment another | use tawikisource_p;
SELECT distinct page_title as Title, actor_name as user, comment_text as comment
FROM revision
join page ON page_id = rev_page
join comment on comment_id = rev_comment_id
join actor ON rev_actor = actor_id where
(comment_text like "%மெய்ப்புப் பார்க்கப்பட்டவை%" or comment_text like "%Proofread%")
#... | {"connection_id": 28369255} | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.