映画データベースが与えられた場合、特定の俳優の存在と映画の分数の%でのそれぞれの存在に基づいて各ノードに重みを付け、指定されたしきい値を超えるノードのみを返すことは可能ですか?例の(一般的な)クエリを提供してください。
Es:
Threshold: 600 (entered dynamically, not present in DB)
Actor: Good Guy
Val: +12 (entered dynamically, not present in DB)
Actor: Bad Guy
Val: -2 (entered dynamically, not present in DB)
Movie: Nice Movie
Length: 120min
Good Guy presence: 70min
Bad Guy presence: 10min
Val: 120/70*100*(+12) + 120/10*100*(-2)
If Val > 600 then return the node
また、Neo4jはこの種の操作に適したデータベースですか、それともMysqlはこの種の使用法に優れていますか?