Hi,
I have created bellow procedure
"CREATE OR REPLACE PROCEDURE prawin1(registrationid NUMBER, firstname CHAR,
lastname CHAR, email VARCHAR2, dateofbirth date, age NUMBER) IS
BEGIN
INSERT INTO prawin62 VALUES (registrationid, firstname, lastname, email, dateofbirth, age);
END;
when I...