Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我第一次来这里:)
我发现很难相信 SAS 不支持上述查询。这在 Oracle 中非常有用,现在我在 SAS 中需要类似的东西。
您能否建议一个简单的解决方案来做到这一点?
非常感谢,
加尔。
我认为这应该有效
proc sql; create table TABLENAME as select a.*, b.x, b.y from Table1 A left join Table2 B on a.x = b.x and a.y = b.y ;quit;
这行得通吗?
proc sql; select a.* from a, b where a.x = b.x and a.y = b.y; quit;