Hi,
I have a table with the QUESTIONS with columns id_question ,
id_dependent_answer, description and table ANSWERS with columns id_answer, id_question, description.
The questions are placed in a datatable called
dtQuestions and the answers of the question in a datatable
dtAnswers.
The order of the datatable is the order the questions are inserted in the database, but the questions that depends on another one, should be place just below the question they depend.
One of the issues is that the question that depends of another one, also have questions that could depend on them.
In order to solve this problem, should i use Go to the complete details ...