select
id, amount - (select sum(amount) as amount
from table2
where column = 'value' and table1.id = table2.id
group by table2.id) as amount
from
table1
order by
table1.id
The result is all values from table1 - amount from table2 except the table1.id's that are not in table2.id's they get null value.
So it's all good except that I have the null values because I need these to be the table1.amount value
Also tried stuff like this but still not working
select
id, amount - isnull((select sum(amount) as amount
from table2
where column = 'value' and table1.id = table2.id
group by table2.id), table1.amount) as amount
from
table1
order by
table1.id
Then I get 0.00 but the table1.id's that have null in result set do have a real amount value in table1.amount
Overview of what I need
table 1 values (1,12 ; 2,27 ; 3,9) table 2 values (1,9 ; 3,12) result table (1,3 ; 2,27 ; 3,-3)
so I need table1 - values from table 2 to get result table
m- not ammount) ...