Tente mudar os gostos de ...
count(select * from bookings where b.id_customer = c.id)
...para...
(select count(*) from bookings where b.id_customer = c.id)
count(select * from bookings where b.id_customer = c.id)
(select count(*) from bookings where b.id_customer = c.id)