> ## 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.

> Documentation describing the EXCEPT modifier which specifies the names of one or more columns to exclude from the result. All matching column names are omitted from the output.

# EXCEPT modifier

> Specifies the names of one or more columns to exclude from the result. All matching column names are omitted from the output.

<h2 id="syntax">
  Syntax
</h2>

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

<h2 id="examples">
  Examples
</h2>

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

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