BookmarkSubscribeRSS Feed
demolarich
Calcite | Level 5

proc sql;
CREATE TABLE QUEST4 AS
SELECT
M.CUST_Id
,R.Region
,F.FinAdvID
,DELINQUENT_2017_DEC.*
from MTG_CUST as M
left join DELINQUENT_2017_DEC as D on M.CUST_Id = D.CUST_Id
left join FINADVMASTER as F on M.Finadvisor = F.FinAdvID
left join REGION as R on F.Province = R.Province;
quit;
proc sql;
create table Quest4ANS as
select
COUNT(DISTINCT(M.CUST_Id))
sum(M.AMT_OF_LOAN)
,Count(F.FinAdvID)
,Count(D.CUST_Id)
from QUEST4
group by region;
quit;

1 REPLY 1

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 355 views
  • 0 likes
  • 2 in conversation