You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to have advanced query options such as combine different ANDs or ORs in different combinations.
Example 1 (currently possible):
field1 = 'value1' AND field2 = 1 AND field3 = 'value3'
Example 2 (currently possible):
field1 = 'value1' OR field2 = 1 OR field3 = 'value3'
Example 3 (currently not possible):
field1 = 'value1' AND field2 = 1 OR field3 = 'value3'
Example 4 (currently not possible):
field1 = 'value1' AND (field2 = 1 OR field3 = 'value3')
So maybe an option to switch to an advanced mode where the user can edit the sql statement with brackets and so on would be nice. Another ideas or solutions are very welcome.
The text was updated successfully, but these errors were encountered:
It would be great to have advanced query options such as combine different ANDs or ORs in different combinations.
Example 1 (currently possible):
field1 = 'value1' AND field2 = 1 AND field3 = 'value3'
Example 2 (currently possible):
field1 = 'value1' OR field2 = 1 OR field3 = 'value3'
Example 3 (currently not possible):
field1 = 'value1' AND field2 = 1 OR field3 = 'value3'
Example 4 (currently not possible):
field1 = 'value1' AND (field2 = 1 OR field3 = 'value3')
So maybe an option to switch to an advanced mode where the user can edit the sql statement with brackets and so on would be nice. Another ideas or solutions are very welcome.
The text was updated successfully, but these errors were encountered: