标签:last 存储过程 修改 tpi select 返回 stp 需要 rom
当存储过程中有多个select 语句时,想只返回最后一条语句的返回值,前面的语句需要修改:
由select @lastpid := l_lastpid from tb_lastpid limit 1;
改成:
select l_lastpid INTO @lastpid from tb_lastpid limit 1;
标签:last 存储过程 修改 tpi select 返回 stp 需要 rom
原文地址:http://www.cnblogs.com/zkx001/p/6002662.html