k**g 发帖数: 1558 | 1 归根到底,就是怎么样使proc sql的join 更快?我知道在SQL server里面可以对一个
数据表进行index,这样join就很快。SAS里面能做到吗?谢谢! | p********a 发帖数: 5352 | 2 proc sql;
create index xxx | k**g 发帖数: 1558 | 3 Thanks! If I have two existing tables, is this correct?
Proc SQL;
Create index Table1 date;
Create index Table2 date;
Create Table Table3 As
Select a.*, b.*
From Table1 a
Join Table2 b
On a.date=b.date; | p********a 发帖数: 5352 | 4 你这个连语法都不对吧?写出来前肯定没GOOGLE过。
请GOOGLE PROC SQL CREATE INDEX
后面那个JOIN语法也不对 |
|