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...

Empire Four Kingdoms Hack Unlimited Rubies Unlimited Gold Unlimited Wood Unlimited Stone Unlimited Food for Android iOS

Empire Four Kingdoms Hack Unlimited Rubies Unlimited Gold Unlimited Wood Unlimited Stone Unlimited Food for Android iOS Acest blog Link de aici Web Acest blog Link de aici Web Empire Four Kingdoms Hack , cheats, tool, trainer 100% working on Android and iOS that will give you Free Unlimited Rubies, Gold, Wood, Stone and Food. You can utilize any way you like the Rubies, Gold, Wood, Stone and Food generated by Empire Four Kingdoms Hack. Empire Four Kingdoms Hack work with Android and iPhone, iPad, iPod Touch, iOS device, Trainer is very simple to use on PC or Android APK and you can easily add Rubies, Gold, Wood, Stone and Food in your account with just a one clicks of Patch Game button. You will not find a better Hack or Cheats for Empire: Four Kingdoms on Android or iOS. This hack tool has been created by the-D2 Team(available only on the-D2.com) by...