# Table.drop
URL: https://lsd.tools/docs/api-table-drop
Updated: 2026-07-17

## Parameters

| name | type | default | description |
|---|---|---|---|
| `*names` | `str` | — | column names to remove |

## Example

```python
t.drop("scratch", "tmp")
```

## Notes

Names that are not present are simply ignored — no error. Remaining columns keep their
original order. Every call returns a **new** `Table`.

## See also

**API:** [select](/docs/api-table-select) · [rename](/docs/api-table-rename) · [columns](/docs/api-table-columns)

**Guides:** [Tables & data flow](/docs/tools-tables)
