| 123456789101112131415161718192021222324252627 | [discrete][[esql-rename]]=== `RENAME`Use `RENAME` to rename a column using the following syntax:[source,esql]----RENAME <old-name> AS <new-name>----For example:[source,esql]----include::{esql-specs}/docs.csv-spec[tag=rename]----If a column with the new name already exists, it will be replaced by the newcolumn.Multiple columns can be renamed with a single `RENAME` command:[source,esql]----include::{esql-specs}/docs.csv-spec[tag=renameMultipleColumns]----
 |