博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【sas sql proc】case end
阅读量:5249 次
发布时间:2019-06-14

本文共 1245 字,大约阅读时间需要 4 分钟。

在sql中增加case可以增加数据处理的灵活性,注意结尾的end

1 proc sql outobs=10; 2     title 'this is an example of sql and case'; 3     select wangnei,date, 4             case 5             when 200901<=date<=200903 then 'first' 6             when 200904<=date<=200906 then 'second' 7             else 'else' 8             end as season 9     from mysas.mmsone10     where date<=200912;11 quit;

 ---------sas 9.3 sql procedure user's guide page 35 or (49/418)

 在where字句后还可以加上许多operator

any all between-and contains exists in isnull is missing like =* 

in

1 proc contents data=mysas.ifthen;  2 run; 3 proc print data=mysas.ifthen (firstobs=1 obs=10); 4 run; 5 proc sql outobs=10; 6     title 'this is a instance of in'; 7     select * from mysas.ifthen 8     where date in(200901,200902) 9     order by shen descending;10 quit;

between and

1 proc sql outobs=10;2     title 'this is a try of between and';3     select * from mysas.ifthen4     where date between 200905 and 2010015     order by shen dscending;6 quit;

like

1 proc sql outobs=50;2     select * from &dataset3     where  subporduct_code like 'z%' or subporduct_code like 'XX____';4 quit;

 在where筛选条件中对于排序文本也可以用大于小于的逻辑来判断:eqt gtt ltt get let net.

 

 

 

 

 

转载于:https://www.cnblogs.com/colipso/archive/2013/02/18/2916295.html

你可能感兴趣的文章
爬虫-通用代码框架
查看>>
2019春 软件工程实践 助教总结
查看>>
YUV 格式的视频呈现
查看>>
Android弹出框的学习
查看>>
现代程序设计 作业1
查看>>
在android开发中添加外挂字体
查看>>
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
多线程实现资源共享的问题学习与总结
查看>>
Learning-Python【26】:反射及内置方法
查看>>
torch教程[1]用numpy实现三层全连接神经网络
查看>>
java实现哈弗曼树
查看>>
转:Web 测试的创作与调试技术
查看>>
python学习笔记3-列表
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
线程androidAndroid ConditionVariable的用法
查看>>
stap-prep 需要安装那些内核符号
查看>>
转载:ASP.NET Core 在 JSON 文件中配置依赖注入
查看>>
socket初识
查看>>
磁盘测试工具
查看>>