When I want to "translate" a Ndate figure into dd/MM/yyyy I use this
convert(varchar(16),dateadd(day, d.Field_Date, '01-01-1970'),103)
But I have a field that's VARCHAR(512) with that very format, and I'd like to convert that string to a date format.
Could you (yes, you :-)) tell me how to do it in SQL Server language?
Thank you.