私は以下のような手順を持っています:
SET serveroutput ON
DECLARE
TYPE list_of_names_t
IS TABLE OF emp.emp_index%TYPE;
ignoreIndexes LIST_OF_NAMES_T := List_of_names_t();
BEGIN
-- Logic here which fills the values in the collection ignoreIndexes and considerIndexes
-- Line XX
END;
XX行目に、以下の行を追加したい
SELECT * FROM emp WHERE emp_index NOT IN ignoreIndexes
しかし、正しい構文を取得できません。それを可能にする方法は?