SQL
x
select up_user, actor_name, actor_id from user_properties join actor
on up_user = actor_user
where up_property = 'gender'
and up_value = 'female'
and not exists
(select * from revision_userindex
where rev_actor = actor_id)
limit 100;
select * from revision_userindex where rev_actor = '231' order by rev_timestamp desc limit 10;
select * from actor where actor_name = 'IKhitron' 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.
All SQL code is licensed under CC0 License.