Saturday, September 19, 2020

RDBMS PLSQL Program 13 get data from user and delete from table

 set serveroutput on

declare

VEno char(6);

begin

VEno := '&VEno';

delete from EMP

where Eno = VEno;

end;

commit;

/

No comments:

Post a Comment

Thanks for showing your interest
I will shortly get back to you