首页 > 代码库 > 转载 sas ifc ifn区别
转载 sas ifc ifn区别
http://blog.sina.com.cn/s/blog_5d4a03250101hvst.html
转载程序:data ex;
a="hello";
output;
a="hi";
output;
run;
proc sql;
create table ex1 as
select a,ifn(a="hello",1,0) as a1,ifc(a="hello",‘yes‘,‘no‘) as a2
from ex;
quit;
结果:
a a1 a2
hello 1 yes
hi 0 no
ifn(条件表达式,正确时输出的数值型赋值,错误时输出的数值型赋值,缺失时输出的数值型赋值)
ifc(条件表达式,正确时输出的字符型赋值,错误时输出的字符型赋值,缺失时输出的字符型赋值)
转载 sas ifc ifn区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。