How to not use WHERE in a CASE statement?

How to not use WHERE in a CASE statement?


SELECT
c.ClaimId, c.Number, s.ClaimStatusId StatusId, c.ClaimedAmount,
c.Created AS Lodged, c.Updated,
(u.UserName + '' + u.LastName) AS Creditor,
c.JobId, j.CompanyName AS JobName,
outcome.Approved AS ApprovedAmount, outcome.Rejected AS RejectedAmount,
s.NormalizedName AS Status, type.Name AS Type, c.Version, c.RemarksCount
FROM
ClaimView c
INNER JOIN
ClaimType type ON c.TypeId = type.ClaimTypeId
LEFT JOIN
ClaimOutcome outcome ON outcome.ClaimId = c.ClaimId
INNER JOIN
Job j ON c.JobId = j.JobId
INNER JOIN
ApplicationUser u ON u.Id = c.CreatedBy
INNER JOIN
ClaimStatus s ON s.ClaimStatusId = c.StatusId
WHERE
c.CreatedBy = @userId
AND c.StatusId > 1
AND c.IsDeleted = (CASE @isAdmin
WHEN 'False' THEN 0
END)



There's @isAdmin variable and I need to return date with @isAdmin IN (1,0) or to not use WHERE c.IsDeleted at all in case of @isAdmin is True. How I can implement it? That's my current code above.


@isAdmin


@isAdmin





It's generally better to use AND/OR constructions instead of case expressions in the WHERE clause. (Better optimization.)
– jarlh
Sep 4 '18 at 20:44


AND


OR


case


WHERE




3 Answers
3


AND c.isDeleted = CASE WHEN @isAdmin = 'False' THEN 0 ELSE c.isDeleted END



You can use a simple OR to


OR


@isAdmin


false


@isAdmin='true'


c.isDeleted = 0



But you will not need both conditions to be true.


...
WHERE
c.CreatedBy = @userId
AND c.StatusId > 1
AND (@isAdmin != 'False' OR c.IsDeleted = 0 )



This should do. Might be overkill, but I think it's also more technically sound with the NULL handing:


(
AND (
@isAdmin = 'False'
AND c.IsDeleted = 0
)
OR
(@isAdmin <> 'False'
AND c.isDeleted IS NULL
)
)



Thanks for contributing an answer to Stack Overflow!



But avoid



To learn more, see our tips on writing great answers.



Some of your past answers have not been well-received, and you're in danger of being blocked from answering.



Please pay close attention to the following guidance:



But avoid



To learn more, see our tips on writing great answers.



Required, but never shown



Required, but never shown




By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)