Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a magento module, and I have a timestamp field which I need to compare to current_timestamp, addFieldToFilter('field_name', array('gt' => 'current_timestamp')) will simply generate the following : where field_name > 'current_timestamp' which will be interpreted as a string rather than a function.

Did anyone run into this problem ? I'll be glade if you share your tips and/or solutions.

Best Regards


Edit :
I ended up doing it this way

->addFieldToFilter('field_name', array('gt' => date('Y-m-d H:i:s', time())))
share|improve this question

1 Answer

If you are familiar with Zend_Db_Select you can expose Zend_Db from the collection selection.

All you have to do is $collection->getSelect() and you are free to manipulate the query as you see fit.

If you echo this out, you get the actual query that would be sent to MySQL.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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