类型转换

类型转换是指将表达式的类型转换为另一个类型。

遗留兼容问题

nGQL 1.0使用C语言风格的类型转换(显示或隐式):(type_name)expression。例如YIELD (int)(TRUE),结果为1。但是对于不熟悉C语言的用户来说,很容易出错。

nGQL 2.0使用openCypher的方式进行类型强制转换。

类型强制转换函数

函数说明
toBoolean()将字符串转换为布尔。
toFloat()将整数或字符串转换为浮点数。
toInteger()将浮点或字符串转换为整数。
type()返回字符串格式的关系类型。

示例

  1. nebula> UNWIND [true, false, 'true', 'false', NULL] AS b RETURN toBoolean(b) AS b;
  2. +----------+
  3. | b |
  4. +----------+
  5. | true |
  6. +----------+
  7. | false |
  8. +----------+
  9. | true |
  10. +----------+
  11. | false |
  12. +----------+
  13. | __NULL__ |
  14. +----------+
  15. nebula> RETURN toFloat(1), toFloat('1.3'), toFloat('1e3'), toFloat('not a number');
  16. +------------+----------------+----------------+-------------------------+
  17. | toFloat(1) | toFloat("1.3") | toFloat("1e3") | toFloat("not a number") |
  18. +------------+----------------+----------------+-------------------------+
  19. | 1.0 | 1.3 | 1000.0 | __NULL__ |
  20. +------------+----------------+----------------+-------------------------+
  21. nebula> RETURN toInteger(1), toInteger('1'), toInteger('1e3'), toInteger('not a number');
  22. +--------------+----------------+------------------+---------------------------+
  23. | toInteger(1) | toInteger("1") | toInteger("1e3") | toInteger("not a number") |
  24. +--------------+----------------+------------------+---------------------------+
  25. | 1 | 1 | 1000 | __NULL__ |
  26. +--------------+----------------+------------------+---------------------------+
  27. nebula> MATCH (a:player)-[e]-() RETURN type(e);
  28. +----------+
  29. | type(e) |
  30. +----------+
  31. | "follow" |
  32. +----------+
  33. | "follow" |
  34. nebula> MATCH (a:player {name: "Tim Duncan"}) WHERE toInteger(id(a)) == 100 RETURN a;
  35. +----------------------------------------------+
  36. | a |
  37. +----------------------------------------------+
  38. | ("100" :player{age: 42, name: "Tim Duncan"}) |
  39. +----------------------------------------------+
  40. nebula> MATCH (n:player) WITH n LIMIT toInteger(ceil(1.8)) RETURN count(*) AS count;
  41. +-------+
  42. | count |
  43. +-------+
  44. | 2 |
  45. +-------+