Hi,
when I have DateItem or RelativeDateItem and set LESS_OR_EQUAL/LESS_THAN operator on them what is generated is:
how can I easily get rid of OR part of the where clause ie. I don't want NULLs to be shown as smaller than some date.
2.5.2011-04-12-EVAL
when I have DateItem or RelativeDateItem and set LESS_OR_EQUAL/LESS_THAN operator on them what is generated is:
Code:
SELECT COUNT(*) FROM supplyItem WHERE ((supplyItem.nextShipment <= TO_DATE('2011-04-15 00:00:00','YYYY-MM-DD HH24:MI:SS') OR supplyItem.nextShipment IS NULL))
2.5.2011-04-12-EVAL
Comment