site or not. Below is what I have for tables, sample data and the
results. I am a newb with writing my own SQL and could use a few
pointers and help.
For example if I have the following data:
Table: [Users]
UserIDUserName
1Bob
2Joe
3Sam
Table: [Users_Sites]
UserIDSiteID
12
32
Table: [Sites]
SiteIDSiteName
1Flower
2Spring
3Bush
If I pick Site 1 I get the list:
UserIDSiteID
<null>1
<null>1
<null>1
If I pick Site 2 I get the list:
UserIDSiteID
12
<null>2
32
Thanks in advance...Will (wrhighfield@.hotmail.com) writes:
> What I want to generate is a list of all users and if they belong to a
> site or not. Below is what I have for tables, sample data and the
> results. I am a newb with writing my own SQL and could use a few
> pointers and help.
SELECT us.SiteID, u.UserID
FROM Users_Sites us
LEFT JOIN Users u ON us.UserID = u.UserID
WHERE us.SiteID = @.siteid
--
Erland Sommarskog, SQL Server MVP, sommar@.algonet.se
Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techin.../2000/books.asp
No comments:
Post a Comment