Is multiple search possible in ydn-db?

110 Views Asked by At

I want to do following queries,

1) Multi query like

SELECT * FROM table_name WHERE username="Tom" OR lastname="Gordon" OR city="New York"; 

2) Combination of AND and OR operations. Ex:

SELECT * FROM table_name WHERE username="Tom" OR lastname="Gordon" AND age=25;
1

There are 1 best solutions below

3
On

Multiple AND is possible using SortedMerge or ZigZagMerge. See here for documentation and here for example.

Use db.scan for OR query.

These two types of query can be combine as long as OR is top of the node, i.e, disjunctive normal form.

Unfortunately these query are not available yet in fluent Query API, so terrible to use now.