DATE_FORMAT

Syntax
DATE_FORMAT([format,] date)
Parameters
format
Date format (optional).  If no format is specified, the
yyyy-MM-dd'T'HH:mm:ss.SSSZ format is used.  If null, the function returns
null.
date
Date expression. If null, the function returns null.
DescriptionReturns a string representation of a date, in the provided format.Example
```esql
FROM employees
| KEEP first_name, last_name, hire_date
| EVAL hired = DATE_FORMAT("YYYY-MM-dd", hire_date)
```
