select user_id, user_name, user_editcount
from user
where user_editcount >=... |
2 years ago |
select user_id, user_name
from user
where user_editcount >= 10000000
order... |
2 years ago |
select user_id, user_name
from user
where user_editcount >= 10000000; |
2 years ago |