AI Features

Cursors

Learn how to iterate a group of rows using cursors.

We'll cover the following...

Data manipulation commands like SELECT, UPDATE, and DELETE always work with groups of rows. We can filter using a WHERE clause if we want to process a specific row. However, there might be times we want to process each row sequentially, ...