在Apache Cypher查询语言中,可以使用CAST()
或TO
关键字进行类型转换
CAST()
函数:MATCH (n)
RETURN n, CAST(n.property AS STRING) AS string_property, CAST(n.property AS INTEGER) AS integer_property
在这个示例中,我们将节点的property
属性转换为字符串和整数类型。
TO
关键字:MATCH (n)
RETURN n, TOSTRING(n.property) AS string_property, TOINTEGER(n.property) AS integer_property
在这个示例中,我们同样将节点的property
属性转换为字符串和整数类型。
请注意,在使用类型转换时,确保转换的数据类型与原始数据类型兼容,否则可能会导致查询错误。