A function that evaluates days. For specific details, see this function's usage.
DAYS( [ datetime-expression, ] datetime-expression )
DAYS( datetime-expression, integer-expression )
datetime-expression A date and time.
integer-expression The number of days to be added to the datetime-expression. If the integer-expression is negative, the appropriate number of days is subtracted from the timestamp. If you supply an integer expression, the datetime-expression must be explicitly cast as a date or timestamp.
For information about casting data types, see CAST function [Data type conversion].
The behavior of this function can vary depending on what you supply:
0000-02-29 is not meant to imply an actual date; it is the date used by the date algorithm.
This function ignores hours, minutes, and seconds.
SQL/2003 Vendor extension.
The following statement returns the integer 729889.
SELECT DAYS( '1998-07-13 06:07:12' ); |
The following statements return the integer value -366, indicating that the second date is 366 days prior to the first. It is recommended that you use the second example (DATEDIFF).
SELECT DAYS( '1998-07-13 06:07:12', '1997-07-12 10:07:12' ); |
SELECT DATEDIFF( day, '1998-07-13 06:07:12', '1997-07-12 10:07:12' ); |
The following statements return the timestamp 1999-07-14 00:00:00.000. It is recommended that you use the second example (DATEADD).
SELECT DAYS( CAST('1998-07-13' AS DATE ), 366 ); |
SELECT DATEADD( day, 366, '1998-07-13' ); |
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |