Question:You want to select a row using cursors in the table 'qlist'. Which of the following statements DECLARES a cursor 'qselect' to perform the desired operation?
A DECLARE qselect CURSOR ON SELECT * FROM qlist
B DECLARE qselect CURSOR FOR SELECT * FROM qlist
C DECLARE qlist CURSOR ON SELECT * FROM qselect
D DECLARE qselect CURSOR AS SELECT * FROM qlist
+ AnswerB
+ Report