FORWARD_ONLY Cursor in SQL Server

The FORWARD_ONLY Cursor in SQL Server does not support scrolling. This SQL FORWARD_ONLY cursor can only move from the first row to last and does not support the other way (scrolling backward). It means the SQL FORWARD_ONLY Cursors support the FETCH_ONLY option, and it will return an error for all the remaining FETCH options. SQL … Read more