Skip to content
Advertisement

Conversion Failed in a CASE expression

I have a column that is of varchar type, it contains dates and ‘#’:

I am trying to convert the dates to the standard date format (YYYY-MM-DD) and leave the ‘#’ as it is whenever it occurs.

Here is my code:

The outcome column is also of varchar(10) type (same as the original column).

I expected to get # whenever the cell is # and the converted Date whenever it is not # but I get this error instead:

Conversion failed when converting date and/or time from character string.

Advertisement

Answer

Because of data type precedence, the compiler is trying to convert # to a date.

So you need to convert the date value back to a varchar instead, in the style you want. A shorter syntax is to use TRY_CONVERT and ISNULL

db<>fiddle

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