跳到主要内容

system.tables_with_history

提供所有表的元数据信息,包括历史表。它包含表属性、创建时间、行数、数据大小等详细信息。

另请参阅: SHOW DROP TABLES

示例:
SELECT * FROM system.tables_with_history LIMIT 3;

┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ catalog │ database │ name │ table_id │ total_columns │ engine │ engine_full │ cluster_by │ is_transient │ is_attach │ created_on │ dropped_on │ updated_on │ num_rows │ data_size │ data_compressed_size │ index_size │ number_of_segments │ number_of_blocks │ owner │ comment │ table_type │
├─────────┼──────────┼────────────────────┼─────────────────────┼───────────────┼───────────────────────┼───────────────────────┼────────────┼──────────────┼───────────┼────────────────────────────┼─────────────────────┼────────────────────────────┼──────────────────┼──────────────────┼──────────────────────┼──────────────────┼────────────────────┼──────────────────┼──────────────────┼─────────┼────────────┤
default │ system │ metrics │ 46116860184273879195 │ SystemMetrics │ SystemMetrics │ │ │ │ 2024-11-20 21:04:12.950815NULL2024-11-20 21:04:12.950815NULLNULLNULLNULLNULLNULLNULL │ │ BASE TABLE
default │ system │ clustering_history │ 46116860184273879256 │ SystemLogTable │ SystemLogTable │ │ │ │ 2024-11-20 21:04:12.952439NULL2024-11-20 21:04:12.952439NULLNULLNULLNULLNULLNULLNULL │ │ BASE TABLE
default │ system │ queries_profiling │ 46116860184273879417 │ QueriesProfilingTable │ QueriesProfilingTable │ │ │ │ 2024-11-20 21:04:12.952588NULL2024-11-20 21:04:12.952588NULLNULLNULLNULLNULLNULLNULL │ │ BASE TABLE
└─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

要显示 system.tables_with_history 的架构,请使用 DESCRIBE system.tables_with_history:

DESCRIBE system.tables_with_history;

┌─────────────────────────────────────────────────────────────────────────────────────────┐
│ Field │ TypeNullDefault │ Extra │
├──────────────────────┼─────────────────┼────────┼──────────────────────────────┼────────┤
│ catalog │ VARCHARNO'' │ │
databaseVARCHARNO'' │ │
│ name │ VARCHARNO'' │ │
│ table_id │ BIGINT UNSIGNEDNO0 │ │
│ total_columns │ BIGINT UNSIGNEDNO0 │ │
engineVARCHARNO'' │ │
│ engine_full │ VARCHARNO'' │ │
│ cluster_by │ VARCHARNO'' │ │
│ is_transient │ VARCHARNO'' │ │
│ is_attach │ VARCHARNO'' │ │
│ created_on │ TIMESTAMPNO'1970-01-01 00:00:00.000000' │ │
│ dropped_on │ TIMESTAMP │ YES │ NULL │ │
│ updated_on │ TIMESTAMPNO'1970-01-01 00:00:00.000000' │ │
│ num_rows │ BIGINT UNSIGNED │ YES │ NULL │ │
│ data_size │ BIGINT UNSIGNED │ YES │ NULL │ │
│ data_compressed_size │ BIGINT UNSIGNED │ YES │ NULL │ │
│ index_size │ BIGINT UNSIGNED │ YES │ NULL │ │
│ number_of_segments │ BIGINT UNSIGNED │ YES │ NULL │ │
│ number_of_blocks │ BIGINT UNSIGNED │ YES │ NULL │ │
│ owner │ VARCHAR │ YES │ NULL │ │
commentVARCHARNO'' │ │
│ table_type │ VARCHARNO'' │ │
└─────────────────────────────────────────────────────────────────────────────────────────┘