Skip to content
Advertisement

Convert time in date as 00:00:00

I have a date column in below varchar format. How to convert it to datetime format and replace the time as 00:00:00?

Expected result

Advertisement

Answer

Just cast to a date:

You don’t actually need the left(), so this works:

But I like the left() to be explicit about the conversion.

If you actually want the time component, cast back:

Or, if you want the value as a string:

Note: You shouldn’t be storing date/time values as strings. You should be using the built-in types.

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