Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> simple problem
hello
I'd like to do sth like this:
declare
a varchar(100);
begin
select version into a from v$instance;
if (a like '10%') then
@ver10.sql
else
@oldver.sql
end if;
end;
how to write something like that in PL/SQL ? Received on Mon Oct 15 2007 - 11:03:15 CDT
![]() |
![]() |