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
لوقا
.
Toggle Highlighting
SQL
#show tables; /* abuse_filter abuse_filter_action abuse_filter_history abuse_filter_log */ /* select af_id,af_public_comments from abuse_filter where af_enabled = 1 and af_hidden = 0 and af_deleted = 0 and af_hit_count > 0 ; */ select count(afl_filter_id), afl_filter_id,abuse_filter.af_public_comments from abuse_filter_log inner join abuse_filter on abuse_filter.af_id = abuse_filter_log.afl_filter_id WHERE afl_timestamp >= NOW() - INTERVAL 30 DAY # abuse_filter is enabled not hidden and not deleted and has hit and abuse_filter.af_enabled = 1 and abuse_filter.af_hidden = 0 and abuse_filter.af_deleted = 0 and abuse_filter.af_hit_count > 0 group by afl_filter_id; select * from abuse_filter_log WHERE afl_timestamp >= NOW() - INTERVAL 30 DAY limit 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...