Consider this PL/SQL block :


DECLARE
v_result BOOLEAN;
BEGIN
DELETE
FROM product
WHERE product_id IN (25, 35, 45);
v_result := SQL%ISOPEN;
COMMIT;
END;

What would be the value of v_result if let's say three rows detected?

TRUE, FALSE, NULL, Zero or ... ?


Thanks