是否可以输入类似
的强制转换start n=node(0) match n-[:My_Events]->m where
has(m.Node_Type) and has(m.Day1) and
m.Node_Type='Schdule_Node' and
m.Day1<>''
return id(m) ORDER BY Integer.parseInt(m.Day1) ASC
答案 0 :(得分:0)
toInt似乎适用于http://console.neo4j.org
start n=node(0) match n-[:My_Events]->m
where
has(m.Node_Type) and has(m.Day1) and
m.Node_Type='Schdule_Node' and
m.Day1<>''
return id(m) ORDER BY toInt(m.Day1)