Can SAS store and use datetimes that contain fractions of less than 1/10th of a second?
eg:
data _null_;
input @1 from_dt:datetime22.;
put from_dt= ;
cards;
24Sep2009:11:21:19.856
;
run;
|
feedback
|
|
A datetime variable is a numeric variable just like any other numeric variables. We just understand its value as the seconds since 01jan1960T00:00:00. Hope this helps.
| |||
|
feedback
|
|
Your sample code is rounding on the printed output. Adding a format (eg best32.) on the put statement shows that there is better precision being held...
| |||
|
feedback
|
|
As Rog pointed out, you can read in and store datetimes with more precision than .1 sec. Just use the datetime22.3 or a similar format and informat instead of datetime22. | |||
|
feedback
|