2021-11-14 14:32:08 +08:00

19 lines
402 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "ClickHouse 表引擎之 Null"
date: 2020-10-08T19:11:00+08:00
lastmod: 2020-10-08T19:11:00+08:00
tags: []
categories: ["clickhouse"]
---
# Null 表引擎简介
- 类似 /dev/null忽略写入的任何数据查询时返回空表
- 如果物化视图不需要保留源表数据,则可设置源表为 Null 引擎
# 创建 Null 表引擎
- 声明
```sql
ENGINE = Null
```