if else in plsql
declare
a integer := 30;
b integer := 40;
begin
if (a>10) then
dbms_output.put_line(' a is greater than b');
else
dbms_output.put_line('a is greater than 10');
end if;
dbms_output.put_line('value of a : ' || a);
end;
if else in plsql
declare
a integer := 30;
b integer := 40;
begin
if (a>10) then
dbms_output.put_line(' a is greater than b');
else
dbms_output.put_line('a is greater than 10');
end if;
dbms_output.put_line('value of a : ' || a);
end;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us