I'm new to Elasticsearch so, here is my doubt:
I have large data inserted into Elastic search. The data that I have inserted contains an attribute of marks of each subject, is it possible to write an Elasticsearch query to find the number of students who has their marks in the inputted range.
Example:
|studentname | maths | computers |
++++++++++++++++++++++++++++++++++
|s1 |78 |90 |
==================================
|s2 |56 |75 |
==================================
|s3 |45 |50 |
==================================
Assuming the data that is present in the ES in a tabular manner, is it possible to
1.Find the list of students who has scored more than 50 marks in computers.
2.Find the list of students who has scored more than 60 marks in both subjects.