We have KDB query which sources data from different columns and one of the columns has Character array type ('C'), i.e. it contains text.
What we want is enlist
it when we query for data like this
select enlist column_with_character_arr from table
i.e. to have ("value1") inside a list so we will be able to add one more element to this list later on, say, ("value1", "value2"). How to do it? Because currently when we try to enlist
or add ,()
it fails with length error.