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

> 결과에서 제외할 하나 이상의 컬럼 이름을 지정하는 EXCEPT 수정자에 대한 문서입니다. 일치하는 컬럼 이름은 모두 출력에서 제외됩니다.

# EXCEPT 수정자

> 결과에서 제외할 하나 이상의 컬럼 이름을 지정합니다. 일치하는 컬럼 이름은 모두 출력에서 제외됩니다.

<div id="syntax">
  ## 구문
</div>

```sql theme={null}
SELECT <expr> EXCEPT ( col_name1 [, col_name2, col_name3, ...] ) FROM [db.]table_name
```

<div id="examples">
  ## 예시
</div>

```sql title="Query" theme={null}
SELECT * EXCEPT (i) from columns_transformers;
```

```response title="Response" theme={null}
┌──j─┬───k─┐
│ 10 │ 324 │
│  8 │  23 │
└────┴─────┘
```
