删除id为809这条会递归删除它所有的子节点
delete from t_file_repository where id in (
select id from t_file_repository start with id='809' connect by prior id = parent_id
)
这3条会一起删除

详见connect by prior用法