Fork of
Beauty accounts 2
by Bri
This query is marked as a draft
This query has been published
by Bri.
SQL
x
SET @REGISTRATION_START = "2023-09-01";
select user_name, user_registration, TIME_FORMAT(user_registration, "%H%i") as time, user_editcount from user
where (user_name like "%BeautyQueen" or user_name like "%Waltz" or user_name like "%Glamour" or user_name like "%Beauty")
and user_registration > @REGISTRATION_START
and not exists(
# Filter out blocked users
select 1 from ipblocks
where user_id=ipb_user # BLOCKED USER
)
order by user_registration desc
limit 250
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.