I have 2 tables
question:
+-----------+-------------------------+
|question id| help_ref |
+-----------+-------------------------+
| 1 | 1001,1002,1004 |
+-----------+-------------------------+
| 2 | 1005,1002,1001 |
+-----------+-------------------------
help:
+--------------------+
| id | text |
+--------------------+
| 1001 | sjfdisfidif |
+--------------------+
| 1002 | dfdjdjdjjd |
+--------------------+
| 1003 | blafdsjdidjd|
+--------------------+
| 1004 | somethibngjd|
+--------------------+
basically I want to join the data from the help table by using the help_ref column. thank you