duchovnick
Programmer
Hi !
i' d like to limit the scope of my select query between 2 dates: maxdate and mindate. But i'm interseted only at the month part of the date. somethink like:
mm is to indicate the month part of the date expression.
Could anyone please help me with that ?
Thanks !
i' d like to limit the scope of my select query between 2 dates: maxdate and mindate. But i'm interseted only at the month part of the date. somethink like:
Code:
select *
from
mytable
where
mydate(mm) > (mm,01/01/2006) and
mydate(mm) < (mm,01/01/2007)
Could anyone please help me with that ?
Thanks !