Something like this:
select (
select sum(calculated_tax)
from table_01
) - (
select sum(deductible_tax)
from table_02
) as result
1
solved MySQL arithmetic subtraction
Something like this:
select (
select sum(calculated_tax)
from table_01
) - (
select sum(deductible_tax)
from table_02
) as result
1
solved MySQL arithmetic subtraction