BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Chandan511
Calcite | Level 5
I am trying this below code but program is right but problem happen why compress use here

Proc sql
Select custid, age,gender,city
From table1
Where compress(gender)='0'
And city='cityname'
Quit;


Please describe me why compress use here??
1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
my reckoning is
compress() is equal strip() or left() .

View solution in original post

4 REPLIES 4
Kurt_Bremser
Super User

Maxim 3: Know Your Data. You might have leading blanks in gender, which COMPRESS() will remove.

 

PS your code won't run anyway, the PROC SQL statement is missing the necessary semicolon.

Chandan511
Calcite | Level 5
So in Proc sql Compress() will work same as sas .??
Kurt_Bremser
Super User

@Chandan511 wrote:
So in Proc sql Compress() will work same as sas .??

Yes, if used in SAS SQL. If you use it in explicit pass-through, the syntax rules of the remote DBMS need to be observed.

Ksharp
Super User
my reckoning is
compress() is equal strip() or left() .

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 852 views
  • 2 likes
  • 3 in conversation