ClickHouse使用之六 ——指定排序id

CREATE TABLE web3.tx_hashes
(

    `id` UInt64,

    `created_at` Nullable(DateTime),

    `updated_at` Nullable(DateTime),

    `deleted_at` Nullable(DateTime),

    `game_name` Nullable(String),

    `chain_id` Nullable(Int16),

    `tx_hash` Nullable(String),

    `block_number` Nullable(Int64),

    `sender` Nullable(String),

    `Address` Nullable(String),

    `tx_type` Nullable(String)
)
ENGINE = MergeTree
ORDER BY id
SETTINGS index_granularity = 8192;

order by id指定通过id排序来创建表格

posted @ 2023-09-13 20:17  若-飞  阅读(90)  评论(0编辑  收藏  举报