Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

procedimento armazenado mysql:parâmetro out


Não é possível replicar. Funcionou bem para mim:
mysql> CALL my_sqrt(4, @out_value);
Query OK, 0 rows affected (0.00 sec)

mysql> SELECT @out_value;
+------------+
| @out_value |
+------------+
| 2          | 
+------------+
1 row in set (0.00 sec)

Talvez você deva colar a mensagem de erro inteira em vez de resumi-la.