I want to insert the results of a stored procedure into a temporary table, for example:
CREATE temporary TABLE NEWBalance (VendorAmount NUMERIC(15,2), UserBalanceAmount NUMERIC(15,2)); INSERT NEWBalance call SP VenAccNo,PeopleId;
But this causes an error:
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
Is there any way to do this?
source share