【数据库-MySql】函数 - Procedure execution failed 1172 - Result consisted of more than one row

Procedure execution failed 
1172 - Result consisted of more than one row


在函数执行过程中出现:Select语句返回结果是多行数据组成,请使用Where增加限制条件,如果Where得到的结果还是多行结果,请使用Limit来限制读取的行数。

select count(*) ,prescriptionhisid into recordNum,prehisid2 from rcaccept where prescriptionhisid=PreHisId  limit 1;  




你可能感兴趣的:(数据库)