The following are the differences of IF-THEN-ELSE used in VB , PL/SQL and UNIX shell scripts :
1) VB :
if ( condition ) then
some_statements
else if ( condition )
other_statements
else
final_statementsend if
2) PL/SQL :
if ( condition ) then
some_statements ;
elsif ( condition )
other_statements ;
else
final_statements ;end if ;
UNIX :
if ( condition ); then
some_statements
eif ( condition );
other_statements
else
final_statements
No comments:
Post a Comment