OrientDB - 按列内的json属性搜索

时间:2017-05-10 14:07:04

标签: json orientdb

我有一个结构如下的图表:

  • @rid
  • @class
  • @version
  • content (json content)

_content_存储json,如{"phoneNumber":"+5511999998888","date":"2017-05-09T18:23:31Z"}

我想按date属性执行搜索,其值低于其他值。

是否可以使用以下结构运行类似的查询?如何编写选择条件?我是OrientDB的新手。

2 个答案:

答案 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