简体   繁体   中英

how can I have different where condition using case statement?

@HistoryMSBType => This is a variable which can contain any varchar.

Depending upon it's value, i need to have different type of where clause.

How can I achieve this ?

SELECT * FROM stageTable map
WHERE id = 1
CASE @HistoryMSBType
 WHEN 'Utilization Other' THEN
    AND map.ColumnID = 4
 WHEN 'Cost Other' THEN
    AND map.ColumnID = 6
 ELSE
    AND map.ColumnName = @HistoryMSBType
END
SELECT *
FROM stageTable map
WHERE id = 1
AND (
  (@HistoryMSBType = 'Utilization Other' AND map.ColumnID = 4)
  OR
  (@HistoryMSBType = 'Cost Other' AND map.ColumnID = 6)
  OR
  (isnull(@HistoryMSBType,'') NOT IN ('Utilization Other','Cost Other')
   AND map.ColumnName = @HistoryMSBType)
  )

You need the ISNULL to make it match the CASE-ELSE exactly, but it won't matter if it can never be null.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM