how will i display the multiple select ids in the dashboard ?
I have a form where there is a multiple select. When the form is submit, the ids for the multiple select is stored in the database as concatenate. For example, multiple select : 3,9,5,1.
The ids of the multiple select is found in a table TABLE1 and the insertion is done in another table TABLE2.
Now I have to display them in a dashboard.
My question is how will i display the multiple select ids in the dashboard ?
I have to do an innerjoin with TABLE1 to retrieve the names of the multiple select ids. I don't know how to do it because the column name for multiple select in TABLE2 is of type text and the column id in TABLE1 is of type int.
Please help me solve this problem.
Thanks in advance
