vote up 0 vote down star

Hello StackOverflow Community,

I had a quick question on how to exclude data from an SQL database using an SQL statement. My situation is I have a user login to their profile page where they will be able to friend people. I want to display all users except themselves that are found in the SQL database.

Thanks for all the answers!

Rohan

flag
This is a really basic question. Consider a good book on DB theory and SQL, it will greatly benefit you. See my recommendations: stackoverflow.com/questions/1046668/… – MaD70 Nov 8 at 11:44

4 Answers

vote up 2 vote down

How about:

SELECT * FROM people WHERE person_id != $current_user_id
link|flag
1  
That should probably be person_id <> current_user_id – Andomar Nov 7 at 15:51
Why? The RDBMS I use supports != operator. – AJ Nov 7 at 15:53
Interesting, just checked and SQL Server and MySQL support != – Andomar Nov 7 at 16:07
Please consider upvoting my comment then :) – AJ Nov 7 at 16:10
2  
See stackoverflow.com/questions/723195/… – Bill Karwin Nov 7 at 18:02
show 3 more comments
vote up 2 vote down

Maybe just

SELECT *
FROM 
    Users
WHERE
    UserId <> @ThisUserId

Or using a Difference Union (The EXCEPT keyword in SQL Server, not sure about other RDBMS implementations)

SELECT *
FROM 
    Users

EXCEPT

SELECT *
FROM 
    Users
WHERE
    UserId = @ThisUserId
link|flag
+1 Didn't know about the EXCEPT keyword, cool – Andomar Nov 7 at 16:03
1  
The INTERSECT keyword can also be extremely useful too, for finding results common to all resultsets – Russ Cam Nov 7 at 16:09
vote up 1 vote down

If you know what that user's unique ID is you could use something like this for example:

SELECT * FROM usertable WHERE id!='myuserid'

What I do with one of my authentication scripts is store the information for the person that is currently logged in in a variable so it would look like this in PHP:

SELECT * FROM usertable WHERE id!='check(id)'
link|flag
vote up 1 vote down
select * from Foo where UserName not in ('Rohan', 'Rohan's friend', .....)

Is this useful?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.