DVD Date Difference Calculation
New Calculation
(sysdates - entered_dt)
I get an error . Invalid expression
I need to find the days difference.
TIMESTAMPDIFF
TIMESTAMPDIFF(SQL_TSI_DAY, tstmp1, tstmp2)
Another way will be to use CAST AS DATE and the CURRENT_DATE column given by DVD as below:
This will give you date differences.
hope this helps...