Como usar o rótulo goto na função armazenada do MySQL

Eu gostaria de usar goto na função armazenada do MySQL. Como posso usar? O código de amostra é:

if (action = 'D') then
    if (rowcount > 0) then
        DELETE FROM datatable WHERE id = 2;      
    else
       SET p=CONCAT('Can not delete',@b);
       goto ret_label;
    end if;
end if;

Label: ret_label;
return 0;