Replies: 1 comment 1 reply
-
Well i simplified the calculation moving the calculation to the filter value.
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hey there,
i have a query performed on TS side.
My filters are in 3 parts. First 2 are filter on a value and on 'is null' condition
But for the last filter i would like to create a formula that looks like something like this when requested to Oracle DB
"SCHEDULED_DATE + (5/1440) < SYSDATE"
Generated query looks like this one
"WHERE (((:p1 < :p2) AND ((T0.STATUS = :p3) AND T0.EXECUTED_DATE IS NULL)))"
while i would have preferred
"WHERE (((:p1 + (5/1440) < :p2) AND ((T0.STATUS = :p3) AND T0.EXECUTED_DATE IS NULL)))"
Anyone else did encounter that kind of need ?
Looks like it's impossible as it requires a Field name first then a valid operation then a value.
My first parameter is a calculation on a column, not a simple column itself.
Thanks for any help
Beta Was this translation helpful? Give feedback.
All reactions