MySQL算术减法

MySQL arithmetic subtraction

我有一个 table 这样的:

MYSQL 
table_01            tablo_02

Calculated tax      Deductible tax
--------------      ---------------
1200                2100
2305                5200
3250                1200    
2501                3215

我想要这样的结果

total table_01 - total table_02 = result

像这样:

select (
        select sum(calculated_tax)
        from table_01
        ) - (
        select sum(deductible_tax)
        from table_02
        ) as result