All expressions used in pl/sql statements are processed using the server's main SQL executor. For example, when you write a pl/sql statement like
IF expression
THEN ...
For example, if we have declared two integer variables x
and y
, and we write
IF x < y THEN ...