Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

rename not working

Status
Not open for further replies.

sap1958

Technical User
Oct 22, 2009
138
0
0
US
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
 
What error are you getting as you are using the correct syntax?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top