I have a table built like so:
tab: ([]col1:();col2:())
`tab insert (`testsym; "testchararr")
I now want to select the row where col2 has the value "testchararr". I have tried like so:
select from tab where col2 = "test"
but this always returns 'length error.
How can I query based on the value of a char array? Thanks