proc sql; select type into :col separated by ' ' from sashelp.vcolumn /* here libname is library, WORK is the library, name is name of variable created, and, memname is name of dataset */ where libname = 'WORK' and type = 'char' and memname = 'TEST'; run;
... View more