I am filtering a table so that the only referenced data is with a date range.
The SQL filter applied to the TIBCTable.Filter property of
Code: Select all
TRANSDATE BETWEEN '2007/5/1' AND "2007/5/31'
whereas
Code: Select all
(TRANSDATE >= '2007/5/1') AND ((TRANSDATE >= '2007/5/31')
The former statement using the BETWEEN keyword is more readable.
Can you confirm my findings and advise as to the use of the BETWEEN keyword. Would it be possible to have this fixed in an upcoming version please?
regards and thanks
SeaCay