Ihre Richtung ist richtig, fügen Sie einfach eine group by-Klausel hinzu, um die a.ids zu trennen, etwa so:
select a.id, sum(b.ach_sell)
from bookings a
left join pricing_line b
on b.bookings = a.id
group by a.id
Ihre Richtung ist richtig, fügen Sie einfach eine group by-Klausel hinzu, um die a.ids zu trennen, etwa so:
select a.id, sum(b.ach_sell)
from bookings a
left join pricing_line b
on b.bookings = a.id
group by a.id