Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カウント関数によって返される列の名前を取得する方法
ここが問題です
cypherquery='START n=node:node_auto_index(name='Ashish') MATCH n-[:f]-h RETURN h,count(h)'
最初の列名は確かに ' h ' ですが、2 番目の列の名前はどうですか?
次のように AS キーワードを使用します。
'START n=node:node_auto_index(name='Ashish') MATCH n-[:f]-h RETURN h,count(h) as columnName'
"columnName" を使用して結果を参照します。