Control Statements
If we need to check Some relation or condition between two or more than two variable or expressions than we use conditional statements. Every Programing languages supports this conditional statements, these are.
Simple if
If-then-else
Nested if
Switch case
1: Simple if
Syntax:
If (Condition) then
Statement1;
Statement2;
End if;
In PL/SQL every if condition should end with END IF Statement.
2: If-then-else
Syntax:
If (Condition) then
Statement1;
Else
Statement2;
End if;
3: Nested if
Syntax:
If (Condition) then
If (Condition) then
If (Condition) then
Statement1;
Else
Statement2;
End if;
Else
Statement3;
End if;
Else
Statement4;
End if;
4: Switch case
No comments:
Post a Comment