Alibaba2003
Programmer
hi .. this maybe an easy solution:
i want to convert this simple access query to sql view:
select qty, price,
qty * price as total_without_tax ,
total_without_tax * .045 as TaxTotal,
total_without_tax * TaxTotal as GrandTotal
from ordersTable;
I need to use the aliases and not recalculate the values again in all of the fields. Thank you.
Regards
Tareq
It's Nice to Be Important But It's more Important to BE Nice
i want to convert this simple access query to sql view:
select qty, price,
qty * price as total_without_tax ,
total_without_tax * .045 as TaxTotal,
total_without_tax * TaxTotal as GrandTotal
from ordersTable;
I need to use the aliases and not recalculate the values again in all of the fields. Thank you.
Regards
Tareq
It's Nice to Be Important But It's more Important to BE Nice