Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Cursors

A cursor is a structure that allows you to go over records sequentially, and perform processing based on the result.

  • Cursor Overview — Structure for traversing and processing results sequentially.
  • DECLARE CURSOR — Declares a cursor which can be used inside stored programs.
  • OPEN — Open a previously declared cursor.
  • FETCH — Fetch a row from a cursor.
  • CLOSE — Close a previously opened cursor.