My table structure looks like this
id, Name, Phone
<table>
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Phone numbers</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Peter</td>
<td>1736736,67358467,553463563</td>
</tr>
</tbody>
</table>
So Peter has 3 numbers separated by commas in the phone column
So when a particular number calls I would like to check if it exist in the column phone. Something like
if 67358467 exist in column phone. The issue is the values in this column are separated by commas.
So what SQL query am I to use?