9951 explained code solutions for 126 technologies


clickhouseCreate table with UUID column


CREATE TABLE utbl ( id UUID, date Date, col String ) ENGINE = MergeTree ORDER BY datectrl + c
utbl

name of the table to create

id

column name

UUID

set UUID type for id column

date Date, col String

other columns declaration

ENGINE = MergeTree ORDER BY date

engine and sort order