having作用类似于where区别在于where在group by之前执行;having作用于group by。
1 proc sql; 2 select sum(cmcc_fee) as sumfee,product_name,port 3 from &groupset 4 group by product_name,port 5 having count(port)>2; 6 quit;
having作用类似于where区别在于where在group by之前执行;having作用于group by。
1 proc sql; 2 select sum(cmcc_fee) as sumfee,product_name,port 3 from &groupset 4 group by product_name,port 5 having count(port)>2; 6 quit;
where 和 having 的区别
1.类型:“Where”是一个约束声明,在查询数据库的结果返回之前对数据库中
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M