怎么优化 MATCH多个的 合并
MATCH (a:ApplyBomDetail) ,(b:ApplyBomDetail) where a.product_id=b.upper_product_id AND a.account_id=1 AND b.account_id= 1 MERGE (a)-[p:Parent{upper_level_quantity: b.upper_level_quantity ,current_level_quantity: b.current_level_quantity }]->(b)
这个语句效率超级慢,有什么优化的吗?? 特别是 MATCH (a:ApplyBomDetail) ,(b:ApplyBomDetail) 这段