Does anyone know how it is possible in postgresql
to get a value inside a field of type TEXT
that has comma-separated records to use in WHERE
?
Example of values in the field (35693,35694,35695,35696,35697,35698,35699,713)
Example
Select * from tabela where id = '35693'
But the value in where
is inside a comma-separated string, like breaking and comparing?