there's a way to create an alias after some computation?
in practice there is a better way to write this:
select
case when aaa ... then then else end AS ALIAS1,
case when bbb ... then then else end AS ALIAS2,
case when ccc ... then then else end AS ALIAS3,
/* the sum of previous aliases */
case when aaa ... then then else end +
case when bbb ... then then else end +
case when ccc ... then then else end AS ALIAS_SUM
thank you in advance