I am trying to compare JCR node's string
properties with a double
value in JCR-SQL2. But it is comparing the values as string
s.
For example:
SELECT * FROM [nodex] as x where x.propertyY <= 20.50
Here propertyY
is the string
in the definition.
I tried this with CASE but it still does not work. Can I compare it as double
without changing the property definition?