【SAS NOTES】proc sql
1 proc sql; 2 select pay_month,count(distinct(serv_number)) from guanhui.buedetail_same group by pay_month; 3 quit;
在sas中直接写sql语句并用ods进行输出是一个做分析处理的好方法。
1 proc sql; 2 select pay_month,count(distinct(serv_number)) from guanhui.buedetail_same group by pay_month; 3 quit;
在sas中直接写sql语句并用ods进行输出是一个做分析处理的好方法。