proc sql;
create table table1 as
select CustomerID,First,Last,
Web,Salary,Bonus,Birthdate,
Age, TotalSalary, Status
from
TestDb.tblCustomer1;
run;
data table2;
set table1;
rename Web=Email;
run;
My rename will not work. I am attempting to change Web to Email
create table table1 as
select CustomerID,First,Last,
Web,Salary,Bonus,Birthdate,
Age, TotalSalary, Status
from
TestDb.tblCustomer1;
run;
data table2;
set table1;
rename Web=Email;
run;
My rename will not work. I am attempting to change Web to Email