Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 1 KB

File metadata and controls

9 lines (7 loc) · 1 KB

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.