I am using SQLite. In my database, I have a integer column value like 20050819. I would like to convert this as date column as like 2005-08-19.
I can achieve my requirement when using the function CONVERT(columnName
, DATETIME) in MySQL server. But I need the same result in SQLite.
Is this possible in SQLite query?