I am trying to convert a string column of existing values from 'MM/DD/YY' to 'YYYY/MM/DD'.
Example Data:
Table: backlog_backlogData
[LoadDate]
06/29/18
06/29/18
06/28/18
07/24/18
07/24/18
I have tried this (in SQLite Manager FireFox extention):
UPDATE backlog_backlogData SET LoadDate = substr(LoadDate, 7, 2)||”-“||substr(LoadDate, 1,2)||”-“||substr(LoadDate, 4,2)
Unfortunately, the column is updated with only the first substr (results: 18). It seems like SQLite does not like concatenates ||?
I've searched for an answer and have not found anything that works.
Thanks for you time.