I have already viewed similar questions but didn't find the answer I am looking for. My table looks like this.
ID Name Group
1 R1 A,B
2 R2 C,D,E
3 R3 A
4 R4 B,E
What I am looking for is able to use the 'Group' field in an IN clause where the IN clause will be a prompt.
Example: Group in ('A','B','C')
I am not a pl/sql expert so would truly appreciate the help!
Note: Changing the table structure is not an option. Previous solutions does not take into consideration passing multiple values which are in the format 'A','B','C' instead of 'A,B,C'