I'm looking for a way to get every possible product and permutation out of the database into a big list. This is for a stock management tool i'm writing that i want to connect to actinic.
is a very bad start because it does not take into consideration the hierarchical nature of permutations. Can anyone help me with this SQL (or even any other way of getting every possible combo of products out)
Thanks in advance.
Code:
SELECT Product.[Short description], ProductProperties.sString1, ProductProperties.nType FROM ProductProperties LEFT JOIN Product ON Product.[Product Reference] = ProductProperties.[sProductRef] WHERE ProductProperties.nType = 7
Thanks in advance.
Comment