Hi, I order with datalength and that's fine.
I was wondering if there is a way of combining with date members registered. The result being those newest members (JOINDATE) with the most data (WORKINGMETHODS ) being returned first in the results..
This does not work
Any pointers would be appreciated.
Thanks
Richard
Code:
order by datalength(workingmethods) desc,
This does not work
Code:
order by datalength(workingmethods) desc, JoinDate desc
Thanks
Richard
Comment