I'm trying to get all users, and order them by a field on another table, however this field doesn't always exist?
Users - Holds Users User Meta - Holds metadata, specifically "weight" which is what I'm trying to order by.
A more concrete solution would be to automatically define them a default weight, however is there anyway I can make it work without? Current working query:
SELECT * FROM users u, usermeta um
WHERE u.ID = um.ID
AND u.name LIKE '%search_terms%';
Lost on the order by part, any/all help would be appreciated!