pre-filter grouping options

p38

Active Member
how can I implement this sql query using the pre-filter, I know there is a basic group option, but am unclear how it operates.....

((element1=w) or (element1=x)) and ((element2=y) or (element2=z))

Paul.
 
So I presume with that you have 4 prefilter statements. With none of them set as grouped you have

Code:
element1=w or element1=x and element2=y or element2=z

The grouped setting groups the current prefilter to the previous one, so if you set the last prefilter to grouped then you obtain:

Code:
element1=w or (element1=x and (element2=y or element2=z)

which is the same as your initial statement.
 
The grouped setting groups the current prefilter to the previous one........

Thanks Rob, this is the key description, as I could not find an explanation on how the groups actually linked to each other.

Perhaps one can put this in the tooltip or wiki?

Which brings me to another point, perhaps I need to get my butt in gear and help with these type of changes on wiki and git. I have been procrastinating I know, as these type of things would be easy to help with. Just need time to get connected properly. I will make a plan I promise :)
 
We are in need of some funding.
More details.

Thank you.

Members online

No members online now.
Back
Top