Is it possible to send column alias to a function ?
I have a select which is basically have a structure like below ..
select mytable.myfield as
,
func_info(field1),
....................
.....................
I get error unknow column at runtime .. .
my question is is this structure wrong ? Whats the correct way to send a column value to a function ?

