1.

What Do You Understand By Explicit Cursors?

Answer»

Explicit cursors are defined explicitly USING the CURSOR statement, with a general SYNTAX
CURSOR cursor_name [(parameters)] IS query_expression;
It allows PROCESSING queries that return multiple rows.

Explicit cursors are defined explicitly using the CURSOR statement, with a general syntax −
CURSOR cursor_name [(parameters)] IS query_expression;
It allows processing queries that return multiple rows.



Discussion

No Comment Found