Orientdb:如何在多个顶点之间找到边
Orientdb : how find edge between multiple vertices
我想找到由名称为 "bob" 的顶点连接的每条边。
什么不能是正确的 SQL 请求?
您可以使用这个查询:
select expand(bothE()) from User where name = "bob"
希望对您有所帮助。
更新:
试试这个查询:
select * from E where in.name = "bob" and out.name = "bob"
我想找到由名称为 "bob" 的顶点连接的每条边。
什么不能是正确的 SQL 请求?
您可以使用这个查询:
select expand(bothE()) from User where name = "bob"
希望对您有所帮助。
更新:
试试这个查询:
select * from E where in.name = "bob" and out.name = "bob"