标签: orientdb
如何在嵌入的字符串列表中查询索引。我尝试了以下,但它没有返回任何结果。
select from index:Customers.cities WHERE key = 'delhi'
但直接查询下面的类工作,它使用了我在上面尝试的相同索引。
select from Customers WHERE cities = 'delhi'
“Cities”是Customer类中的字符串嵌入列表。 Customers.cities是城市的NOTUNQIUE索引。