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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 523 views
  • 2 likes
  • 3 in conversation