I have a table with a column named call_date in the DATETIME format.
In this column I have the following date in this format yyyy-mm-dd.
What I want is to select the rows ordered by the month number in the column’s value String.
Is there such SQLite function that does that??
I already tried strftime('%m', call_date) but ditn’t work.
Thanks.
1 Answer