What will you get by the cursor attribute SQL%NOTFOUND?
It returns the Boolean value TRUE if no rows were processed. In PL/SQL, the cursor attribute SQL%NOTFOUND is a boolean attribute that evaluates to TRUE if a cursor fetch returns no rows. It is commonly used to check whether a cursor has reached the end of the result set. Here’s a brief explanation: If SQL%NOTFOUND … Read more