Untitled

Anonymous
plain_text
09/30/2024 9:08 AM
328 B
18
Indexable
create or replace function abd
return varchar as
c varchar(20);
begin
select address into c from students where name='neethu';
return c;
end abd;
/
declare
c varchar(20);
begin
c:=abd();
dbms_output.put_line('Address ='||c);
end;
/
Editor is loading...
Leave a Comment