发布网友 发布时间:2022-04-22 00:14
共1个回答
热心网友 时间:2022-05-01 05:07
想确认mysql有这样的语法么?
select money from account where id = accountPay into @money;
select id from account where id = accountAccept into @anum;
改成下面试试
select money into @money from account where id = accountPay;
select id into @anum from account where id = accountAccept;