LAST_DAY

The LAST_DAY scalar function returns a date or timestamp that represents the last day of the month indicated by expression.

Read syntax diagramSkip visual syntax diagram
>>-LAST_DAY--(--expression--)----------------------------------><

expression
An expression that returns a value of one of the following built-in data types: a date, a timestamp, a character string, or a graphic string.

If expression is a character or graphic string, it must not be a CLOB or DBCLOB, and its value must be a valid string representation of a date or timestamp. For the valid formats of string representations of dates and timestamps, see String representations of datetime values.

The result of the function is a timestamp if expression is a timestamp. Otherwise, the result of the function is a date. If either argument can be null, the result can be null; if either argument is null, the result is the null value.

Example