I have a view which is working fine, something like this:
Select a,b,c,d,a*b as AB, c*d as CD, a*b*c*d as ABCD
From tblX
Is there an easier way to do the more complex math (a*b*c*d), such as AB*CD?
I tried using AB*CD as ABCD and it didn't work (error).
Keep in mind this is a really dumbed down version of the full query but it is easier to read than the actual one...
Thanks!
Ed
Select a,b,c,d,a*b as AB, c*d as CD, a*b*c*d as ABCD
From tblX
Is there an easier way to do the more complex math (a*b*c*d), such as AB*CD?
I tried using AB*CD as ABCD and it didn't work (error).
Keep in mind this is a really dumbed down version of the full query but it is easier to read than the actual one...
Thanks!
Ed