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

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » SQL Functions » Alphabetical list of functions

DATALENGTH function [System] Next Page

DATE function [Date and time]


Converts the expression into a date, and removes any hours, minutes, or seconds.

For information about controlling the interpretation of date formats, see date_order option [compatibility].

Syntax

DATE( expression )

Parameters

expression    The value to be converted to date format, typically a string.

Standards and compatibility
Example

The following statement returns the value 1999-01-02 as a date.

SELECT DATE( '1999-01-02 21:20:53' );

The following statement returns the create dates of all the objects listed in the SYSOBJECT system view:

SELECT DATE( creation_time ) FROM SYSOBJECT;