修改密码

请输入密码
请输入密码 请输入8-64长度密码 和 email 地址不相同 至少包括数字、大写字母、小写字母、半角符号中的 3 个
请输入密码
提交

修改昵称

当前昵称:
提交

申请证书

证书详情

Please complete this required field.

  • Ultipa Graph V4

Standalone

Please complete this required field.

Please complete this required field.

服务器的MAC地址

Please complete this required field.

Please complete this required field.

取消
申请
ID
产品
状态
核数
申请天数
审批时间
过期时间
MAC地址
申请理由
审核信息
关闭
基础信息
  • 用户昵称:
  • 手机号:
  • 公司名称:
  • 公司邮箱:
  • 地区:
  • 语言:
修改密码
申请证书

当前未申请证书.

申请证书
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

ProductName CreateTime ID Price File
ProductName CreateTime ID Price File

No Invoice

v5.0
搜索
    v5.0

      UNION ALL

      概述

      使用语句UNION ALL可以将两个或多个查询的结果合并成一个结果集,其中包含任一查询的结果。

      如需对结果去重,可使用语句UNION

      语法

      ...
      return <item1> as <alias1?>, <item2?> as <alias2?>, ...
      union all
      ...
      return <item1> as <alias1?>, <item2?> as <alias2?>, ...
      

      详情

      • 使用UNION ALL合并结果时,所有查询的返回项必须相同。

      示例图集

      在一个空图集中,逐行运行以下语句,创建示例图集:

      create().node_schema("student").node_schema("course").edge_schema("takes")
      create().node_property(@*, "name").node_property(@student, "age", int32).node_property(@course, "credits", int32)
      insert().into(@student).nodes([{_id:"S1", name:"Jason", age:25}, {_id:"S2", name:"Lina", age:23}, {_id:"S3", name:"Eric", age:24}, {_id:"S4", name:"Emma", age:26}, {_id:"S5", name:"Pepe", age:24}])
      insert().into(@course).nodes([{_id:"C1", name:"French", credits:4}, {_id:"C2", name:"Math", credits:5}])
      insert().into(@takes).edges([{_from:"S1", _to:"C1"}, {_from:"S2", _to:"C1"}, {_from:"S3", _to:"C1"}, {_from:"S2", _to:"C2"}, {_from:"S3", _to:"C2"}, {_from:"S4", _to:"C2"}, {_from:"S5", _to:"C2"}])
      

      合并查询

      n({@course.name == "French"}).e().n({@student} as s) return s.name
      union all
      n({@course.name == "Math"}).e().n({@student} as s) return s.name
      

      结果:

      s.name
      Lina
      Eric
      Jason
      Lina
      Emma
      Eric
      Pepe
      n({@course.name == "French"} as c).e().n({@student} as s) return c.name, s.age 
      union all
      n({@course.name == "Math"} as c).e().n({@student} as s) return c.name, s.age
      

      结果:

      c.name s.age
      French 23
      French 24
      French 25
      Math 23
      Math 26
      Math 24
      Math 24
      请完成以下信息后可下载此书
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写
      *
      你的电话必须填写