7

我想将存储过程的结果插入到临时表中,如下所示:

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

有没有办法做到这一点?

4

1 回答 1

9

不幸的是,你仍然不能在 MySql 中做到这一点。

一种可能的解决方案是修改您的 SP 并使其插入到临时表中。

CREATE PROCEDURE your_sp(...)
BEGIN
    -- do your processing
    ...
    -- insert results into a temporary table
    INSERT INTO NEWBalance ...
    SELECT ...;
END

那么你的流程是这样的

CREATE temporary TABLE NEWBalance 
(
 VendorAmount NUMERIC(15,2),
 UserBalanceAmount NUMERIC(15,2)
);

CALL your_sp (...);

-- do your processing on data in a temporary table
...

DROP TEMPORARY TABLE NEWBalance;
于 2013-08-06T05:36:19.820 回答