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

is there any way in proc sql if i can select distinct on few varibles and have remaining as it is.

as below i do not want distinct on b.term,b.acce and need for the rest

proc sql;
create table _values_ as
select (distinct b.table,b.column,b.origin,b.originwhere,b.algorithm), b.term,b.acce
from vcol a right join source_columns b
on a.origin=b.origin

quit;

 

any suggestion please

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

As soon as the distinct does not extend over all columns, it becomes meaningless, as all rows from the dataset will be included anyway. Play around with the concept for a while, and you'll see what I mean.

 

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

How about

proc sql;
create table _values_ as
select b.table,b.column,b.origin,b.originwhere,b.algorithm, b.term,b.acce
from vcol a right join source_columns b
on a.origin=b.origin
group by b.table,b.column,b.origin,b.originwhere,b.algorithm
;
quit;

?

alexdsa310
Obsidian | Level 7

No need to mention distinct? sorry to ask

Kurt_Bremser
Super User

As soon as the distinct does not extend over all columns, it becomes meaningless, as all rows from the dataset will be included anyway. Play around with the concept for a while, and you'll see what I mean.

 

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!

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
  • 809 views
  • 0 likes
  • 2 in conversation