Don't think it is possible and as webfred said "no easy way" as the alias in a view can be coming from more than 1 table and columnexampleselect col_alias = t1.col1 + t2.col2 + t3.col2from table1 t1 inner join table2 t2 on t1.pk = t2.pk inner join table3 t3 on t1.fk = t3.pk
or maybe a coming from several layer of derived table. And from each derived table, maybe a combination of several columnsselect col_alias = a.col1from ( select col1 = t1.col2 + t2.col3 + t3.col4 from ( < . . . > ) t1 inner join table2 t2 on . . . inner join table3 t3 on . . . ) a
If you really need to do this . . . all i can says is GOOD LUCK.But maybe you can explain why do you need to do this in the first place ?
KH[spoiler]Time is always against us[/spoiler]