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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 294 views
  • 0 likes
  • 2 in conversation