0
I have the table(tbl) with the following field
id, date
date is a varchar field, which has dates in the following format: "dd/mm/yyyy"
I want to make a SELECT, date shown in ANSI format "yyyy-mm-dd".
I thought the following official instruction, but not:
SELECT CONVERT(datetime, date, 103) FROM tbl