I saved the data in a SQLite database. I saved the date in the database as a DATETIME data type.
I want to extract only the data of a specific month from the SQLite database.
I am trying to execute the query below to retrieve data, but it was not useful. This gives me data, but it was not a specific month.
SELECT coulumn_name FROM table_name WHERE column_name Between "MM-DD-YYYY" AND "MM-DD-YYYY"
source
share