The OPEN statement opens a cursor and adds it to the list of result sets returned by the procedure.
OPEN <cursor_name> 
cursor_name
is the name of a cursor you want to open. The cursor must have been declared by the DECLARE CURSOR statement earlier in the procedure.