在cypher中是否有嵌套case語句或Decode或Map的方法? Case when object1 = 'Animal'
then case when object2 = 'CAT' then 1 else 0
when object2 = 'RAT' then 2 else 0
else -9 end
end
沒有語法問題,但是內部大小寫的值不
MySQL表使用列名稱爲(名稱,值): Name Value
A V100
B V200
C V300
A V101
B V202
C V301
我們如何轉換上表中圖: 標籤應該如下: Label A
Label B
Label C
Nodes (a:A{V100}),(a:A{V101})
(b:B{V200}),(b:B{V201})
(c:C{
我想根據其他lebel/collection插入數據。我有2 lebel/collection(單位,用戶),他們之間有1個關係(業務),我想根據他們的關係插入數據到unit。下面我暗號查詢給出: MATCH (u:Units)<-[:Business]-(s:Users)
WHERE s.id = 'some-user-id'
WITH count(u) as numOfUnit
//