I read items from my table and I have a value called publish_down. I now want to have the filtering setting, that only the items before the publish_down value are returned.
In function Read Data, I have inserted in the Where conditions:
it doesn't work because the sql statement looks like:
and I need it without '', means the output should be like:
In function Read Data, I have inserted in the Where conditions:
Article.publish_down/>=:now()
it doesn't work because the sql statement looks like:
WHERE `Article`.`publish_down` >= 'now()'
and I need it without '', means the output should be like:
WHERE `Article`.`publish_down` >= now()Thank you for help.