BookmarkSubscribeRSS Feed
shawn123
Obsidian | Level 7

Hi guys, I find a question online, the question is shown below

question.PNG

So the answer is not based on SAS SQL, and the answer cannot work in proc SQL, is there any way to write in proc SQL?

4 REPLIES 4
SASKiwi
PROC Star

Here is one way that will work in SAS SQL:

where cats(C1, C2, C3) contains 'Yellow'
PGStats
Opal | Level 21

Another SAS/SQL way:

 

where whichc("Yellow", c1, c2, c3);

PG
Ksharp
Super User

Another SQL way:

 

where sum(c1='Yellow',c2='Yellow',c3='Yellow') ;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 4 replies
  • 668 views
  • 6 likes
  • 4 in conversation