First you must create a column that supports text. Although there are several numbers, the way you want to store it, it is impossible to use a numeric field.
CREATE TABLE xxx (
....
sincrozina VARCHAR(255) //defina o tamanho necessário
....);
If you want to add a value in this field, there needs to be a record (as you will create this, I do not know). To increment the field with a value, use the following SQL.
UPDATE xxx SET sincroinza = CONCAT(sincroinza, ",", novo_número) WHERE ....
novo_numero
is the new value you want to enter. To check if a number is in this list, you should do the following:
SELECT * FROM xxx WHERE sincroniza LIKE %numero_buscado%
Where numero_buscado
is the number you want to check. If this query returns the record where the list of numbers is, it is because the value is in the list.
I just put SQL snippets. As you have not provided any code, and little information, you can not help with other implementation details, so you'll have to adapt these SQLs to your code to get the solution.