Hi,
i have a table with column names that contain function parameters (so the names contain special characters : and .)
q)table:flip(a,
$“b:1.4”)!(1 2 3;4 5 6)
how can I now select these columns?
of course “select b:1.4 from table” does not work as intended, so i thought i should use the functional form:
q)?[`table;();0b;(enlist`col)!enlist`$“b:1.4”]
but this one also doesn’t work.
Are special characters in column names simply not supported or are there any other methods of using them?
Markus