i have a table with a column which is a char type. The values are all in the format IS8601DT format '2014-02-18T16:02:00.000'. Is there a function or other simple way to convert this in any num date format?

Thanks in advance.

有帮助吗?

解决方案

You need to use the anydtdtm32. informat with input function as shown below:

data test;
mydate_char='2014-02-18T16:02:00.000';
mydate_num=input(mydate_char, anydtdtm32.);
format mydate_num datetime22.;
run;
/*mydate_num:18FEB2014:16:02:00*/
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top