What is missing from the T-SQL statement below for creating and using a cursor?
DECLARE mycursor CURSOR FOR SELECT * FROM Vendor FETCH NEXT FROM mycursor;

A.
KEYSET
B.
OPEN
C.
STATIC
D.
SCROLL
Explanation:
You need to open the CURSOR before you can call FETCH.