I have data as below :
+--------+-----------+---------+---------+
| COMPANY| COLOR | OWNER | MODEL |
+--------+-----------+---------+---------+
|Benz | Red | p1 | ABC |
+--------+-----------+---------+---------+
|BMW | Blue | P2 | XYZ |
+--------+-----------+---------+---------+
|Ferrari | YelloW | P3 | PQR |
+--------+-----------+---------+---------+
|Audi | Blue + P4 | MNO |
------------------------------------------
Now I want the records where either the company is Benz or Color is Blue or Owner is P2. I have gone through Aerospike Documentation but could not find any way by which we can perform such operations in a single query. I want to simulate this SQL query in aerospike with C# client:
select * from tablename where (company = Benz or Color = Blue or Owner = P1)