Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
軽快
.
要約欄での検索 具体的な使用例についてはhttps://quarry.wmflabs.org/query/24215を参照
Toggle Highlighting
SQL
use jawiki_p; select concat( case page_namespace when 0 then "" when 1 then "ノート:" when 2 then "利用者:" when 3 then "利用者‐会話:" when 4 then "Wikipedia:" when 5 then "Wikipedia‐ノート:" when 6 then "ファイル:" when 7 then "ファイル‐ノート:" when 8 then "MediaWiki:" when 9 then "MediaWiki‐ノート:" when 10 then "Template:" when 11 then "Template‐ノート:" when 12 then "Help:" when 13 then "Help‐ノート:" when 14 then "Category:" when 15 then "Category‐ノート:" when 100 then "Portal:" when 101 then "Portal‐ノート:" when 102 then "プロジェクト:" when 103 then "プロジェクト‐ノート:" when 828 then "モジュール:" when 829 then "モジュール‐ノート:" end, page_title ) as "ページ名", rev_user_text as "利用者名", rev_id as "oldid", rev_timestamp as "投稿日時", rev_comment as "要約欄", case rev_minor_edit when 0 then "no" when 1 then "yes" end as "細部の編集か?", case rev_parent_id when 0 then "yes" else "no" end as "新規作成か?" from revision_userindex inner join page on rev_page = page_id where #rev_user_text = "(ここに利用者名)" and #特定の利用者に絞って検索する場合は一つ上の行の#を消す #rev_minor_edit = 0 and #細部の編集を除いて検索する場合は一つ上の行の#を消す #細部の編集に限って検索する場合は二つ上の行の#を消して、0を1に変更する page_namespace = (1 or 3) and #特定の名前空間に限定して検索する場合は一つ上の行の#を消す。複数の名前空間を検索対象とする場合はorが使える(例: (0 or 1)) rev_comment like '%削除%' #完全一致検索の場合は一つ上の行の先頭に#をつけて、下の行の#を消す #rev_comment = "削除" limit 10 #検索件数は10件までに制限されている。リミッターを解除する場合は、一つ上の行の先頭に#をつけ、緩和する場合は数字を大きくする。
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...