tags:

views:

1196

answers:

3

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).

Any ideas?

+1  A: 

I don't understand, the response is in your question :

select strftime('%m', dateField) as Month ...
MarmouCorp
A: 

SELECT strftime('%m', datefield) FROM table ... works, if you are searching the month name, text month names does not seems to be supported by the core distribution of SQLite

Jhonny D. Cano -Leftware-
A: 

I'm guessing you want to get the month as a string. Not the most friendly looking but you probably see the point. Just replace date('now') with your variable.

select case strftime('%m', date('now')) when '01' then 'January' when '02' then 'Febuary' when '03' then 'March' when '04' then 'April' when '05' then 'May' when '06' then 'June' when '07' then 'July' when '08' then 'August' when '09' then 'September' when '10' then 'October' when '11' then 'November' when '12' then 'December' else '' end
as month 
Mickey Mazarick