我有一个结构如下的图表:
列_content_
存储json,如{"phoneNumber":"+5511999998888","date":"2017-05-09T18:23:31Z"}
。
我想按date
属性执行搜索,其值低于其他值。
是否可以使用以下结构运行类似的查询?如何编写选择条件?我是OrientDB的新手。
答案 0 :(得分:1)
让我们说你的顶点名称是Person
你可以这样做:
CREATE PROPERTY Person.content IF NOT EXISTS EMBEDDED
SELECT * FROM Person WHERE content.date < "2017-05-09T18:23:31Z"
希望有所帮助
答案 1 :(得分:0)
查看有关sql的文档部分:http://orientdb.com/docs/last/SQL.html