I have a table(validation_number)
that contains an unique id and comma separated name of columns:
Table is in similar fashion
The column name are the column names of another table(Validation )which I want to show or hide based on the validation number.
I've tried select (select columns from table where validation number=3) from validation, but it has not provided the desired result.
I have also tried storing the result of this query in a variable and calling it in the other query but this also has not worked. Please help.