elasticsearch/docs/reference/esql/processing-commands/drop.asciidoc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
342 B
Plaintext
Raw Normal View History

[[esql-drop]]
=== `DROP`
2023-06-07 14:35:01 +08:00
Use `DROP` to remove columns:
[source,esql]
----
include::{esql-specs}/docs.csv-spec[tag=dropheight]
----
Rather than specify each column by name, you can use wildcards to drop all
columns with a name that matches a pattern:
[source,esql]
----
include::{esql-specs}/docs.csv-spec[tag=dropheightwithwildcard]
----