Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Join Two Ways
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Miscellaneous
Thread ID:
01417353
Message ID:
01417361
Views:
38
>Given the following:
>
>- Each department can have multiple users.
>- Each user can have multiple departments.
> -A letter belongs to a user and a department
>
>How would you write a stored procedure that takes a UserID and returns all of the columns from the
>Department and Letter tables for each Letter for the UserID that was passed to the stored procedure?
>
>I'm not sure how to code this with the many-to-many relationship between Departments and Letters.
SELECT *  -- (just put the field list you want to use here)
FROM Users
INNER JOIN Departments ON Departments.UserId = Users.Id
INNER JOIN Letters     ON Letters.UserId     = Users.Id
WHERE Users.Id = @UserId
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Reply
Map
View

Click here to load this message in the networking platform