Originally posted by pahikua
SELECT * FROM user WHERE user_name NOT LIKE "rob" OR NOT LIKE "dark pulse" ORDER BY pts
where user_name is whatever you named the field that designates the users name
Using LIKE is a bit redundant; you're wanting to make exact matches, I presume.
SELECT * FROM user WHERE user_name!="rob" OR username!="dark pulse" ORDER BY pts
Or
SELECT * FROM user WHERE user_name NOT IN ("rob", "dark pulse") ORDER BY pts
Basic SQL, really.