title stringlengths 1 212 | description stringlengths 1 4.39k ⌀ | query stringlengths 1 65.5k ⌀ | extra_info stringlengths 18 31.6k | wikidb stringlengths 4 26 ⌀ |
|---|---|---|---|---|
Thanks for 2019 | Most thanked people in 2019
Blame Mz7, SQL, and stwalkerster for this | USE enwiki_p;
SELECT log_title, COUNT(log_id)
FROM logging_logindex
WHERE
log_type = "thanks" AND
log_timestamp >= "20200000000000"
GROUP BY log_title
ORDER BY 2 DESC | {"runningtime": "22.96", "resultsets": [{"rowcount": 10, "headers": ["page_title"]}]} | null |
-s ohne Genitiv etc. | -S ohne Genitiv | USE dewiktionary_p;
SELECT page_title,
cl_to
from page
join categorylinks
on cl_from = page_id
where page_namespace = 0
and page_title like '%s'
and page_title not like '%\_%'
and cl_to like '%(Deutsch)'
and cl_to not like 'Wiktionary%'
and cl_to not like 'Entlehnung%'
and cl_to not like 'Grundformeintrag%'
and cl_to ... | {"connection_id": 4932235} | null |
Cut Final Character | Grundformeintrag even when cutting final character (f in this case)
Why is this query slow when I include fields from p2 or c2? | USE dewiktionary_p;
/*
SELECT
p1.page_title,
p1.page_id,
p1.page_namespace,
c1.cl_from,
c1.cl_to,
# As soon as I include one of the following fields,
# the query does not finish within 5 minutes,
# reason unclear.
#p2.page_title,
#p2.page_id,
#p2.page_namespace,
#c2.cl_from,
#c2.cl_to,
'Dummy'
FROM page p1
JOIN catego... | {"runningtime": "5.21", "resultsets": [{"rowcount": 14, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 6, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 6, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Show Collation | null | USE dewiktionary_p;
show collation; | {"runningtime": "0.07", "resultsets": [{"rowcount": 0, "headers": ["cat_id", "cat_title", "cat_pages", "cat_subcats", "cat_files"]}]} | null |
Empty | null | null | {"connection_id": 10092222} | null |
Quota di contributi verificati nella Wikipedia in italiano | Patrolled edits on the Italian Wikipedia, it.wiki, it.wikipedia.
Quota giornaliera di modifiche modificate fra le ultime modifiche (30 giorni), sul totale e sulle solo modifiche effettuate da utenti non registrati. Sono escluse modifiche segnate come bot, modifiche fuori dal namespace 0, "finte" ultime modifiche (come ... | USE itwiki_p;
SELECT GIORNO, CONTRIBUTI, PATROLLED, CONCAT(ROUND(PATROLLED * 100 / CONTRIBUTI), ' %') AS PERCENTUALE, CONCAT(ROUND(ANONIMIPATROLLED * 100 / ANONIMI), ' %') AS SoloNonRegistrati
FROM (
SELECT SUBSTR(rc_timestamp, 1, 8) AS GIORNO,
SUM(rc_user > -1) AS CONTRIBUTI,
SUM(rc_patrolled) AS PATROLLED,
S... | {"runningtime": "51.55", "resultsets": [{"rowcount": 15815, "headers": ["rd_from"]}, {"rowcount": 534, "headers": ["page_namespace", "page_title"]}]} | null |
Pages with no talk page | Excludes redirects, disambiguation pages, set indexes and redirects to Wiktionary. -+- Also excludes stubs, dynamic lists, lists of lists, and redirects at RfD. | SELECT CONCAT('[[', page_title, ']]') FROM page
WHERE page_namespace = 0
AND page_is_redirect = 0
AND page_title NOT IN (SELECT page_title FROM page WHERE page_namespace = 1)
AND page_id NOT IN (SELECT cl_from
FROM categorylinks
WHERE cl_to IN ('All_article_disambiguation_pages',... | {"runningtime": "8.86", "resultsets": [{"rowcount": 2721, "headers": ["page_title", "page_len"]}]} | null |
RoySmith's RfA | null | select * from logging inner join comment on comment.comment_id = logging.log_comment_id
where log_type = 'rights'
and log_title = 'Redrose64'
and (
comment_text LIKE '%+sysop%'
OR comment_text LIKE '%[[Wikipedia:Requests for adminship/%'
)
limit 10;
| {"connection_id": 12954454} | null |
Find all RfAs | null | select * from logging inner join comment on comment.comment_id = logging.log_comment_id
where log_type = 'rights'
-- and log_title = 'RoySmith'
and log_timestamp < 20050000000000
and (
comment_text LIKE '%+sysop%'
OR comment_text LIKE '%[[Wikipedia:Requests for adminship/%'
)
limit 10;
| {"runningtime": "0.25", "resultsets": [{"rowcount": 17, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 5, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 8, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Cut First Char | null | USE dewiktionary_p;
SELECT
#convert(p1.page_title USING utf8) COLLATE utf8_general_ci,
p1.page_title,
c1.cl_to,
#c2.cl_to,
# As soon as I include one of the following fields,
# the query does not finish within 5 minutes,
# reason unclear.
#p2.page_title,
#p2.page_id,
#p2.page_namespace,
#c2.cl_from,
#c2.cl_to,
'Dummy'... | {"runningtime": "0.23", "resultsets": [{"rowcount": 63, "headers": ["cat_title", "cat_pages"]}]} | null |
Deleted page history | null | Select distinct ar_title,ar_timestamp,ar_len
from archive
where
ar_namespace = 0
and ar_title like 'Battle_of_Ceb%'
limit 1000
| {"runningtime": "450.70", "resultsets": [{"rowcount": 1999, "headers": ["file_title"]}]} | null |
Fiwikin artikkelit joissa on primaarikoordinaatit määriteltynä | null | use fiwiki_p;
SELECT
page_title,
page_id as fiwiki_page_id,
pp_value as wikidata_item,
gt_primary,
gt_lat,
gt_lon
FROM
geo_tags,
page LEFT JOIN page_props ON page_id=pp_page AND pp_propname="wikibase_item"
WHERE
page_namespace=0
and page_id=gt_page_id
and gt_primary=1... | {"runningtime": "3.01", "resultsets": [{"rowcount": 100, "headers": ["frp_user_id", "frp_user_params", "user_id", "user_name", "user_real_name", "user_password", "user_newpassword", "user_email", "user_options", "user_touched", "user_token", "user_email_authenticated", "user_email_token", "user_email_token_expires", "u... | null |
Fiwikin artikkelit joissa on primaarikoordinaatit määriteltynä | null | use fiwiki_p;
SELECT
page_title,
page_id as fiwiki_page_id,
pp_value as wikidata_item,
gt_primary,
gt_lat,
gt_lon
FROM
geo_tags,
page LEFT JOIN page_props ON page_id=pp_page AND pp_propname="wikibase_item"
WHERE
page_namespace=0
and page_id=gt_page_id
and gt_primary=1... | {"runningtime": "220.71", "resultsets": [{"rowcount": 100, "headers": ["frp_user_id", "frp_user_params", "user_id", "user_name", "user_real_name", "user_password", "user_newpassword", "user_email", "user_options", "user_touched", "user_token", "user_email_authenticated", "user_email_token", "user_email_token_expires", ... | null |
Fiwikin artikkelit joissa on primaarikoordinaatit tai vain yksi sekundäärikoordinaatti määriteltynä | null | use fiwiki_p;
SELECT * FROM (
SELECT
page_title,
page_id as fiwiki_page_id,
pp_value as wikidata_id,
gt_primary,
sum(gt_primary=1) + sum(gt_primary=0) as coordinate_count,
gt_lat,
gt_lon
FROM
geo_tags,
page LEFT JOIN page_props ON page_id=pp_page AND pp_propname="wikibase_item"
... | {"runningtime": "0.06", "resultsets": [{"rowcount": 0, "headers": ["Table", "Non_unique", "Key_name", "Seq_in_index", "Column_name", "Collation", "Cardinality", "Sub_part", "Packed", "Null", "Index_type", "Comment", "Index_comment"]}]} | 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": "11.37", "resultsets": [{"rowcount": 0, "headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %"]}]} | null |
Artikel + Kategorien als Tabelle | null | use dewiki_p;
SELECT CONCAT('[[', REPLACE(page_title, '_', ' '), ']]') AS Titel,
GROUP_CONCAT(CONCAT('[[:Kategorie:', REPLACE(cl_to, '_', ' '), '|', REPLACE(cl_to, '_', ' '), ']]') SEPARATOR ' • ') as Kategorien
FROM page, categorylinks
WHERE page_namespace = 0
AND page_id = cl_from
AND page_title IN ('... | {"connection_id": 22233068} | 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": 22642191} | null |
Pages in a specific category edited only by a specific user | Pages on Hungarian Wikibooks in [[Category:Azonnali törlésre váró lapok]] edited only by [[User:KeFe]].
For [[en:w:WP:RAQ#Pages edited by a single user]] circa 7 July 2020. | USE huwikibooks_p;
SELECT CONCAT(CASE page_namespace
WHEN 0 THEN ''
WHEN 2 THEN 'User:'
WHEN 10 THEN 'Template:'
ELSE CONCAT('{{ns:', page_namespace, '}}:')
END,
page_title)
FROM page
JOIN categorylinks ON cl_from = page_id
WHER... | {"runningtime": "9.86", "resultsets": [{"rowcount": 2175, "headers": ["el_to"]}]} | null |
Pages in Category:Azonnali törlésre váró lapok edited only by a specific user | null | USE huwikibooks_p;
SELECT CONCAT(CASE page_namespace
WHEN 0 THEN ''
WHEN 2 THEN 'User:'
WHEN 10 THEN 'Template:'
WHEN 4 THEN 'Project:'
ELSE CONCAT('{{ns:', page_namespace, '}}:')
END,
page_title)
FROM page
JOIN ... | {"connection_id": 23009594} | null |
Pages in Category:Azonnali törlésre váró lapok edited only by a specific user | null | USE huwikibooks_p;
SELECT CONCAT(CASE page_namespace
WHEN 0 THEN ''
WHEN 2 THEN 'User:'
WHEN 10 THEN 'Template:'
WHEN 4 THEN 'Project:'
ELSE CONCAT('{{ns:', page_namespace, '}}:')
END,
page_title)
FROM page
JOIN ... | {"connection_id": 24135727} | null |
Pages in Category:Azonnali törlésre váró lapok edited only by a specific user | null | USE huwikibooks_p;
SELECT CONCAT(CASE page_namespace
WHEN 0 THEN ''
WHEN 2 THEN 'User:'
WHEN 10 THEN 'Template:'
WHEN 4 THEN 'Project:'
ELSE CONCAT('{{ns:', page_namespace, '}}:')
END,
page_title)
FROM page
JOIN ... | {"runningtime": "0.07", "resultsets": [{"rowcount": 0, "headers": ["img_width", "img_height", "img_name", "img_major_mime", "img_minor_mime", "img_user", "img_user_text", "img_timestamp", "rec_img_timestamp", "rec_img_user", "rec_img_text", "oi_archive_name"]}]} | null |
Proofread-pavithra-மருதநிலமங்கை | 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%")
#... | {"runningtime": "2.47", "resultsets": [{"rowcount": 4, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 2, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 3, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Proofread-pavithra-தெய்வஅரசுகண்டஇளவரசன் | 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%")
#... | {"runningtime": "198.76", "resultsets": [{"rowcount": 1, "headers": ["count(*)"]}]} | null |
Proofread-pavithra- இறைவர்திருமகன் | 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": 226436447} | null |
Proofread-Ramesh-குன்றக்குடி_அடிகளார்_நூல்வரிசை-8 | 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": 226536966} | null |
Proofread-Ramesh- நீங்களும்நோயில்லாமல்வாழலாம் | 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%")
... | {"runningtime": "2.36", "resultsets": [{"rowcount": 8, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 5, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 4, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Proofread-Ramesh- ஓங்குகஉலகம் | 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%")
... | {"runningtime": "0.10", "resultsets": [{"rowcount": 10, "headers": ["pp_page", "pp_propname", "pp_value", "pp_sortkey"]}]} | null |
Proofread-Arun-மின்னல்பூ | 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%")
#... | {"runningtime": "0.10", "resultsets": [{"rowcount": 0, "headers": ["pp_page", "pp_propname", "pp_value", "pp_sortkey"]}]} | null |
Proofread-Arun-குன்றக்குடிஅடிகளார்நூல்வரிசை-5 | 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%")
#... | {"runningtime": "0.10", "resultsets": [{"rowcount": 0, "headers": ["pp_page", "pp_propname", "pp_value", "pp_sortkey"]}]} | null |
Proofread-Arun-குன்றக்குடிஅடிகளார்நூல்வரிசை-12 | 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%")
#... | {"runningtime": "1.57", "resultsets": [{"rowcount": 100, "headers": ["pp_page", "pp_propname", "pp_value", "pp_sortkey"]}]} | null |
Proofread-DeepaArulKaniyam-தமிழ்வளர்த்தஞானியாரடிகள் | 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%")
#... | {"runningtime": "8.58", "resultsets": [{"rowcount": 38, "headers": ["page_namespace", "page_title"]}]} | null |
Proofread-DeepaArulKaniyam-புகழ்பெற்றபுதுக்கவிஞர்கள் | 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%")
#... | {"runningtime": "2.57", "resultsets": [{"rowcount": 7, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 3, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 4, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Proofread-DeepaArulKaniyam-தான்பிரீன்-தொடரும்பயணம் | 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%")
#... | {"runningtime": "2.60", "resultsets": [{"rowcount": 7, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 3, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 4, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Proofread-DeepaArulKaniyam-வேண்டும்விடுதலை | 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%")
#... | {"runningtime": "0.74", "resultsets": [{"rowcount": 7, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 3, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 4, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Proofread-DeepaArulKaniyam-கிருஸ்தவத்தமிழ்த்தொண்டர் | 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%")
#... | {"runningtime": "37.12", "resultsets": [{"rowcount": 3581, "headers": ["filelist"]}]} | null |
Bad disambiguation page titles (eswiki) | Disambiguation pages with a superfluous " (desambiguación)" suffix (eswiki). | use eswiki_p;
select page_title as main_title
from (page join redirect on page_id = rd_from)
where page_namespace = 0 and rd_title = concat(page_title, '_(desambiguación)');
| {"connection_id": 228629674} | null |
Pages included in category with the same title | Lists pages for which a category with the same name exists and the page is in this category.
First column is the page title, second column contains all the categories containing category with the same name as page. | USE huwiki_p;
SELECT article.page_title, GROUP_CONCAT(CONCAT('[[Kategória:',cl_cat.cl_to,']]') SEPARATOR ';')
FROM category
inner join page as article
on article.page_title = category.cat_title
#inner join categorylinks as cl_article
#on cl_page.cl_from = article.page_id and cl_page.cl_to = category.cat_title
inner joi... | {"runningtime": "0.12", "resultsets": [{"rowcount": 3, "headers": ["ug_user", "ug_group"]}]} | null |
'NEW' Telugu editor, account created in last 2 years (between May2018-May2020), with 50-10k edits in last year (since May2019) | null | use tewiki_p;
select
rev_actor,
actor_name,
count(rev_id) as edit_count,
substr(user_registration, 1, 8) as registration_date
from
revision,
actor,
user
where
actor_user = user_id and
user_registration between 20180500000000 and 20200500000000 and
rev_timestamp > 20180500000000 and
rev_act... | {"runningtime": "4.10", "resultsets": [{"rowcount": 5, "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 |
Blocks dewiki between 01.May 2019 and 15.May 2019 | null | USE dewiki_p;
SELECT * FROM logging WHERE (log_action = 'block' OR log_action = 'reblock')
AND log_timestamp BETWEEN 20190501000000 AND 20190515000000
ORDER BY log_timestamp ASC; | {"runningtime": "7.44", "resultsets": [{"rowcount": 48, "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 |
Linkowanie w artykule do siebie samego (plwiki) | https://pl.wikipedia.org/w/index.php?title=Wikipedia:Kawiarenka/Kwestie_techniczne&diff=60344567&oldid=60336422 | use plwiki_p;
select
page_title as article,
(select page_title from page where page_id = rd_from) as redir
from
page
inner join pagelinks on pl_from = page_id
inner join redirect on rd_title = page_title and rd_namespace = page_namespace
where
page_namespace = 0 and
rd_from in (
select pa... | {"runningtime": "0.87", "resultsets": [{"rowcount": 131, "headers": ["rev_id", "rev_parent_id", "rev_timestamp", "page_id", "page_title", "comment_text"]}]} | null |
'NEW' Bengali editor, account created in last 2 years (between May2018-May2020), with 50-10k edits in last year (since May2019) | null | use bnwiki_p;
select
rev_actor,
actor_name,
count(rev_id) as edit_count,
substr(user_registration, 1, 8) as registration_date
from
revision,
actor,
user
where
actor_user = user_id and
user_registration between 20180500000000 and 20200500000000 and
rev_timestamp > 20180500000000 and
rev_act... | {"runningtime": "0.48", "resultsets": [{"rowcount": 131, "headers": ["pl_title", "page_id"]}]} | null |
All partial blocks | Partial blocks to date at enwiki. For [[WP:AN#Change in blocking policy]] and [[User talk:Naypta#Partial blocks queries]] circa 8 July 2020. | SELECT log_timestamp,
actor_name AS blocker,
log_title AS blockee,
comment_text,
log_params
FROM logging
JOIN actor_logging ON actor_id = log_actor
JOIN comment_logging ON comment_id = log_comment_id
WHERE log_type = 'block' AND log_action = 'block'
AND log_params LIKE '%sitewide";b:0%'
... | {"runningtime": "0.40", "resultsets": [{"rowcount": 131, "headers": ["pl_title", "page_id"]}]} | null |
Active blocks of partially-blocked users | All currently-active blocks of users or ips who were previously (or still are) partially blocked.
For [[WP:AN#Change in blocking policy]] and [[User talk:Naypta#Partial blocks queries]] circa 8 July 2020. | SELECT ipblocks.ipb_address AS blockee,
ipblocks.ipb_sitewide AS sitewide,
ipblocks.ipb_timestamp AS timestamp,
ipblocks.ipb_expiry AS expiry,
ipblocks_compat.ipb_by_text AS blocker,
ipblocks_compat.ipb_reason AS reason,
ipblocks.ipb_anon_only AS anon_only,
ipblocks.ipb_... | {"connection_id": 230028355} | 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": "393.88", "resultsets": [{"rowcount": 1500, "headers": ["page_title", "page_count", "tag_center", "tag_small", "tag_span", "tag_div", "tag_b", "tag_i", "tag_s"]}]} | 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.07", "resultsets": [{"rowcount": 0, "headers": ["time", "user", "namespace", "page", "comment"]}]} | null |
Sort keys of members of Category:Pages using Infobox broadcasting network with unknown parameters | null | USE enwiki_p;
SELECT cl_sortkey_prefix, page_title
FROM categorylinks
JOIN page ON cl_from = page_id
WHERE cl_to = "Pages_using_Infobox_broadcasting_network_with_unknown_parameters"
ORDER BY cl_sortkey_prefix | {"runningtime": "97.76", "resultsets": [{"rowcount": 85, "headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %"]}]} | null |
proofread-fathima-கடவுள்கைவிடமாட்டார் | 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%")
#... | {"runningtime": "20.38", "resultsets": [{"rowcount": 33, "headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %"]}]} | null |
proofread-fathima-கடவுள்கைவிடமாட்டார் | 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%")
#... | {"runningtime": "1.35", "resultsets": [{"rowcount": 8, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 5, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 4, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
proofread-fathima-வாழ்க்கை | 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%")
#... | {"runningtime": "1.72", "resultsets": [{"rowcount": 6, "headers": ["page_title"]}]} | null |
proofread-fathima-பெருமானாரின்பிறசமயக்கண்ணோட்டம் | 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%")
#... | {"runningtime": "0.52", "resultsets": [{"rowcount": 39, "headers": ["page_title"]}]} | null |
proofread-fathima-எங்கேபோகிறோம் | 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%")
#... | {"runningtime": "1.36", "resultsets": [{"rowcount": 4, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 2, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 3, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
proofread-fathima-மாணவர்மாணவியருக்குநீதிக்கதைகள் | 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%")
#... | {"runningtime": "41.60", "resultsets": [{"rowcount": 17, "headers": ["USU\u00c1RIOS", "ANO_REG"]}]} | null |
proofread-fathima-வளர்ப்புமகள் | 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%")
#... | {"runningtime": "30.38", "resultsets": [{"rowcount": 35, "headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %"]}]} | null |
proofread-fathima-புதுப்புதுசிந்தனைகள் | 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%")
#... | {"runningtime": "1.68", "resultsets": [{"rowcount": 7, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 4, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 4, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Validated-Deepa_arul_kaniyam- மருதநில_மங்கை | 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": 6498131} | null |
Validated-Deepa_arul_kaniyam-கடவுள்கைவிடமாட்டார் | 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%")
... | {"runningtime": "0.08", "resultsets": [{"rowcount": 0, "headers": ["Category"]}]} | null |
Validated-Deepa_arul_kaniyam-வாழ்க்கை | 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%")
... | {"runningtime": "0.07", "resultsets": [{"rowcount": 0, "headers": ["Category"]}]} | null |
Validated-Deepa_arul_kaniyam-எங்கேபோகிறோம் | 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%")
... | {"runningtime": "0.06", "resultsets": [{"rowcount": 0, "headers": ["Category"]}]} | null |
Validated-Deepa_arul_kaniyam-தெய்வஅரசுகண்டஇளவரசன் | 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%")
... | {"runningtime": "0.07", "resultsets": [{"rowcount": 0, "headers": ["Category"]}]} | null |
Validated-Deepa_arul_kaniyam-இறைவர்திருமகன் | 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%")
... | {"runningtime": "0.07", "resultsets": [{"rowcount": 0, "headers": ["Category"]}]} | null |
Validated-Deepa_arul_kaniyam-வளர்ப்புமகள் | 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%")
... | {"runningtime": "0.06", "resultsets": [{"rowcount": 0, "headers": ["Page", "Category"]}]} | null |
Validated-Deepa_arul_kaniyam-புதுப்புதுசிந்தனைகள் | 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%")
... | {"runningtime": "0.06", "resultsets": [{"rowcount": 0, "headers": ["Page", "Category"]}]} | null |
Validated-Rabiyathul_kaniyam-திருவிளையாடற்புராணம் | 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%")
... | {"runningtime": "0.08", "resultsets": [{"rowcount": 0, "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", "cl_from", "cl_to", "cl_sortkey", "cl_t... | null |
Validated-Rabiyathul_kaniyam-தமிழ்வளர்த்தஞானியாரடிகள் | 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%")
... | {"runningtime": "0.07", "resultsets": [{"rowcount": 0, "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", "cl_from", "cl_to", "cl_sortkey", "cl_t... | null |
New wikis for Wikiscan (July 2020) | null | use frwiki_p;
select * from sites where site_data like '%shn.wiktionary.org%' or site_data like '%wikitech.wikimedia.org%' or site_data like '%wikitech-static.wikimedia.org%' or site_data like '%labtestwikitech.wikimedia.org%' | {"runningtime": "0.06", "resultsets": [{"rowcount": 0, "headers": ["cl_from", "cl_to", "cl_sortkey", "cl_timestamp", "cl_sortkey_prefix", "cl_collation", "cl_type"]}]} | null |
Validated-Rabiyathul_kaniyam-குன்றக்குடிஅடிகளார்நூல்வரிசை-5 | 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%")
... | {"runningtime": "0.07", "resultsets": [{"rowcount": 0, "headers": ["cl_from", "cl_to", "cl_sortkey", "cl_timestamp", "cl_sortkey_prefix", "cl_collation", "cl_type"]}]} | null |
WLE_Ukraine participants 2013-19, not active in WLE 2020 | null | use commonswiki_p;
SELECT CONCAT("# {{#target:User_talk:", actor_name, "|commons.wikimedia.org}}") as line
FROM revision r_prev
join categorylinks on rev_page = cl_from
join actor on rev_actor = actor_id and actor_user is not null
WHERE rev_parent_id = 0
and cl_to IN (
"Images_from_Wiki_Loves_Earth_2013_in_Ukraine"... | {"runningtime": "0.26", "resultsets": [{"rowcount": 30, "headers": ["cl_from", "cl_to", "cl_sortkey", "cl_timestamp", "cl_sortkey_prefix", "cl_collation", "cl_type"]}]} | null |
Validated-Rabiyathul_kaniyam-தென்னாட்டுகாந்தி | 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%")
... | {"runningtime": "0.15", "resultsets": [{"rowcount": 30, "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", "cl_from", "cl_to", "cl_sortkey", "cl_... | null |
Validated-Rabiyathul_kaniyam-பெருமானாரின்பிறசமயக்கண்ணோட்டம் | 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%")
... | {"runningtime": "38.28", "resultsets": [{"rowcount": 0, "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", "cl_from", "cl_to", "cl_sortkey", "cl_... | null |
Validated-Rabiyathul_kaniyam-தான்பிரீன்-தொடரும்பயணம் | 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%")
... | {"runningtime": "3.64", "resultsets": [{"rowcount": 1000, "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", "cl_from", "cl_to", "cl_sortkey", "c... | null |
Validated-Rabiyathul_kaniyam-கால்பந்தாட்டம் | 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%")
... | {"runningtime": "10.89", "resultsets": [{"rowcount": 1000, "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", "cl_from", "cl_to", "cl_sortkey", "... | null |
Validated-Rabiyathul_kaniyam-குழந்தைகளுக்கானஉடற்பயிற்சியும்விளையாட்டும் | 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%")
... | {"runningtime": "2.45", "resultsets": [{"rowcount": 0, "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", "cl_from", "cl_to", "cl_sortkey", "cl_t... | null |
Validated-Rabiyathul_kaniyam-குன்றக்குடிஅடிகளார்நூல்வரிசை-12 | 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%")
... | {"runningtime": "14.43", "resultsets": [{"rowcount": 1000, "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", "cl_from", "cl_to", "cl_sortkey", "... | null |
Validated-Rabiyathul_kaniyam-கிருஸ்தவத்தமிழ்த்தொண்டர் | 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%")
... | {"runningtime": "12.68", "resultsets": [{"rowcount": 1000, "headers": ["sock"]}]} | null |
Validated-Fathima-மின்னல்பூ | 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": 6633700} | null |
Validated-Fathima-நீங்களும்நோயில்லாமல்வாழலாம் | 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%")
... | {"runningtime": "0.03", "resultsets": []} | null |
Validated-Fathima-புகழ்பெற்றபுதுக்கவிஞர்கள் | 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": 6681372} | null |
Validated-Fathima-வேண்டும்விடுதலை | 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%")
... | {"runningtime": "0.02", "resultsets": []} | null |
Validated-Fathima-குண்டானஉடம்பைகுறைப்பதுஎப்படி | 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%")
... | {"runningtime": "1.51", "resultsets": [{"rowcount": 10, "headers": ["master"]}]} | null |
Validated-Iswarya-மாணவர்மாணவியருக்குநீதிக்கதைகள் | 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": 6710549} | null |
Validated-Iswarya-குன்றக்குடிஅடிகளார்நூல்வரிசை-12 | 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": 6716633} | null |
Uploaders of images in certain category by images count | null | SELECT A.actor_name, COUNT(1) as files
FROM commonswiki_p.image I
JOIN commonswiki_p.page P ON I.img_name = P.page_title
JOIN commonswiki_p.categorylinks CL ON P.page_id = CL.cl_from
JOIN commonswiki_p.actor A ON I.img_actor = A.actor_id
WHERE P.page_namespace = 6
AND CL.cl_to = "Images_from_Wiki_Loves_Earth_2020_i... | {"runningtime": "2.50", "resultsets": [{"rowcount": 20, "headers": ["user_editcount", "user_name", "user_id"]}]} | null |
Size of uploads by Syced | This count based purely on filename and uploader, a handy guide to size of the total size uploads presuming bot accounts are not the actual uploaders for some projects. | USE commonswiki_p;
SELECT COUNT(img_name) AS Count,
ROUND(SUM(img_size/(1<<30))) AS Size_GB
FROM image
JOIN actor_image ON actor_id = img_actor
WHERE actor_name = "Syced"; | {"runningtime": "0.10", "resultsets": [{"rowcount": 5, "headers": ["page_title"]}]} | null |
FlaggedRevs editor autopromote list phab:T237191 | Note: benchmarks is done by unique_days_with_edits | USE dewiki_p;
SET @editComments = 50;
SET @uniqueContentPages = 14;
SET @totalContentEdits = 300;
SET @reviewedEdits = 200;
SET @revertedEditsRatio = 0.03;
SET @usergroup="editor";
SET @userregistratioage=60;
SET @unique_days_with_edits=45;
-- newver blocked is always true
-- newer demoted is always true
SELECT * FRO... | {"runningtime": "1.14", "resultsets": [{"rowcount": 100, "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 |
Proofread-Vijayalakshmi-வாழ்க்கைநலம் | 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%")
#... | {"runningtime": "17.66", "resultsets": [{"rowcount": 0, "headers": ["Title", "user", "comment"]}]} | null |
মোট সম্পাদনার সংখ্যা | ১ এপ্রিল ২০২০। উপাত্ত ডাউনলোড করতে, উপাত্ত ডাউনলোড থেকে HTML ক্লিক করুন। | 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": "15.51", "resultsets": [{"rowcount": 80, "headers": ["Title", "user", "comment"]}]} | 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": "6.01", "resultsets": [{"rowcount": 37, "headers": ["Title", "user", "comment"]}]} | null |
中重要度天文條目 | null | use enwiki_p;
select REPLACE(l.ll_title, '_', ' ')
from langlinks l
join page p on p.page_id=l.ll_from
where p.page_namespace=0 and p.page_title in (select pla.page_title
from categorylinks cla
join page pla on cla.cl_from=pla.page_id
where pla.page_namespace=1 and cla.cl... | {"runningtime": "0.60", "resultsets": [{"rowcount": 1, "headers": ["actor_id"]}]} | null |
Articles, whose talk pages belong to certain category | Useful when organizing article contests | SELECT P1.page_title, A.actor_name, R.rev_timestamp, P1.page_len
FROM ukwiki_p.revision R
JOIN ukwiki_p.page P1 ON R.rev_page = P1.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 ukwiki_p.actor A ON R.rev_actor = A.actor_id
WHERE R.rev_pa... | {"connection_id": 231779127} | null |
低重要度天文條目 | null | use enwiki_p;
select REPLACE(l.ll_title, '_', ' ')
from langlinks l
join page p on p.page_id=l.ll_from
where p.page_namespace=0 and p.page_title in (select pla.page_title
from categorylinks cla
join page pla on cla.cl_from=pla.page_id
where pla.page_namespace=1 and cla.cl... | {"connection_id": 231780350} | null |
極低重要度天文條目 | null | use enwiki_p;
select REPLACE(l.ll_title, '_', ' ')
from langlinks l
join page p on p.page_id=l.ll_from
where p.page_namespace=0 and p.page_title in (select pla.page_title
from categorylinks cla
join page pla on cla.cl_from=pla.page_id
where pla.page_namespace=1 and cla.cl... | {"runningtime": "145.12", "resultsets": [{"rowcount": 100, "headers": ["page_title", "page_namespace"]}]} | null |
未知重要度天文條目 | null | use enwiki_p;
select REPLACE(l.ll_title, '_', ' ')
from langlinks l
join page p on p.page_id=l.ll_from
where p.page_namespace=0 and p.page_title in (select pla.page_title
from categorylinks cla
join page pla on cla.cl_from=pla.page_id
where pla.page_namespace=1 and cla.cl... | {"runningtime": "335.98", "resultsets": [{"rowcount": 1100, "headers": ["page_title", "page_namespace", "rev_timestamp"]}]} | null |
不適用重要度天文條目 | null | use enwiki_p;
select REPLACE(l.ll_title, '_', ' ')
from langlinks l
join page p on p.page_id=l.ll_from
where p.page_namespace!=0 and p.page_title in (select pla.page_title
from categorylinks cla
join page pla on cla.cl_from=pla.page_id
where pla.page_namespace!=1 and cla.... | {"runningtime": "79.92", "resultsets": [{"rowcount": 100, "headers": ["page_title", "page_namespace"]}]} | null |
specieswiki_p: AND page_title LIKE "%et_al.,2%" | null | USE specieswiki_p;
#SELECT CONCAT(page_title)
SELECT CONCAT("Template:",page_title,"")
FROM page AS page
WHERE page_namespace = -2
AND page_title LIKE "%a%"
#AND page_is_redirect = 1
#AND (page_title LIKE "%peopel%" OR page_title LIKE "%Peopel%")
LIMIT 9; | {"runningtime": "124.33", "resultsets": [{"rowcount": 81, "headers": ["reviews", "actor_name", "accept", "decline", "reject", "accept %", "decline %", "reject %"]}]} | null |
Very long redirects on enwiki | null | USE enwiki_p;
SELECT REPLACE(CONCAT("[[",page_title,"]]"), "_", " ") Title, LENGTH(page_title) AS Length
FROM page
WHERE page_namespace = 0 AND page_is_redirect = 1 AND LENGTH(page_title) >= 80
LIMIT 5000 | {"runningtime": "80.62", "resultsets": [{"rowcount": 100, "headers": ["page_title", "page_namespace"]}]} | 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": "2.98", "resultsets": [{"rowcount": 12, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 6, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 5, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Thanks for 2019 | Most thanked people in 2019
Blame Mz7, SQL, and stwalkerster for this | USE enwiki_p;
SELECT log_title, COUNT(log_id)
FROM logging_logindex
WHERE
log_type = "thanks" AND
log_timestamp >= "20200000000000"
GROUP BY log_title
ORDER BY 2 DESC | {"runningtime": "0.30", "resultsets": [{"rowcount": 100, "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 20200711000000 an... | {"runningtime": "40.89", "resultsets": [{"rowcount": 10000, "headers": ["replace(p.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
LEFT JOIN page ON log_title = page_title
where log_timestamp between 20200711000000 and 20200712000000
and log_action = "approve-i"
and log_namespace = 0
and page_is_redi... | {"connection_id": 237202984} | null |
Items created by me and not updated by anybody else | TODO currently is only checked that only the creator has edited the page. Add possibility for the second account (main or bot) to edit this item also. | use wikidatawiki_p;
SELECT DISTINCT page.page_title
FROM revision_userindex AS r1
INNER JOIN page ON r1.rev_page = page.page_id
WHERE r1.rev_actor IN (126032, 8139) AND r1.rev_parent_id = 0 AND page.page_namespace = 0 AND page_is_redirect = False
AND r1.rev_actor = ALL (
SELECT rev_actor
FROM revision
WHERE rev_... | {"connection_id": 858922} | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.