I want to get sum of different columns from different tables, I have done something like this below, I think there is much better way that this in mysql
select
(select sum(sal) from budget_tp) as sal_tp,
(select sum(sal) from budget_fos_veri) as sal_veri,
(select sum(sal) from budget_fos_picks)as sal_pick,
(select sum(sal) from budget_bpo_other)as sal_bpo;