I tried to use the below statement to change DateTimes into SQLite desired DateTime format YYYY-MM-DD hh:mm
so as to perform calculations. But the statement gives me an "incomplete input" message. Sample input-output is below:
e.g. 03/05/2020 17:34 => 2020-05-03 17:34
> UPDATE Combined_Bike_Ride SET started_at = substr(started_at,7,4) ||"-"|| substr(started_at(4,2)||"-"||substr(started_at(1,2)||" "||substr(started_at(12,2)||":"||substr(started_at(15,2)
What do you think is missing in the statement?