I need to convert a nvarchar value to datetime in T-SQL. The value is in ddmmyyyy format, e.g. 23072009
nvarchar
datetime
ddmmyyyy
23072009
I need t
Format 103 expects dd/mm/yyyy. (see here)
dd/mm/yyyy
I don't think you'll be able to do it using convert, as non of the convert options have that format.