Need to get the date part from column Start_DateTime (varchar data type) which is having data like '06/04/19 10:44 AM CDT' , '06/10/19 11:56 AM EDT' and need to convert the time zone to CST time zone
I have a user defined function dbo.fn_UTCtoCST
that will convert the time zone but am trying to combine all this in a select query to get the desired result
SELECT
Start_DateTime
,Inspector
,Status
,Distance
,Location
from XYZ