I have two tables that I will be taking the cartesian product to get all of my possible combinations (right now that will return some 40 results); however, I will have an occation where I need to restrict the over all results to just a combination of a select group of records from each table (a subgroup of eight).
My first thought was a boolean field in each table and return only the cartesian product where both fields are true; however, my second thought is to use two more tables joined to restrict.
Thoughts?
My first thought was a boolean field in each table and return only the cartesian product where both fields are true; however, my second thought is to use two more tables joined to restrict.
Thoughts?
Comment