Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In my load script I am loading from a qvd file and I have a column called RL.CALL_DATE_RECD which shows the date when a call was logged. At the end of my load script I have a where clause and I want to do is bring up all the cases where the RL.CALL_DATE_RECD = Todays Date.
I have tried WHERE DATE(RL.CALL_DATE_RECD = DATE now()), however none of my date is showing.
Would someone be able to help with this please?
Regards,
Jon Ditchfield
Hi
Assuming the field is a normal date or date/time field, then this should work:
WHERE Floor(RL.CALL_DATE_RECD) = Today(1)
HTH
Jonathan
Hi,
can you post the format of RL.CALL_DATE_RECD
Regards
ASHFAQ
Hi
Assuming the field is a normal date or date/time field, then this should work:
WHERE Floor(RL.CALL_DATE_RECD) = Today(1)
HTH
Jonathan
They are both in a number Format.
try like this
WHERE num(RL.CALL_DATE_RECD) = num(Today())
Regards
ASHFAQ