How I can use column with space in the name ('library name') in PROC SQL
in SAS?
proc sql outobs=10;
select *
from sashelp.vtable
where library name = xxx
;
run;
I tried:
proc sql outobs=10;
select *
from sashelp.vtable
where 'Libname'n = test_lin;
quit;
proc sql outobs=10;
select *
from sashelp.vtable
where 'library name'n = test_lin;
quit;
proc sql outobs=10;
select *
from sashelp.vtable
where libname = test_lin;
quit;
ERROR: The following columns were not found in the contributing tables: test_lin.
Variable Name: libname
Variable Label: Library Name