由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 如何在PROC SQL里面象SQL 一样设置index使join更快?
相关主题
SQL combine two tables into one table and add a new column (转载)每个ID出现一次,missing去掉,请问高手用SAS怎么做?
如何在用SAS给多个data step 和proc step 做循环语句呢?Top Ten Reasons to Use PROC SQL(zt)
sas data set 求助关于SAS Advance 9 的考试体会
SQL check likeness between two large tablesHelp! proc sql;cout not null value.
sort two same tables SQL but different results (转载)如何删除重复的OBS?
SQL copy a table into a new table and add a new column (转载)SAS question:Please give me your suggestions!
急需高人指点!!一个不小心 Adv考了个100
问个merge的问题[合集] way to do exclusive outer join by proc sql
相关话题的讨论汇总
话题: sql话题: proc话题: create话题: join话题: index
进入Statistics版参与讨论
1 (共1页)
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语法也不对
1 (共1页)
进入Statistics版参与讨论
相关主题
[合集] way to do exclusive outer join by proc sqlsort two same tables SQL but different results (转载)
Proc SQL 能不能直接读 非 SAS format 的数据,txt , csv 等SQL copy a table into a new table and add a new column (转载)
SAS question using PROC SQL 高手请进, 包子答谢急需高人指点!!
问个SAS的问题问个merge的问题
SQL combine two tables into one table and add a new column (转载)每个ID出现一次,missing去掉,请问高手用SAS怎么做?
如何在用SAS给多个data step 和proc step 做循环语句呢?Top Ten Reasons to Use PROC SQL(zt)
sas data set 求助关于SAS Advance 9 的考试体会
SQL check likeness between two large tablesHelp! proc sql;cout not null value.
相关话题的讨论汇总
话题: sql话题: proc话题: create话题: join话题: index