I am attempting to select some SAS fields. One has a space in it and one has a slash
proc sql;
create table project as
select Provider Number, Provider/Address
from Project1
quit;
How can I avoid the syntax errors when dealing with spaces and / (slashes) between field names
proc sql;
create table project as
select Provider Number, Provider/Address
from Project1
quit;
How can I avoid the syntax errors when dealing with spaces and / (slashes) between field names