Skip to content
Advertisement

Case Statement with different data type

I am trying to return SLA days for particular conditions. However for a specific condition I want it to return a different data type. Current code is as follows:

I want it to return for where case_status = ‘Cancelled’ return ‘N/A’. I know i cant do it like this but i will include the code so it is easier to understand:

How do i do this?

Advertisement

Answer

A case statement can only return one data type. So convert the numbers to strings:

Alternatively, you could return NULL when the two conditions do not match.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement