andrewbadera
Programmer
to get a result when:
one table (tblUser) has a many-to-many relationship with other tables (tblClass and tblCategory)?
furthermore, what's the best way to store the relationship in the DB? I had it normalized, with tblUserClass and tblUserCategory illustrating the relationship, but due to the mangled SQL statement I used to return search results, I ended up removing the relationships to tblUser and storing a concatenated and delimitied string containing all class or category IDs in strClassIDs and strCategoryIDs fields.
one table (tblUser) has a many-to-many relationship with other tables (tblClass and tblCategory)?
furthermore, what's the best way to store the relationship in the DB? I had it normalized, with tblUserClass and tblUserCategory illustrating the relationship, but due to the mangled SQL statement I used to return search results, I ended up removing the relationships to tblUser and storing a concatenated and delimitied string containing all class or category IDs in strClassIDs and strCategoryIDs fields.