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