简体   繁体   English

SAS Proc SQL连接

[英]SAS Proc SQL join

I need help underdstanding a proc sql code in SAS as below: what kind of join are they doing here? 我需要了解SAS中的proc sql代码的帮助,如下所示:他们在这里进行哪种联接?

PROC SQL;
CREATE TABLE ACO AS  (
SELECT DISTINCT
ID,
c.OUTID
Reason
FROM s.cr             A
JOIN s.os            C        on a.AId = c.AId ;
quit();

Thank you in advance. 先感谢您。

A JOIN operator with no other qualifier is an INNER JOIN . 没有其他限定词的JOIN运算符是INNER JOIN

Read more in the documentation 在文档中阅读更多内容

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM