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

Hi,

Can someone help me with the below issue,

I've few columns in a tabls like showing below image. I want the second image as my output.

How can I do it using SQL.

The query which I've used to get first table is:

PROC SQL ;

CREATE TABLE MTG.NEW AS

SELECT  DISTINCT CLIENTNAME, VERSION FROM MTG.NEW_CLIENT;

ROWS.PNG

1 ACCEPTED SOLUTION

Accepted Solutions
amats
Calcite | Level 5

data NEW;

input CLIENTNAME$ VERSION;

cards;

Client1 8.1

Client1 8.2

Client2 8.1

Client2 8.2

Client3 8.1

Client4 8.1

Client5 8.1

;

run;

proc transpose data=NEW out=OUT1;

  var VERSION;

  by CLIENTNAME;

run;

options missing="";

data OUT2;

  length VERSION2 $20.;

  set OUT1;

  VERSION2 = catx("," , of COL:);

run;

options missing=".";

View solution in original post

6 REPLIES 6
Patrick
Opal | Level 21

Using a SAS data step would be much easier. Does it need to be a SQL? And if yes: why?

NareshAbburi
Calcite | Level 5

Hi,

no need of Sql. But I'm not sure of how to do it using DATA step.

could you please explain me..?

Reeza
Super User

try something like the following;

data want;

set have;

length new_var $256.;

retain new_var;

by client_id;

if first.client_id then new_var=var;

else new_var=catx(',', new_var, var);

if last.client_id then output;

run;

stat_sas
Ammonite | Level 13

proc sql;

create table MTG.NEW as

select clientname,case when min(version)=max(version) then put(min(version),8.1) else

catx(",",min(version),max(version)) end as version from have

group by clientname;

quit;

NareshAbburi
Calcite | Level 5

Hi,

Thanks for your reply.

The code is very good for my purpose although it has got some data type issue with PUT function.

amats
Calcite | Level 5

data NEW;

input CLIENTNAME$ VERSION;

cards;

Client1 8.1

Client1 8.2

Client2 8.1

Client2 8.2

Client3 8.1

Client4 8.1

Client5 8.1

;

run;

proc transpose data=NEW out=OUT1;

  var VERSION;

  by CLIENTNAME;

run;

options missing="";

data OUT2;

  length VERSION2 $20.;

  set OUT1;

  VERSION2 = catx("," , of COL:);

run;

options missing=".";

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 6 replies
  • 1415 views
  • 9 likes
  • 5 in conversation