DROP

Syntax
DROP columns
Parameters
columns
A comma-separated list of columns to remove. Supports wildcards.
DescriptionThe DROP processing command removes one or more columns.Examples
```esql
FROM employees
| DROP height
```

Rather than specify each column by name, you can use wildcards to drop all
columns with a name that matches a pattern:
```esql
FROM employees
| DROP height*
```
