Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
235 views
in Technique[技术] by (71.8m points)

Elastic Search Complex Logical Query (SQL to ElasticSearch Query)

My document schema is as follows.

Post

Id
Title
Body
Privacy -> Values can only be ["Me", "Anyone", "Team"]
UserId

What I want to do is retrieve all documents, but exclude documents where

Privacy = "Me" 
and 
UserId != "My-User-Id"

The SQL equivalent code is

SELECT * from Posts
WHERE (Privacy = "Anyone" OR Privacy = "Team")
OR (Visibility = "Me" AND UserId = 'My-User-Id')

I want to know how I can convert that SQL to the Elastic Search equivalent. Thanks, any help would be appreciated.

question from:https://stackoverflow.com/questions/65853643/elastic-search-complex-logical-query-sql-to-elasticsearch-query

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...