I have have a column name MyRoles that contains a list of items (integers) stored in a field named UserRoles. I want to write a query that checks to see if a specific item is in the list. The list will look like this: "1,2,3"
I can't use WHERE MyRoles
What should the query look like?
This is similar to what I am thinking:
SELECT *
FROM MyTable
WHERE MyRoles CONTAINS ('1')
I am using POSTGRES 8.4
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
The fact that no answer was easy to implement and would take me farther down an ugly road really makes clear that a normalized database is always the best bet.
Thanks to everyone who answered!