I am trying to get extract the month from a DATETIME field in SQLite. month(dateField) does not work as well as strftime(\'%m\', dateStart)>
DATETIME
month(dateField)
strftime(\'%m\', dateStart)>
Try using the following:
select strftime('%m', datetime(datefield, 'unixepoch')) as month from table