1
0
mirror of https://github.com/bitwarden/server synced 2026-01-07 11:03:37 +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
[dbo].[TransactionView]
WHERE
[UserId] = NULL
[UserId] IS NULL
AND [OrganizationId] = @OrganizationId
END