0

I am locked with how to fill the following code

$criteria->addSearchCondition('esdate', 'now()-interval \'1 day\'', false, 'AND', '>');

if I use 'now()' alone it could work but as soon as I add the interval function I cannot get it done. I guess the escaped quote may not be accepted, but was unable to find any correct syntax.

Any help more than appreciated...

CedSha
  • 149
  • 2
  • 12

1 Answers1

1
$criteria->addCondition( "esdate > NOW() - INTERVAL 1 DAY" );
Boris Belenski
  • 1,387
  • 13
  • 20
  • great ! But still need the quote... $criteria->addCondition( "esdate > now() - interval '1 day'" ); – CedSha Jun 15 '12 at 14:42