Please disable your adblock and script blockers to view this page

Search this blog

Showing posts with label PL/SQL CASE Statement. Show all posts
Showing posts with label PL/SQL CASE Statement. Show all posts

Thursday 22 March 2018

PL/SQL CASE Statement, Decision Making Statement in PL/SQL


Like real life in programming sometimes we need to execute some code on a specific condition, PL/SQL CASE statement allows us to execute a sequence of instructions based on a selector (A variable, function, expression etc)
and if selector value is equal to value or expression in WHEN clause then corresponding THEN clause will execute and process the statements