Hi All,
I've tried the following to format my date in 'dd/mm/yyyy' instead of 'dd/mm/yyy hh:mm:ss' when importing data from csv to DataSet.
CONVERT(VARCHAR(10), [dateColumnName], 103) AS [DD/MM/YYYY]
and
CONVERT(DATETIME, [dateColumnName], 101) AS [DD/MM/YYYY]
Both give me the error: Undefined function 'CONVERT' in expression
What would be the correct method for this?