I'm developing on the OCEP platform which uses CQL.
I'm looking for a way to select values from one table which do not exist in another. CQL does not allow the use of sub queries so I can't simply use "not in (query)".
Looking for a replacement for this:
select *
from tb1
where tb1.id not in (select id from tb2)
Table1: 1,3,4,5,6. Table2: 1,4,7,9.
I'm looking for a way to get a table with (3,5,6) as values.
Any ideas would be welcome :)