0

What is cursour?

what is the cursour and how its work in sql server?

16th Nov 2018, 5:34 PM
Harshvardhan Dhule
Harshvardhan Dhule - avatar
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
18th Nov 2018, 4:32 PM
Kirill Pereshitov
Kirill Pereshitov - avatar