How do I select specific records if i only put one symbol in filter?
Eg:
tab:([]a:1 2 3;b:(`abc`bde;`efg`rte;`dqw`gds))
1 (`abc`bde)
2 (`efg`rte)
3 (`dqw`gds)
I want to filter on abc
so only return:
1 (`abc`bde)
select from tab where b=`abc
will not work.