Answers for "call object contructor and call methods of object"

SQL
0

call object contructor and call methods of object

DECLARE
guru_emp_det emp_object;
BEGIN
guru_emp_det:=emp_object(1005,’RRR',20000,1000);
guru_emp_det.display_records;
guru_emp_det.insert_records;
COMMIT;
END;
Posted by: Guest on May-17-2021

Code answers related to "call object contructor and call methods of object"

Code answers related to "SQL"

Browse Popular Code Answers by Language