boolean valuesonly the values true false amp null


Boolean Values

Only the values TRUE, FALSE, & NULL can be assigned to a Boolean variable. For illustration, given the declaration

DECLARE
done BOOLEAN;
the following statements are legal:
BEGIN
done := FALSE;
WHILE NOT done LOOP
...
END LOOP;


Whenever applied to an expression, the relational operators return  Boolean value. Therefore, the assignment below is legal:

done := (count > 500);

Request for Solution File

Ask an Expert for Answer!!
PL-SQL Programming: boolean valuesonly the values true false amp null
Reference No:- TGS0172494

Expected delivery within 24 Hours