BookmarkSubscribeRSS Feed
knveraraju91
Barite | Level 11

Dear,

 

Some body had written a proc sql code in a macro

 

porc sql;

select distinct
obs.*,

What is "obs.*". I know '*' means all. Does it mean all observations. Please suggest any example i can read. Thank you.

 

2 REPLIES 2
SASKiwi
PROC Star

Where is the rest of your query? "obs" is a short way of identifying a table if your query looks like this:

 

proc sql;
  create table want as
  select obs.*
  from MyLongTableName as obs
  ;
quit;

So the query means select all columns from the table referenced by "obs". BTW "obs" has no special meaning. You can use any character or characters to reference the table: ABC, XYZ etc.

PGStats
Opal | Level 21

As @SASKiwi said, obs could be a table alias name or it could be the table name itself, as in the query:

 

proc sql;
select 
    obs.*,
    have.age
from obs, have
where obs.id=have.id;
quit;
PG

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 1091 views
  • 2 likes
  • 3 in conversation