Skip to main content

ElasticSearch query with AND and OR criteria

ElasticSearch query with AND and OR criteria


Frequently when we will need to construct query to elasticsearch which bear AND and OR criteria similar to the following SQL statements:

Statement 1:
SELECT * FROM tblOrder WHERE orderDate=2015-01-01 14:00:00 AND customerID=29439;

Statement 2:
SELECT * FROM tblOrder WHERE orderDate=2015-01-01 14:00:00 OR customerID=29439;

Statement 3:
SELECT * FROM tblOrder WHERE orderDate <= 2015-01-01 14:00:00 AND customerID=29439;

Statement 4:
SELECT * FROM tblOrder WHERE (orderDate=2015-01-01 14:00:00 AND customerID=29439) OR customerID = 20991;

Statement 5:
SELECT * FROM tblOrder WHERE orderDate=2015-01-01 14:00:00 AND (customerID=29439 OR customerID = 20991);

In ElasticSearch, we use "must" and "should" in place of AND and OR and "bool" in place of WHERE.

Suppose in our ElasticSearch (at 179.168.0.1:9200), we have indexed documents having the following structures at index myOrder/myOrder:

{
"orderID" : xxxxx,
"customerID"  : xxxxx,
"orderDate" : "yyyyMMddTHHmmss",
"itemLines" [
  {
   "itemLineID" : xxxx,
   "productID" : yyyyy,
   "quantity" : xxxxx
  },
  ...
]
}

Below is the translation of the above SQL statements to equivalent ElasticSearch query, in the following example we use curl, and we want to get a max of 100 records in each query from start, i.e., 0):

Statement 1:
curl -XGET http://179.168.0.1:9200/myOrder/myOrder/_search d
{
"from" : 0,
"size" : 100,
"query": {
   "bool" : {
       "must" : [
          "match" : {"orderDate" : "20150101T140000" },
          "match" : {"customerID" : 29439 }
       ]
   }
}
}

Statement 2:
curl -XGET http://179.168.0.1:9200/myOrder/myOrder/_search d
{
"from" : 0,
"size" : 100,
"query": {
   "bool" : {
       "should" : [
          "match" : {"orderDate" : "20150101T140000" },
          "match" : {"customerID" : 29439 }
       ]
   }
}
}

Statement 3:
curl -XGET http://179.168.0.1:9200/myOrder/myOrder/_search d
{
"from" : 0,
"size" : 100,
"query": {
   "bool" : {
       "must" : [
          "range" : {"orderDate" : { "lte" : "20150101T140000" } },
          "match" : {"customerID" : 29439 }
       ]
   }
}
}

Statement 4:
curl -XGET http://179.168.0.1:9200/myOrder/myOrder/_search d
{
"from" : 0,
"size" : 100,
"query": {
   "bool" : {
       "should" : [
          "bool" : {
              "must" : [
                 "match" : {"orderDate" : "20150101T140000" },
                 "match" : {"customerID" : 29439 }
              ]
          },
          "match" : { "customerID " :  20991}
       ]
   }
}
}

Statement 5:
curl -XGET http://179.168.0.1:9200/myOrder/myOrder/_search d
{
"from" : 0,
"size" : 100,
"query": {
   "bool" : {
       "must" : [
          "match" : {"orderDate" : "20150101T140000" },
          "bool" : {
              "should" : [
                   "match" : { "customerID " :  20991}, 
                   "match" : {"customerID" : 29439 }
              ]
          }
       ]
   }
}
}

download file now

Popular posts from this blog

Endomondo Sports Tracker PRO v10 2 4 Full APK

Endomondo Sports Tracker PRO v10 2 4 Full APK ? Endomondo Sports Tracker PRO v10.2.4 Full APK. They mock fitness with this personal trainer and social fitness partner . Endomondo is the first application of its kind on Android and is ideal for running, cycling , hiking and other activities on the basis of distance. Join 10 million users and begin to free your endorphins ! This is the PRO version of the popular Endomondo Sports Tracker ! Please see What's New in Google Play for latest updates . PRO features : * Go programs : choose from three audio programs or create your own and let the coach guide * Graphics Card: graphics display your lap times , heart rate , speed and altitude throughout the workout * Beat you: Set a previous workout as target and the audio coach will help you perform better this time * The low power mode : Increase the battery timeout using this function for long workouts * Final goal : Choose a duration for your workout and the audio coach session will help...

download Lotto Heaven HD Lottery Game for free

download Lotto Heaven HD Lottery Game for free Lotto Heaven HD: Lottery Game Cards & Casino Download .apk Tired of the same old free card games? Try Lotto Heaven, the fun new lottery scratch-off card game. Its ridiculously addicting! While it wont make you lottery numbers luckier, it is a great way to wait for your powerball or megamillions lottery results to come in. Youre a scratch card millionaire waiting to happen! Download .apk If you live in Boston, Los Angeles, Philadelphia, Chicago, Seattle, New York, Kansas City, Toronto, San Francisco or London , you want to read this. However, we have the kick ass new poster for The Dark Knight debuted as part of the ongoing viral marketing game download Lotto Heaven HD: Lottery Game 1.101 apk . The site where it was discovered is on whysoserious.com / itsallpartoftheplan /. However, the website indicated that more would come and now its been updated. A new viral hunt is on Monday, said the 28th April in cities before and this time ...