Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - Database Management and Reference » UltraLite SQL Function Reference » Alphabetical list of functions

DATEFORMAT function [Date and time] Next Page

DATENAME function [Date and time]


Returns the name of the specified part (such as the month June) of a datetime value, as a character string.

Syntax

DATENAME( date-part, date-expression )

Parameters

date-part    The date part to be named. For a complete listing of allowed date parts, see Date parts.

date-expression    The date for which the date part name is to be returned. The date must contain the requested date-part.

Remarks

The DATENAME function returns a string, even if the result is numeric, such as 23 for the day.

Standards and compatibility
Example

The following statement returns the value May.

SELECT DATENAME( month, '1987/05/02' );