The column contains data separated by a comma.
I am passing comma-separated values as parameter in the stored procedure.
I want to see the output as below
If I pass "Abc,Ple" - Rows returned would be 1,3,4,5
If I pass "Abc" - Rows returned would be 4,5
If I pass "App" - Rows returned would be 1,2,5
How can I accomplish this in Oracle? If I pass "App,Ple" - Rows returned would 1,2,3,4,5