Hi!
I want to retrieve all posts older than 1h using datediff but I get the following error:
Phalcon\Mvc\Model\Exception: Column 'HOUR' doesn't belong to any of the selected models...
My code:
$h = 1;
Posts::find(['DATEDIFF(HOUR, created_at, NOW()) > :h:',
'bind' => ['h' => $h]
]);