SQL
AخA
with userInfo as
(select user_id As uid, user_name As uname, user_registration as uregdate, user_editcount as ueditcount from user order by ueditcount desc)
select userInfo.uid, userInfo.uname as UserName, cast(userInfo.uregdate as date) as Registration, userInfo.ueditcount as Editcount from userInfo limit 25
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.