I'm trying to retrieve all my friends expect few people.
I formed the query like this
SELECT uid,name FROM user WHERE uid NOT IN ($x)
Retrieve every one expect those people who are in $x.
This is giving me an fatal error Uncaught Exception: 601: Parser error: unexpected 'NOT
Thanks in advance!