【SAS】将时间格式转换为字符串格式

喜欢可以关注【小猪课堂】公众号了解更多编程小技巧
SAS将时间格式转换为字符串格式

使用put(datapart(apply_data).yymmdd10.);
data a;
set risk.apply_20190813;
apply_data2=put(datepart(apply_date),yymmdd10.);
*时间格式转换成字符串格式;
keep apply_no channel apply_date apply_data2;
where p_key=31
and 
channel in ('MZJK中原消金',
'MZJK马上消金',
'MZJK凯美趣头条1908',
'MZJK小花钱包1908',
'MZJK国美易卡');
run;


proc sql;
create table ngj.a as select channel,apply_data2,count(*) from work.a
where 
apply_data2 >='2019-08-11'
group by channel,apply_data2;
quit; 

喜欢可以关注【小猪课堂】公众号了解更多编程小技巧

你可能感兴趣的:(SAS数据分析)