Obsidian/Recognition/Programing/Oracle/배열선언.md

145 B

-- 선언
type arry_Spec_Type istableofvarchar2(10)indexbybinary_integer;
arry_Spec arry_Spec_Type;

-- 사용
arry_Spec(1) := 'C' ;