I have a field with type= date
in MySQL DB.
It store dates in YY-m-d
format.
How can I write a query which will get the rows where day is equal to some value, for example 1
?
I need to get only first days of months (2009-11-01, 2009-12-01, 2010-01-01...
)
Thanks