Hi,
I need to add the following condition in my query :
delete_from Table where Table.useDate + 1month < today
I tried the code below but it's not possible to use expression in where clause :
delete_from Table
where DateTimeUtil::addMonths(Table.useDate,1) < DateTimeUtil::getSystemDateTime;
Best Regard,
*This post is locked for comments
I have the same question (0)