I have a string column in my table and values are in "05/31/2016 10:03:24.175000000" this format. Need to convert this string value into DateTime
through SQLite.
I am using below query to convert string to date time. It's working fine for the "MM/dd/yyyy HH:MM:SS" this type of format and returns the valid result
Select datetime("05/31/2016 10:03:24") from table
While executing the below query it returns the empty as result. How to convert the below string to date time in SQLite; is this possible?
Select datetime("05/31/2016 10:03:24.175000000") from table