Closed AlessandroMinoccheri closed 6 years ago
It could be very useful to create a query with more or filter conditions separated like this:
select * from entity WHERE name = 'foo' OR surname = 'baz' OR description = 'bar' OR subject = 'buzz';
The purpose is to have something like this:
select * from entity WHERE (name = 'foo' OR surname = 'baz') AND (description = 'bar' OR subject = 'buzz');
Resolved into PR #173
It could be very useful to create a query with more or filter conditions separated like this:
The purpose is to have something like this: