9951 explained code solutions for 126 technologies


clickhouseHow to create Tuple column


CREATE TABLE tbl4 ( `ts` DateTime, `person` Tuple(name String, code UInt32) ) ENGINE = MergeTree ORDER BY tsctrl + c
tbl4

name of the table with Tuple column

person

name of the Tuple column

Tuple(

declares Tuple

name String

first variable in a Tuple named name and of String type

code UInt32

second variable in a Tuple named code and on UInt32 type