I tried this and dont see any way of doing it.
here is my approach for it.
EXEC sp_rename 'Employee', 'Employee1'
-- Original table name is EmployeeINSERT INTO TABLE2 SELECT * FROM TABLE1
.
-- Insert into Employee select Name, Company from Employee1DROP table Employee1
.