title stringlengths 1 212 | description stringlengths 1 4.39k ⌀ | query stringlengths 1 65.5k ⌀ | extra_info stringlengths 18 31.6k | wikidb stringlengths 4 26 ⌀ |
|---|---|---|---|---|
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.14", "resultsets": [{"rowcount": 1, "headers": ["cl_to"]}]} | 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%")
... | {"runningtime": "0.18", "resultsets": [{"rowcount": 27, "headers": ["cl_to"]}]} | 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.11", "resultsets": [{"rowcount": 1, "headers": ["cl_to"]}]} | 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.09", "resultsets": [{"rowcount": 1, "headers": ["cl_to"]}]} | null |
user_id to user_name and vice versa | null | USE fawiki_p;
/*SELECT user_id
FROM user
WHERE user_name = 'Saeidpourbabak';*/
SELECT user_name
FROM user
WHERE user_id = 111931; | {"runningtime": "0.11", "resultsets": [{"rowcount": 4, "headers": ["cl_to"]}]} | null |
actor_id to actor_name and vice versa | null | USE fawiki_p;
SELECT actor_id
FROM actor
WHERE actor_name = 'Saeidpourbabak';
/*SELECT actor_name
FROM actor
WHERE actor_id = 481;*/ | {"runningtime": "0.70", "resultsets": [{"rowcount": 31, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Malayalam Wiki | null | use mlwiki_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 > 20191000000000 and
rev_act... | {"runningtime": "0.37", "resultsets": [{"rowcount": 31, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Show files, date and uploader ID | null | USE kowiki_p;
SELECT
CONCAT("* [[:File:", img_name, "]]") AS file,
img_timestamp AS img_creation,
img_actor as img_user
# ^^Timestamp of when upload took place. Not necessarily the same timestamp as logging.log_timestamp.
FROM image
JOIN page
ON page_namespace = 6
AND page_title = img_name
JOIN categorylinks
ON ... | {"runningtime": "0.29", "resultsets": [{"rowcount": 19, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
actor_id to actor_name and vice versa | null | USE fawiki_p;
SELECT actor_id
FROM actor
WHERE actor_name = 'Olea';
/*SELECT actor_name
FROM actor
WHERE actor_id = 481;*/ | {"runningtime": "0.52", "resultsets": [{"rowcount": 45, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_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": "0.19", "resultsets": [{"rowcount": 10, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Largest redirects in cswiki | null | USE eswiki_p;
SELECT page_len AS length, page_namespace AS namespace, page_title AS title FROM page
WHERE page_is_redirect = 1 AND page_len > 100 AND page_namespace NOT IN (2,3)
ORDER BY page_len DESC, page_title
LIMIT 100; | {"runningtime": "0.31", "resultsets": [{"rowcount": 16, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
বাংলা উইকিতে সবচেয়ে বেশী নিবন্ধ সৃষ্টি করা ব্যবহারকারী | ২৮ জানু ২০২০ | USE bnwiki_p;
SELECT
CONCAT("[[ব্যবহারকারী:",actor_name,"|",actor_name,"]]") AS ব্যবহারকারী_নাম,
COUNT(rev_id) AS মোট_নিবন্ধ
FROM actor INNER JOIN revision
ON revision.rev_actor = actor.actor_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... | {"runningtime": "0.33", "resultsets": [{"rowcount": 21, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
বাংলা উইকিতে সবচেয়ে বেশী নিবন্ধ সৃষ্টি করা ব্যবহারকারী | ২৮ জানু ২০২০ | USE bnwiki_p;
SELECT
CONCAT("[[ব্যবহারকারী:",actor_name,"|",actor_name,"]]") AS ব্যবহারকারী_নাম,
COUNT(rev_id) AS মোট_নিবন্ধ
FROM actor INNER JOIN revision
ON revision.rev_actor = actor.actor_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... | {"runningtime": "0.32", "resultsets": [{"rowcount": 27, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | 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": "0.23", "resultsets": [{"rowcount": 20, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
All files on ko.wiki | null | USE kowiki_p;
SELECT
CONCAT("* [[:File:", img_name, "]]") AS file #,
# img_timestamp AS img_creation
# ^^Timestamp of when upload took place. Not necessarily the same timestamp as logging.log_timestamp.
FROM image
JOIN page
ON page_namespace = 6
AND page_title = img_name
JOIN categorylinks
ON cl_from = page_id
AN... | {"runningtime": "0.29", "resultsets": [{"rowcount": 42, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
All files on hi.wiki | null | USE hiwiki_p;
SELECT
CONCAT("* [[:File:", img_name, "]]") AS file #,
# img_timestamp AS img_creation
# ^^Timestamp of when upload took place. Not necessarily the same timestamp as logging.log_timestamp.
FROM image
JOIN page
ON page_namespace = 6
AND page_title = img_name
JOIN categorylinks
ON cl_from = page_id
AN... | {"runningtime": "0.23", "resultsets": [{"rowcount": 24, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
عنوانهای بیفاصلهیکسان | نوشتارهایی با عنوان متفاوت که اگر نیمفاصله و فاصله را در عنوانشان نادیده بگیریم، نوشتارهایی همعنوان خواهند شد | USE fawiki_p;
(
SELECT frst.page_title as 'عنوان اصلی', REPLACE(frst.page_title,'','_') as 'عنوان معادل'
FROM page frst
WHERE frst.page_namespace=0
AND frst.page_is_redirect=0
and frst.page_title LIKE "%%"
and exists (
select null
from page scnd
WHERE scnd.page_namespace=0
AND scnd.page_is... | {"runningtime": "0.13", "resultsets": [{"rowcount": 7, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
mp7.3 Pages having (disambiguation) in the title while redirecting (including set index articles) to an article | null | USE fawiki_p;
SELECT CONCAT ('# [[',page_title,']]')
FROM page
WHERE page_namespace = 0
AND page_is_redirect = 1
AND page_title LIKE "%(ابهام%زدا%"
AND page_id IN (
SELECT rd_from
FROM redirect
WHERE rd_namespace=0
AND rd_title NOT IN (
SELECT page_title
FROM page
WHERE page_id IN (
SELECT pp_... | {"runningtime": "0.79", "resultsets": [{"rowcount": 108, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Redirects with interwiki but target doesn't have | null | USE fawiki_p;
SELECT CONCAT ('# [[',S.page_title,']] > [[:',ll_lang,':',ll_title,']]'), T.page_title
FROM page S INNER JOIN langlinks ON S.page_id = ll_from JOIN redirect ON rd_from = S.page_id JOIN page T ON T.page_title = rd_title
WHERE S.page_namespace = 0
AND S.page_is_redirect = 1
AND T.page_namespace = 0
AND T.pa... | {"runningtime": "0.17", "resultsets": [{"rowcount": 8, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Search | Does not inclue redirections | USE frwiki_p;
SELECT rev_id, rev_parent_id, rev_actor, actor_user, actor_name
FROM actor
LEFT JOIN user ON actor_user = user_id
lEFT JOIN revision ON rev_actor = actor_id
WHERE user_name IN ('Nathan2408', 'Inmediatic'); | {"runningtime": "0.75", "resultsets": [{"rowcount": 61, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Most used templates on bnwikisource and their protection level | Most used templates on mrwikisource and their protection level | use bnwikisource_p;
SELECT
CASE
WHEN LEFT(tl_title, 1) <= 'z' THEN CONCAT('Template:', tl_title)
ELSE CONCAT('টেমপ্লেট:', tl_title)
END AS template,
pr_level,
COUNT(*) AS freq
FROM templatelinks
JOIN page
ON tl_title = page_title
AND page_namespace = 10
LEFT JOIN page_restrictions
ON pr_page = pa... | {"runningtime": "0.89", "resultsets": [{"rowcount": 41, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
sa wikisource Pages_Without_Scans | sa wikisource Pages_Without_Scans | use sawikisource_p;
SELECT
page_title AS title,
page_len AS len,
pl_title AS author,
DATE_FORMAT(MAX(rev_timestamp),'%Y-%m-%d') AS ledit_date,
DATE_FORMAT(MIN(rev_timestamp),'%Y-%m-%d') AS create_date
FROM
revision, page LEFT JOIN (SELECT DISTINCT pl_from, pl_title FROM pagelinks WHERE pl_namespace = 104) ... | {"runningtime": "0.95", "resultsets": [{"rowcount": 50, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Telugu Wikisource stats | null | use bnwikisource_p;
SELECT
categorylinks.cl_to,
count(*) as pagecount
FROM page
JOIN categorylinks ON page.page_id = categorylinks.cl_from
WHERE page_namespace=104
GROUP BY categorylinks.cl_to; | {"runningtime": "0.54", "resultsets": [{"rowcount": 37, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Punjabi Wiki New Editors | null | use pawiki_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 > 20191000000000 and
rev_act... | {"runningtime": "0.56", "resultsets": [{"rowcount": 28, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
НП+Россия | Статьи с шаблоном НП+Россия | USE ruwiki_p;
SELECT page_title
FROM page
INNER JOIN templatelinks ON page_id=tl_from
WHERE page_namespace = 0
AND tl_title LIKE "НП+Россия"
#GROUP BY page_title
GROUP BY page_title
ORDER BY page_title
#LIMIT 3; | {"runningtime": "0.77", "resultsets": [{"rowcount": 44, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Number of Records In wb_items_per_site | starting at 12:20 29052020 | use wikidatawiki_p;
SELECT count(*)
from wb_items_per_site; | {"runningtime": "0.58", "resultsets": [{"rowcount": 33, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Možná nadbytečné rozcestníky | null | use cswiki_p;
select page_namespace, page_title from page join redirect on page_id=rd_from where rd_title like '%_(rozcestník)' and page_title like replace(rd_title, '_(rozcestník)', ''); | {"runningtime": "0.47", "resultsets": [{"rowcount": 16, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
First 100000 Articles | null | use wikidatawiki_p;
SELECT ips_item_id, ips_site_page
from wb_items_per_site
Where ips_site_id = 'enwiki'
And ips_item_id < 100001
LIMIT 100050; | {"runningtime": "1.21", "resultsets": [{"rowcount": 76, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Scopes of Languages | null | use wikidatawiki_p;
SELECT CURRENT_DATE;
SELECT ips_site_id, count(*)
from wb_items_per_site
GROUP BY ips_site_id
order by count(*) desc; | {"runningtime": "0.88", "resultsets": [{"rowcount": 52, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | 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.45", "resultsets": [{"rowcount": 15, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | 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.40", "resultsets": [{"rowcount": 33, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | 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.40", "resultsets": [{"rowcount": 47, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
All images and upload date in a category | All images in a category | USE idwiki_p;
SELECT
CONCAT("* [[:File:", img_name, "]]") AS file#,
# img_timestamp AS img_creation
# ^^Timestamp of when upload took place. Not necessarily the same timestamp as logging.log_timestamp.
FROM image
JOIN page
ON page_namespace = 6
AND page_title = img_name
JOIN categorylinks
ON cl_from = page_id
AND... | {"runningtime": "0.49", "resultsets": [{"rowcount": 18, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
All files on id.wiki | null | USE idwiki_p;
SELECT
CONCAT("* [[:File:", img_name, "]]") AS file #,
# img_timestamp AS img_creation
# ^^Timestamp of when upload took place. Not necessarily the same timestamp as logging.log_timestamp.
FROM image
JOIN page
ON page_namespace = 6
AND page_title = img_name
JOIN categorylinks
ON cl_from = page_id
AN... | {"runningtime": "0.84", "resultsets": [{"rowcount": 61, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Možná nadbytečné rozcestníky | null | use cswiki_p;
select page_namespace, page_title from page join redirect on page_id=rd_from where rd_title like '%_(rozcestník)' and page_title like replace(rd_title, '_(rozcestník)', ''); | {"runningtime": "0.44", "resultsets": [{"rowcount": 33, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
articles with template consisting symbol "+" | null | USE ruwiki_p;
SELECT page_title
FROM page
INNER JOIN templatelinks ON page_id=tl_from
WHERE page_namespace = 0
AND tl_title LIKE "%+%"
#GROUP BY page_title
GROUP BY page_title
ORDER BY page_title DESC
LIMIT 3; | {"runningtime": "0.41", "resultsets": [{"rowcount": 29, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_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": "0.43", "resultsets": [{"rowcount": 16, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Možná nadbytečné rozcestníky | null | use cswiki_p;
select page_namespace, page_title from page join redirect on page_id=rd_from where rd_title like '%_(rozcestník)' and page_title like replace(rd_title, '_(rozcestník)', ''); | {"runningtime": "0.30", "resultsets": [{"rowcount": 8, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Telugu wiki:Uncategorized categories | null | use tewiki_p;
select CONCAT('# [[:Kategori:',page_title,']]') as page_title
from page
left outer join categorylinks
on cl_from = page_id
where cl_from is null
and page_namespace = 14; | {"runningtime": "0.48", "resultsets": [{"rowcount": 31, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Te Wiki Users with Most Edits | null | USE tewiki_p;
SELECT distinct u.user_name, u.user_editcount
FROM user u
inner join user_groups ug
on ug.ug_user=u.user_id
where ug.ug_group<>'bot'
ORDER BY u.user_editcount desc
LIMIT 300; | {"runningtime": "0.31", "resultsets": [{"rowcount": 23, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Pages created by Content Translation in Telugu Wikipedia | null | use tewiki_p;
set @change_tag_id = (
select
ctd_id
from
change_tag_def
where
ctd_name = 'WP:FA'
);
select
distinct(rev_page),
page_title
from
revision,
page
where
rev_page = page_id and
page_namespace = 0 and
rev_id in (
select ct_rev_id
from change_tag
where ct_tag_i... | {"runningtime": "0.20", "resultsets": [{"rowcount": 11, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Telugu Wiki Editors who Created Number of Pages | null | USE tewiki_p;
SELECT
a.actor_name, COUNT(*) as count
FROM
page p, revision rf, actor_user a
WHERE
rf.rev_page = p.page_id and rf.rev_parent_id = 0 and
a.actor_id = rf.rev_actor and
p.page_namespace = 0 and
p.page_is_redirect = 0
GROUP BY
a.actor_name
ORDER BY
count desc
; | {"runningtime": "0.26", "resultsets": [{"rowcount": 19, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Telugu article carry name with తెలుగు | null | USE tewiki_p;
select * from category where lower(cat_title) like '%తెలుగు%'
limit 10000; | {"runningtime": "0.33", "resultsets": [{"rowcount": 17, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Stub articles created in Telugu Wiki as on May 2020 | null | use tewiki_p;
#desc revision;
#desc page;
select p.page_title,r.rev_user_text,p.page_len from revision r, page p where r.rev_parent_id = 0 and r.rev_len < 2048 and p.page_len < 2048 and p.page_namespace = 0 and p.page_is_redirect = 0 and rev_timestamp < '20140200000000' and rev_timestamp > '20131231235959' and r.rev_pa... | {"runningtime": "0.51", "resultsets": [{"rowcount": 23, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Te Wiki Admin - sysop Activity with Dates | null | use tewiki_p;
SELECT user_name, user_editcount, user_registration, rev_timestamp AS 'Last edit', log_timestamp AS 'Last log', ug1.ug_group AS 'user_group'
FROM `user`
LEFT JOIN user_groups ug1
ON user_id = ug1.ug_user AND ug1.ug_group IN (' ')
JOIN actor
ON actor_user = user_id
JOIN revision_userindex
ON rev_id = ... | {"runningtime": "0.82", "resultsets": [{"rowcount": 83, "headers": ["page_title"]}]} | null |
Size of Telugu Wikipedia | null | use tewiki_p; Select sum(page_len) from page where page_namespace=0 | {"runningtime": "1522.42", "resultsets": [{"rowcount": 25000, "headers": ["MID", "P6305", "OTRS", "CONCAT(\"File:\",page_title)"]}]} | null |
Telugu Articles without wikidata item | null | use tewiki_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 100000; | {"runningtime": "3.08", "resultsets": [{"rowcount": 11, "headers": ["linter_cat", "page_namespace", "count(*)"]}, {"rowcount": 5, "headers": ["linter_cat", "count(*)", "count(distinct page_namespace)"]}, {"rowcount": 6, "headers": ["page_namespace", "count(*)", "count(distinct linter_cat)"]}]} | null |
Articles containing red-linked files | null | USE tewiki_p;
SELECT page_title
FROM page
WHERE page_is_redirect = 0
AND page_namespace = 0
AND page_id NOT IN (
SELECT pp_page
FROM page_props
WHERE pp_propname = '')
AND page_title NOT IN (
SELECT pl_title
FROM pagelinks
WHERE pl_namespace = 0
)
ORDER BY page_title; | {"runningtime": "0.32", "resultsets": [{"rowcount": 10, "headers": ["cl_to"]}]} | null |
Images in Te Wikipage | null | use tewiki_p;
SELECT il_to, COUNT(il_to) as Cnt FROM imagelinks
WHERE il_from_namespace = 0 AND (
NOT EXISTS(
SELECT
1
FROM page
WHERE page_title = il_to
AND page_namespace = 6
)
) AND (
NOT EXISTS(
SELECT
1
FROM commonswiki_p.page
WHE... | {"runningtime": "0.10", "resultsets": [{"rowcount": 2, "headers": ["cl_to"]}]} | null |
Average article length on Telugu Wikipedia | null | USE tewiki_p;
SELECT AVG(page_len)
FROM page
WHERE page_is_redirect=0
AND page_namespace=0; | {"runningtime": "0.22", "resultsets": [{"rowcount": 1, "headers": ["cl_to"]}]} | null |
Wikidata Q Links ID (CONCAT) with reference to Telugu Wiki | null | use wikidatawiki_p;
select CONCAT("Q",ips_item_id), CONCAT('"',ips_site_page,'"')
from wb_items_per_site i
#join wb_terms on ips_item_id = term_entity_id and term_type = "label"
where i.ips_site_id='tewiki' and not exists
(select term_entity_id from wb_terms where i.ips_item_id = term_entity_id and
term_type = "labe... | {"runningtime": "0.23", "resultsets": [{"rowcount": 8, "headers": ["cl_to"]}]} | null |
Telugu Wiki pages without any links | null | USE tewiki_p;
SELECT page_title
FROM page
WHERE page_is_redirect = 0
AND page_namespace = 0
AND page_id NOT IN (
SELECT pp_page
FROM page_props
WHERE pp_propname = 'అనాథ')
AND page_title NOT IN (
SELECT pl_title
FROM pagelinks
WHERE pl_namespace = 0
)
ORDER BY page_title; | {"runningtime": "0.28", "resultsets": [{"rowcount": 4, "headers": ["cl_to"]}]} | null |
Most Popular Articles (Across Languages) | null | select file_path, file_name, round(size/1024/1024/1024) as GB
FROM backup_files
where backup_id=1311
order by size desc LIMIT 40; | {"runningtime": "0.19", "resultsets": [{"rowcount": 1, "headers": ["cl_to"]}]} | null |
Titles of most popular pages | null | use wikidatawiki_p;
SELECT ips_item_id, ips_site_page
from wb_items_per_site
where ips_site_id = 'enwiki'
and ips_item_id in ('4847311',
'5296',
'20739451',
'4299475',
'4844001',
'21042795',
'21042800',
'16503',
'5964',
'4039395',
'20950423',
'3740',
'21042797',
'1281',
'21042799',
'21042798',
'5461620',
'4608595',
'5... | {"runningtime": "0.51", "resultsets": [{"rowcount": 7, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Geometric Plurals | Math articles to move from plural to singular title. | select page_title from page
where page_namespace=0
and page_is_redirect=0
and (page_title like '%-orthoplexes')
| {"runningtime": "0.39", "resultsets": [{"rowcount": 38, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Telugu Wikipedia Pages by Size | null | use hiwiki_p;
SELECT CONCAT('# [[', page_title, ']]'), page_len
FROM page
WHERE page_namespace = 0 AND page_len > 1 AND page_len < 2000 AND page_is_redirect = 0
#ఇక్కడ అవసరము బట్టీ 10000 దగ్గర పేజీ సైజు మార్చుకోవచ్చు
ORDER BY page_len ASC
#LIMIT 100; | {"runningtime": "0.40", "resultsets": [{"rowcount": 27, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Telugu Wiki User Reg Date and Edit Count | వికీ వాడుకదారులు వారి ఎడిటింగ్ జాబితా | use hiwiki_p;
select
rev_actor,
actor_name,
user_editcount,
user_registration,
rev_timestamp AS 'Last edit',
count(rev_id) as edit_count,
user_properties.up_value as gender
from
revision,
actor,
user
left join
user_properties on (
user.user_id = user_properties.up_user and
us... | {"runningtime": "0.48", "resultsets": [{"rowcount": 27, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Telugu Wikipedia User Contributions | null | USE hiwiki_p;
SELECT CONCAT("[[Special:Contributions/",actor.actor_name,"|",actor.actor_name,"]]") AS user_name,
COUNT(revision.rev_actor) AS creates
FROM revision
INNER JOIN page
ON page.page_id = revision.rev_page
JOIN actor
ON revision.rev_actor = actor.actor_id
WHERE page.page_is_redirect = 0
AND page.page_nam... | {"runningtime": "0.35", "resultsets": [{"rowcount": 20, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
My edits | null | USE fawiki_p;
SELECT distinct page_title#, page_namespace, rev_timestamp
FROM revision JOIN page ON rev_page = page_id
WHERE page_namespace = 0 # Articles
AND page_is_redirect = 0
AND rev_actor = 481 # Saeidpourbabak
AND rev_timestamp > 20140000000000 # After
AND rev_timestamp < 20150000000000 # before
#ORDER BY rev_ti... | {"runningtime": "0.15", "resultsets": [{"rowcount": 15, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Test AFHC User Talk.... | null | use enwiki_p;
select DATE_FORMAT(rc_timestamp, '%d/%m/%y %H: %i') as time,rc_title, actor_name, comment_text, rc_namespace
from recentchanges_userindex
left join actor on rc_actor = actor_id
left join comment on rc_comment_id = comment_id
where (rc_namespace = 3 )
and (rc_title = 'FloridaArmy')
and (comment_text ... | {"runningtime": "0.13", "resultsets": [{"rowcount": 8, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Fr.wikiquote sysop | null |
SET @project = "frwikiquote_p.user";
set @qry1:= concat('select user_id, user_name, ug_group from ', @project,
' JOIN user_groups on ug_user = user_id and ug_group = "sysop"',
' limit 10');
prepare stmt from @qry1 ;
execute stmt ;
| {"runningtime": "0.45", "resultsets": [{"rowcount": 17, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Harvest Affiliate Members | Harvest affiliate members for all affiliates in Wikimedia. | # avoid duplicate user names
SELECT DISTINCT pl_title AS "Affiliated User Name",
page_title AS "Affiliate Group"
FROM commons_p.pagelinks AS pl
JOIN commons_p.page AS p
ON pl.pl_from = p.page_id
# harvest from the a list of affiliates
WHERE p.page_title IN
(
"Commons_Photographers_User_Group"
)
# remove MediaWiki... | {"runningtime": "0.20", "resultsets": [{"rowcount": 7, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Unbegrenzt gesperrte Benutzer mit mehr als 4000 Bearbeitungen | null | USE dewiki_p;
select user_name, comment_text from user,ipblocks,comment
where ipb_user=user_id
and ipb_reason_id=comment_id
and user_editcount>4000
and ipb_expiry='infinity'
and ipb_timestamp>"20190101000000"
and comment_text not like '%eigenen Wunsch%'
and comment_text not like '%verstorben%'; | {"runningtime": "0.31", "resultsets": [{"rowcount": 26, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
Get The timestamp for first revision of all articles in Ukwiki | Proxy for page_creation time | use ukwiki_p;
SELECT MIN(revision.rev_timestamp) as page_creation_timestamp,page.page_title,page.page_id FROM revision JOIN page
ON page.page_id = revision.rev_page WHERE page.page_namespace=0 GROUP BY page.page_title; | {"runningtime": "0.29", "resultsets": [{"rowcount": 15, "headers": ["grand_grand_parent_title", "grand_grand_parent_subcats", "grand_parent_title", "grand_parent_subcats", "parent_title", "parent_subcats", "child_title"]}]} | null |
××××××××× | null | use hewiki_p;
| {"runningtime": "0.16", "resultsets": [{"rowcount": 4, "headers": ["cl_to"]}]} | null |
×××××× | Redirects starting with a certain char | use hewiki_p;
| {"runningtime": "0.15", "resultsets": [{"rowcount": 0, "headers": ["cl_to"]}]} | null |
×××××××××× | null | use hewiki_p;
| {"runningtime": "0.18", "resultsets": [{"rowcount": 15, "headers": ["cl_to"]}]} | null |
טעות | null | null | {"runningtime": "0.29", "resultsets": [{"rowcount": 7, "headers": ["cl_to"]}]} | null |
לא ידוע | null | use hewiki_p;
select page_namespace, page_title from revision_userindex
inner join page
on rev_page=page_id
and page_latest=rev_id
where
(
rev_user_text='סוס פוני'
)
and
(
rev_comment IN (22833309 ,22915538)
); | {"runningtime": "0.13", "resultsets": [{"rowcount": 2, "headers": ["cl_to"]}]} | null |
×××××××××× | null | use hewiki_p;
| {"runningtime": "0.13", "resultsets": [{"rowcount": 5, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.13", "resultsets": [{"rowcount": 2, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.12", "resultsets": [{"rowcount": 1, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.12", "resultsets": [{"rowcount": 8, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.12", "resultsets": [{"rowcount": 4, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.16", "resultsets": [{"rowcount": 2, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.10", "resultsets": [{"rowcount": 0, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.13", "resultsets": [{"rowcount": 5, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.17", "resultsets": [{"rowcount": 1, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.18", "resultsets": [{"rowcount": 13, "headers": ["cl_to"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.17", "resultsets": [{"rowcount": 3, "headers": ["cl_to"]}]} | null |
×××××××××× | null | use hewiki_p;
| {"runningtime": "0.32", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.39", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××××× | null | null | {"runningtime": "0.27", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××× | null | null | {"runningtime": "0.30", "resultsets": [{"rowcount": 47, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××× | null | null | {"runningtime": "0.31", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
8888888888 | null | null | {"runningtime": "0.29", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
×××××××××× | null | null | {"runningtime": "0.36", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××× | null | null | {"runningtime": "0.43", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××××× | null | null | {"runningtime": "0.32", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××××× | null | null | {"runningtime": "0.37", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
×××××××× | null | null | {"runningtime": "0.29", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
×××××××× | null | null | {"runningtime": "0.37", "resultsets": [{"rowcount": 48, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××××× | null | null | {"runningtime": "0.34", "resultsets": [{"rowcount": 47, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××××××× | ht | null | {"runningtime": "0.17", "resultsets": [{"rowcount": 2, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××× | null | null | {"runningtime": "0.26", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××× | null | null | {"runningtime": "0.26", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××× | null | null | {"runningtime": "0.32", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××××× | null | null | {"runningtime": "0.35", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
×××××××××××× | null | null | {"runningtime": "0.27", "resultsets": [{"rowcount": 50, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
××××××××××× | null | null | {"runningtime": "0.15", "resultsets": [{"rowcount": 0, "headers": ["cat_title", "cat_pages-cat_subcats"]}]} | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.