hi ,
I want to split the field by comma and that should check the values in another table and display multiple values as given below.
Here is my table format:
Table1:
======
id : nos
1 12,13,14
2 14
3 14,12
Table2:
=======
id : values
12 PHP
13 JAVA
14 C++
Now , I want output like this:
=============================
1 PHP, JAVA, C++
2 C++
3 C++, PHP
How to fetch this using mysql query?
Thanks in advance.
- Gnaniyar Zubair