How do you do a case insensitive like in a select/exec statement
Hi,
A simple solution is to use the upper/lower functions on the columns you are selecting from:
q)tab:(n:A
B`C;v:1 2 3)
q)tab
n v
A 1
B 2
C 3
q)select from tab where lower[n]=`a
n v
A 1
Regards,
Thomas Smyth
Developer - AquaQ Analytics