Friday, March 2, 2012

SAS/SQL all values in a single cell separated by comma ","


proc sql;
select name
into : naam separated by ","
from student_data;
%put &naam;
select Distinct "&naam" from student_data;
quit;

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.