1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 18:23:44 +00:00

is null, not =

This commit is contained in:
Kyle Spearrin
2019-02-09 21:38:33 -05:00
parent 8fad9d849f
commit bc30f47331
2 changed files with 2 additions and 2 deletions

View File

@@ -9,6 +9,6 @@ BEGIN
FROM FROM
[dbo].[TransactionView] [dbo].[TransactionView]
WHERE WHERE
[UserId] = NULL [UserId] IS NULL
AND [OrganizationId] = @OrganizationId AND [OrganizationId] = @OrganizationId
END END

View File

@@ -155,7 +155,7 @@ BEGIN
FROM FROM
[dbo].[TransactionView] [dbo].[TransactionView]
WHERE WHERE
[UserId] = NULL [UserId] IS NULL
AND [OrganizationId] = @OrganizationId AND [OrganizationId] = @OrganizationId
END END
GO GO