我想将存储过程的结果插入到临时表中,如下所示:
CREATE temporary TABLE NEWBalance (VendorAmount NUMERIC(15,2),
UserBalanceAmount NUMERIC(15,2));
INSERT NEWBalance call SP VenAccNo,PeopleId;
但这会产生错误:
Error Code: 1064. You have an error in your SQL syntax; check
the manual that corresponds to your MySQL server version for
the right syntax to use near 'call SP VenAccNo,PeopleId' at line 1
有没有办法做到这一点?