How to convert string value returned from oracle apex 20.1 multiselect item into comma separated numbers array
问题 I have a multi select enabled select list. I want to use all the selected ids inside an IN () operator in pl/sql query. Selected values are returned as below, "1","5","4" I want to use em as numbers as below, 1,5,4 My query is like, UPDATE EMPLOYEE SET EMPSTAT = 'Active' WHERE EMPID IN (:P500_EMPIDS); 回答1: This is the employee table: SQL> select * from employee; EMPID EMPSTAT ---------- -------- 1 Inactive 2 Inactive 4 Inactive 5 Inactive SQL> This is a way to split comma-separated values