What is the cursor in PL SQL?
I'll answer
Earn 20 gold coins for an accepted answer.20
Earn 20 gold coins for an accepted answer.
40more
40more
Studied at the University of Tokyo, Lives in Tokyo, Japan.
A cursor is a temporary work area created in the system memory when a SQL statement is executed. A cursor contains information on a select statement and the rows of data accessed by it. This temporary work area is used to store the data retrieved from the database, and manipulate this data.
2023-05-10 16:08:46
评论(499)
Helpful(122)
Helpful
Helpful(2)

Noah Thompson
QuesHub.com delivers expert answers and knowledge to you.
A cursor is a temporary work area created in the system memory when a SQL statement is executed. A cursor contains information on a select statement and the rows of data accessed by it. This temporary work area is used to store the data retrieved from the database, and manipulate this data.