Exceptions in PL/SQL
Exceptions in PL/SQL
Exceptions in PL/SQL
Table created.
SQL> insert into student values(22,'sudhakar',32);
1 row created.
SQL> insert into student values(77,'praneeth',28);
1 row created.
SQL> insert into student values(55,'rajesh',27);
1 row created.
SQL> select * from student;
SID
---------22
77
55
SNAME
AGE
--------------- ---------sudhakar
32
praneeth
28
rajesh
27
SQL> @ndf_excep.sql;
Enter value for id: 88
old
5: id:=&id;
new
5: id:=88;
no studnet with the roll number 88
PL/SQL procedure successfully completed.