I am new to jbase and stuck in one query. I want to extract last 14 days data using jbase. I have written the following query :
Select filename WITH DATE > '14-MAY-2013'
I hardcoded '14-MAY-2013'
, becouse I dont know how to get currentdate i used CURRENTDATE also but hard luck .
Try the following Select command
To get the current date you can use the global jbase variable TODAY.
SELECT filename WITH DATE GE TODAY
.