Sans garantie, vous pouvez essayer celle-ci :

With nvp AS
(
SELECT _fils, count(*) as nb
FROM fbs_import.lien_niveau__phrase
GROUP BY _fils
)
SELECT chp._pere
, sum(nvp.nb)...