It's a strange thing to want to do, and the nearest i can get to is is to alias the column name, like ...

create view emp_v
as
select emp, dept a
from emp

Why do you want to do this?