S
Shashis
Select sum(qty1) as col1,sum(qty2) as col2, sum(qty3) as col3 from table1
I want to access the virtual columns col1, col2, col3 in the query something
like
Select sum(qty1) as col1,sum(qty2) as col2, sum(qty3) as col3, (col1 + col2
+ col3 ) from table1
But this does not work.
Please help. Thanks in advance.
I want to access the virtual columns col1, col2, col3 in the query something
like
Select sum(qty1) as col1,sum(qty2) as col2, sum(qty3) as col3, (col1 + col2
+ col3 ) from table1
But this does not work.
Please help. Thanks in advance.