I try to make this query with doctrine 1.2:
$q->where('date > ?',
new Doctrine_Expression('DATE_SUB(CURDATE() , INTERVAL 7 DAY)'));
but it's not return me any results.
any idea ?
thanks
|
I try to make this query with doctrine 1.2:
but it's not return me any results. any idea ? thanks
| |||
|
feedback
|
|
The reason why it doesn't return anything is because Doctrine escapes the expression - the generated SQL is
rather than
You could force it to work like this:
This isn't the safest option however, as the input doesn't get escaped and isn't good practice... | |||
feedback
|
datea DATETIME column? Do you have data that matches the criteria? – Pekka Oct 6 '11 at 8:59