Hi,
I have two tables with the same structure. Both tables have a field "Cost". I want that the sum total of "Cost" of on table and the sum total of "Cost" of the second table be added and stored in a variable. How to do that ?
Here is what I did, but it is not working...
Select sum(cost)+ sum(cost) as expr1 from Chemical, Glassware
There is always a new solution for the same problem.
Anonymous
I have two tables with the same structure. Both tables have a field "Cost". I want that the sum total of "Cost" of on table and the sum total of "Cost" of the second table be added and stored in a variable. How to do that ?
Here is what I did, but it is not working...
Select sum(cost)+ sum(cost) as expr1 from Chemical, Glassware
There is always a new solution for the same problem.
Anonymous