mirror of
https://github.com/bitwarden/server
synced 2025-12-28 22:23:30 +00:00
15 lines
315 B
Transact-SQL
15 lines
315 B
Transact-SQL
CREATE VIEW [dbo].[OrganizationUserUserDetailsView]
|
|
AS
|
|
SELECT
|
|
OU.[Id],
|
|
OU.[UserId],
|
|
OU.[OrganizationId],
|
|
U.[Name],
|
|
ISNULL(U.[Email], OU.[Email]) Email,
|
|
OU.[Status],
|
|
OU.[Type],
|
|
OU.[AccessAll]
|
|
FROM
|
|
[dbo].[OrganizationUser] OU
|
|
LEFT JOIN
|
|
[dbo].[User] U ON U.[Id] = OU.[UserId] |