0 votes
in PL/SQL by
Explain what Is The Difference In The Usage Of Select Into And Fetch?

1 Answer

0 votes
by

The SELECT INTO clause should be used when the result of the query is known to return a single row. When more than one row is to be returned by the SQL query, then the FETCH clause should be used. If the FETCH clause is not used and the query returns more than one row, then the runtime error is generated in the code.

...