plsql IF-THEN-ELSE Statement

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Syntax

  • IF [condition 1] THEN

  • [statements to execute when condition 1 is TRUE];

  • ELSIF [condition 2] THEN

  • [statements to execute when condition 2 is TRUE];

  • ELSE

  • [statements to execute when both condition 1 & condition 2 are FALSE];

  • END IF;



Got any plsql Question?