首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 数据库开发 >

SAS有关问题有人知道么

2012-02-11 
SAS问题有人知道么以前没有学过SAS,拜托懂的人教下,比如我的SQL语言:select city,sum(employee.salary),su

SAS问题有人知道么
以前没有学过SAS,拜托懂的人教下,比如我的SQL语言:
select city,sum(employee.salary),sum(space),count(city),count(employee.salary),max(employee.salary)
from store inner join employee
on
store.store_id=employee.store_id
group by city;
这个查询语句用SAS表现出来是怎么写的?我这么写对不对:
proc sql;
  create table kids3 as
  select city,sum(employee.salary),sum(space),count(city),count(employee.salary),max(employee.salary)
  from store inner join employee
  on
  store.store_id=employee.store_id
  group by city;
quit;
proc print data=kids3 noobs;
run;

对不对…… 这个是我在网上找的……然后自己乱加上去的……

[解决办法]
我是来帮忙顶顶的
[解决办法]
找个SAS编程看看
[解决办法]
建议你先merge俩datasets, then aggregate by group.

热点排行