I want to know how to fetch record from cursor in SQL server.
Thank you.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vikrant MorePosted Sep 11, 2012, 4:58 AM
1] Declare Cursor
2] Open Cursor
3] Fetch Cursor
4] Deallocate Cursor
5] Close Cursor
#1 To declare cursor use following syntax,
DECLARE
FOR
Adil AnsariPosted Aug 30, 2012, 8:57 AM