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 [database].
DATE( expression )
DATE
expression The value to be converted to date format, typically a string.
SQL/2003 Vendor extension.
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; |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |