I have a table:
t3:([]a:2 3 4;b:`CA`AB`)
I have a query:
select from t3 where b in ?[a=2;`CA`AB;`AB]
Bong... it give me `length error.
But these works:
select from t3 where b in ?[a=2;`CA;`AB]
select from t3 where b in `CA`AB
Cannot think of where goes wrong? Please help... Thanks.