BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
GPatel
Pyrite | Level 9

 

Can somebody assist me .....How following query can be translated into either SAS HASH code (preferred)

or SAS QUERY code?

 

Below is a given SQL NATIVE Query ( note that there is + sign in a where clause):


SELECT DISTINCT A1.acod as acode,
                               A1.descp as FDESC,
                             catx(' - ', B1.scod,B1.tcod) as stcode
FROM X X0,
           A A1,
          B B1,

          C C1

WHERE
         A1.OFFICEID(+)  = X0.officeid
AND B1.STATUSCD(+) = x0.STATUSCD 

AND C1.Post(+) = X0.Post 

AND C1.Pre(+)  = X0.Pre

AND X0.Pre(+)  = C1.Pre

AND X0.Post(+) = C1.Post

     ;

Quit;

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

@LinusH: I think the (+)  indicates a left or right outer join depending upon whether it is on the left or right variable (see: https://chartio.com/resources/tutorials/left-and-right-joins-using-the-plus-sign-in-oracle/ )

 

Art, CEO, AnalystFinder.com

View solution in original post

3 REPLIES 3
LinusH
Tourmaline | Level 20
Giving you a SAS data step hash program tight will probably not help you to understand how to do it yourself next time. I suggest that you study it, give it a try, and then come back with more specific questions.

This SQL of yours, what does the + sign do/mean?
Data never sleeps
art297
Opal | Level 21

@LinusH: I think the (+)  indicates a left or right outer join depending upon whether it is on the left or right variable (see: https://chartio.com/resources/tutorials/left-and-right-joins-using-the-plus-sign-in-oracle/ )

 

Art, CEO, AnalystFinder.com

LinusH
Tourmaline | Level 20
Oh.
Then I assume the SQL part of the question would resolve to - use LEFT/RIGHT JOIN...ON... in SAS (ANSI) SQL.
Data never sleeps

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 978 views
  • 1 like
  • 3 in conversation