Kết quả cuối cùng của những gì bạn đang làm là:
select * from tableName where LOCATION_ID IN ('1,2,3');
Và những gì bạn cần là cái này:
select * from tableName where LOCATION_ID IN (1,2,3);
Vì vậy, bạn có thể sử dụng cái này:
select * from tableName where LOCATION_ID in (
select regexp_substr(P_LOCATIONS,'[^,]+{1}',1,level)
from dual connect by level <= length(regexp_replace(P_LOCATIONS,'[^,]*')) + 1
);