【sas sql proc】inner join or outer join
摘要:
1 proc sql; 2 title 'table 1+11'; 3 select * from mysas.ifthen1,mysas.ifthen11; 4 quit; 5 6 proc sql; 7 title 'table 1'; 8 select * from mysas.ifthen1; 9 10 title 'table11';11 select * from mysas.ifthen11;12 quit;第一段显示的是两表联合的笛卡尔积结果。第二段仅是分别显示两表。 1 proc sql; 2 title '... 阅读全文
posted @ 2013-03-04 09:54 colipso 阅读(2538) 评论(0) 推荐(0) 编辑