Home › Forums › kdb+ › Store array of bytes in a table column › Reply To: Store array of bytes in a table column
-
q does not have a type for lists of lists so you use the generic untyped list ()
q)tab:([] bytesCol:())
q)`tab insert enlist (0x0021;0x0002232)
0 1
q)tab
bytesCol
----------
0x0021
0x00002232
q)meta tab
c | t f a
--------| -----
bytesCol| X
q)type tab`bytesCol
0h