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

10 lines
145 B
Markdown
Raw Permalink Normal View History

2023-08-14 16:19:25 +00:00
```SQL
-- 선언
type arry_Spec_Type istableofvarchar2(10)indexbybinary_integer;
arry_Spec arry_Spec_Type;
-- 사용
arry_Spec(1) := 'C' ;
```