I have a table named 'ISSUES'
I have a field in my table named 'PRODUCT_ID'
If i end up having more than 1 product, then multiple product ids get entered into this table seperated by a comma.
for example:
34,567,23
pull the name of each of these products based on another table named 'PRODUCT_INFO'
is there any way to query this field and pull the product name from PRODUCT_INFO for each product in 1 field without exploding it into an array and running another query?