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
Framawiki
.
List all the newcomers that have opened a new section on their talk page, without any edit on it since (no answer).
Toggle Highlighting
SQL
use frwiki_p; select rev_user_text, comment_text, date(rev_timestamp), rev_id from revision_userindex inner join comment on rev_comment_id = comment_id inner join page ON rev_page = page_id inner join user on user_id = rev_user where page_namespace = 3 and page_title = rev_user_text and user.user_editcount < 500 and year(rev_timestamp) = '2019' and comment_text LIKE '%nouvelle section' and rev_id = (select max(rev_id) from revision_compat where revision_compat.rev_page = revision_userindex.rev_page group by revision_compat.rev_page) order by rev_timestamp asc limit 1000;
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...