In the code below, un-commenting the meow line results in error.
declare
const_ruchi constant varchar2(5) :='Ruchi' ;
begin
--const_ruchi :='meow';
dbms_output.put_line('Schema Owner is ' || const_ruchi) ;
end;
of what I learned today
declare
const_ruchi constant varchar2(5) :='Ruchi' ;
begin
--const_ruchi :='meow';
dbms_output.put_line('Schema Owner is ' || const_ruchi) ;
end;
No comments:
Post a Comment