Skip to content

Instantly share code, notes, and snippets.

View PrabhashwaraL's full-sized avatar
💭
Always doing something

Lankesh Prabhashwara PrabhashwaraL

💭
Always doing something
  • Sri Lanka
View GitHub Profile
create type dept_t;
/
create type emp_t as object(
eno number(4),
ename varchar2(15),
edept ref dept_t,
salary number(8,2)
);
/
create type dept_t
/
create type emp_t as object(
empno char(6),
firstname varchar2(12),
lastname varchar2(15),
workdept ref dept_t,
sex char(1),
birthday date,