I am trying to compare a value in my query with the returned values of a subquery.
The structure looks like the following:
SELECT * as node
FROM [nt:unstructured]WHERE node.[ATTR] in (SELECT otherNode.[ATTR] FROM … )
I get „expected: static operand“ error. Any suggestions on this?
PS: The que...