SAS日時値を、指定されたロケールの日時値に変換し、その値から月の名前、月の日および年を書き出します。
出力フィールドの幅を指定します。
options locale=en_US; data _null_; x=86400; put x nldatmdt.; run; options locale=en_US; data _null_; x=86400; put x dtdate.; run;
January 02, 1960 02JAN60