I am trying to run a MySQL query but I am having trouble with DateDiff.
I have 2 date fields payment and expiry.
I want to select the Difference in dates between expiry and payment which are less than or equal to thirty five days.
How can I use datediff(expiry,payment)
and then include <= 35
to get what I want.
Thanks.