Je richting is goed, voeg gewoon een group by clausule toe om de a.id's te scheiden, zoiets als dit:
select a.id, sum(b.ach_sell)
from bookings a
left join pricing_line b
on b.bookings = a.id
group by a.id
Je richting is goed, voeg gewoon een group by clausule toe om de a.id's te scheiden, zoiets als dit:
select a.id, sum(b.ach_sell)
from bookings a
left join pricing_line b
on b.bookings = a.id
group by a.id