RECORDS (1) 썸네일형 리스트형 013 - [Oracle PL/SQL] Records - %type What is a PL/SQL Record A PL/SQL record is a composite data structure that is a group of related data stored in fields. Each field in the PL/SQL record has its own name and data type. Declaring a PL/SQL Record 1- programmer-defined records. 2- table-based record. %Rowtype 3- cursor-based record. ( will be covered later ) # 아래 2가지 표현 방식은 동일한 방식이다. DECLARE TYPE t_EMP IS RECORD ( V_EMP_id employees.. 이전 1 다음