Date-time formats
- Last Updated: January 26, 2026
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Date-time formats
The TO_CHAR function supports the
date-format and the time-format strings to control the output of
date and time values. The format strings consist of keywords that
SQL interprets and replaces with formatted values.
Syntax
|
Parameters
- expression
-
Converts to character form. It must evaluate to a value of the date or time data type to use the format_string.
- format_string
-
Specifies the format of the output. SQL ignores the format string if the
expressionargument does not evaluate to a date or time.Supply the format strings, enclosed in single quotation marks, as the second argument to the function. The format strings are case sensitive. For instance, SQL replaces
DAYwith all uppercase letters, but follows the case ofDay. For more information, see Format_string specifier.
Example
The
following example illustrates the difference between how a date
value displays with and without the TO_CHAR function:
|