mysql中存储过程中 有没有return 用法,如mssql 中if @@ERROR =0 
BEGIN
return 0
END
else
BEGIN
return 1
END以上句,翻译到mysql应如何写