Whilst using DB Browser for SQLite, how can I convert e.g.:
2017-06-20T23:12:58Z
to just the date (2017-06-20) without the characters "T" and "Z" and without the time?
If I use CAST(expression as date)
or CAST(expression as datetime)
I get the year (2017) only and not the date and month.