Be casefull with these where clauses, as you are breaking any possibility for the database to use an index... not using indexes can cause serious performance issues over time
You will be better of using something like:
Where Yourdate between dateserial(year(now()), month(now()), 1) and...