I'm trying to update field (Type of Date) from a string field.
The string field example : 20/10/2015
I am new in sql. I tried this query:
UPDATE [dbo].[EmployeeWithCompCar]
SET [EMER_AttachEndDate] = cast([EMER_info1] as date)
I get this message:
Conversion failed when converting date and/or time from character string.
Can you help me fix it?
Thank's!