> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8a08bda2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Nothing 데이터 타입 문서

# Nothing

이 데이터 타입의 유일한 목적은 값이 필요하지 않은 경우를 나타내는 것입니다. 따라서 `Nothing` 타입의 값은 생성할 수 없습니다.

예를 들어, 리터럴 [NULL](/ko/reference/syntax#null)의 타입은 `Nullable(Nothing)`입니다. [Nullable](/ko/reference/data-types/nullable)에 대한 자세한 내용은 해당 문서를 참고하십시오.

`Nothing` 타입은 빈 배열을 나타내는 데에도 사용할 수 있습니다:

```sql theme={null}
SELECT toTypeName(array())
```

```text theme={null}
┌─toTypeName(array())─┐
│ Array(Nothing)      │
└─────────────────────┘
```
