Tagged Questions
2
votes
7answers
771 views
Data Model for Boolean Expressions
Do you know a way to organize boolean expressions in a database while allowing infinite nesting of the expressions?
Example:
a = 1 AND (b = 1 OR b = 2)
The expression as a whole shouldn't be ...