Compare commits

..

No commits in common. "4ffe3deb54b76565d445278fee34398121602485" and "4737663e8d58080f0ab46dd22e0913d88297c8a4" have entirely different histories.

View File

@ -185,7 +185,7 @@ ORDER BY last_access DESC
"
SELECT id, name, pw, is_cox, is_admin, is_guest, deleted, last_access, is_tech, dob, weight, sex
FROM user
WHERE deleted = 0 AND dob != '' and weight != '' and sex != ''
WHERE deleted = 0 AND dob is not null and weight is not null and sex is not null
ORDER BY name
"
)