with recursive t1 as(select share_id,0 as fsum_share_id,# 父节点c.play_seconds,c.sharer_account_id,share_id as root_share_id,account_name as root_account_name,0 as max_depthfrom clip_share_events cjoin podcast_accounts p on c.sharer_account_id=p.account_idwhere parent_share_id is null and c.clip_id = 9...