0
What is cursour?
what is the cursour and how its work in sql server?
1 Answer
+ 2
Cursor stands for current set of records and it's usually used for sorting out data using cycles.
For example
DECLARE @CURSOR_NAME AS INT;
OPEN @CURSOR_NAME
FETCH NEXT FROM @CURSOR_NAME INTO