1
Does anyone know how it is possible in postgresql
take a value within a field of type TEXT
which has comma-separated records to use in the WHERE
?
Example of field values (35693,35694,35695,35696,35697,35698,35699,713)
Example
Select * from tabela where id = '35693'
Put the value on where
is inside a string separated by comma, how to break and compare?