I have a column in hive table list_ids
which is a list of ids stored as comma separated string.
how can I write a query for this column to check if it stores a particular id
Example:
list_ids = "abc,cde,efg"
I want to something like
select * from table_name where list_ids contains cde;