create a plsql object

Solutions on MaxInterview for create a plsql object by the best coders in the world

showing results for - "create a plsql object"
Giulia
31 Feb 2018
1CREATE TYPE emp_object AS OBJECT(
2emp_no NUMBER,
3emp_name VARCHAR2(50),
4salary NUMBER,
5manager NUMBER,
6CONSTRUCTOR FUNCTION emp_object(p_emp_no NUMBER, p_emp_name VARCHAR2,
7p_salary NUMBER) RETURN SELF AS RESULT),
8MEMBER PROCEDURE insert_records,
9MEMBER PROCEDURE display_records);
10/
similar questions
queries leading to this page
create a plsql object