January 13, 200421 yr I have the following in my WHERE clause: (release_date > date() - 3) and it results in the following error: Error: Incompatible datatypes in expression : > (State:37000, Native Code: F54) Is there any way to do Date Math in an ODBC query of FM data?
February 25, 200421 yr give this a shoot: SELECT Table.Release_Date WHERE Table.Release_Date > (now()-3) is there a scripting step involved prior or after the SQL filter? Take care!
February 25, 200421 yr Author Actually, I found two things that got it to work. One, I thought I had the checkbox off to convert Number, Date and Time to text. Well...I didn't. (OOPS!) Second, I used the today() function as in: (release_date > today() - 30)
Create an account or sign in to comment