PPT Slide
Structured Types and References
- Create structured types (and references)
create type Person_t as (
name Varchar(40), birthyear Integer
create type Emp_t under Person_t as (
salary Integer, dept Ref(Dept_t)
create type Exec_t under Emp_t as (
create type Student_t under Person_t as (