Hi All,
I have a requirement where user will put multiple strings with COMMA and without single quotes e.g.
orgcode
29A, 27B, 238C, 455VV
Now these are four different strings, I want to pass them in Oracle SQL IN statement as follow:
SELECT * from TABLE1 WHERE orgcode IN ('29A', '27B', '238C', '455VV');
My question is how can I easily put orgcode with quoted strings as shown above.
Thanks