Functions and CALL Routines |
Returns the hour from a SAS time or datetime value.
-
time
-
is a numeric constant, variable, or expression
that specifies a SAS time value.
-
datetime
-
is a numeric constant, variable, or expression
that specifies a SAS datetime value.
The HOUR function returns a numeric value
that represents the hour from a SAS time or datetime value. Numeric values
can range from 0 through 23. HOUR always returns a positive number.
The following SAS statements produce these results:
SAS Statements |
Results |
now='1:30't;
h=hour(now);
put h;
|
1
|
Copyright © 2011 by SAS Institute Inc., Cary, NC, USA. All rights reserved.