vote up 0 vote down star

I'm trying to build a query with propel Criteria to get all Foo's in a given month.

For example I want all Foo's in March. In regular SQL I would build a query like this:

SELECT * FROM FooPeer WHERE MONTH(startDate) = 3

Any Idea how I can implement the "MySQL Month-function within a Criteria Object" ?

$c = new Criteria();
$c -> add(FooEvent::START_DATE, 3, Criteria::EQUAL); //where do I have to put the Month function ?
return self::doSelect($c);
flag

2 Answers

vote up 0 vote down

Alright, a Custom Criteria did the job!

$month = 3; //march
$criteria->add(FooPeer::START_DATE, 'MONTH('.FooPeer::START_DATE.')='. $month, Criteria::CUSTOM);
link|flag
vote up 0 vote down

This question was partly answered there: How to use MySQL functions in Propel

Using Criteria::CUSTOM or writing custom SQL seem to be the only solutions.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.