Code:
I have:
SELECT tbl_users.Name, tbl_users.bradfordscore
FROM tbl_users
WHERE (((tbl_users.bradfordscore)>"75"));
but it returns a user whose score is 9 and not the user whose score is 125.
What would be the reason for this?
thanks