I have a form with many project questions and in some of those questions are about 20 CheckBoxes
to be checked. I want to create a SQL structure for these projects.
The majority of data is located in a Project table.
But I don't want to have all these CheckBoxes
as columns of the project table, instead I want to make a table where all these CheckBoxes
would be represented as Rows. This table would have a group designating the question (parent of all those checkboxes) and I'd add 1 more table, between the project and the table with checkboxes to create a [1]-[N N]-[1] structure.
But I'm asking, if this is acceptable, because when the query comes, I won't have the columns to set the condition for, but a table with rows...
Any better idea? Thank you