I saved my data In SQLite Database. I saved my date in database as DATETIME datatype.
I want to retrive only the data of specific month from my SQLite databse.
Use a function retrieve only the month of the date SELECT strftime('%m', date(column_name)) FROM table;
SELECT strftime('%m', date(column_name)) FROM table;
I believe this is the function, but I'm not so sure.