问题
I've created a temporary table DETAILS
and follow the same syntax of creating and inserting in it. But I have not received any result set However, the CREATE
and INSERT
statements ran successfully and the Row was also affected in the INSERT statement . But the result set was empty when I ran the last SELECT
statement to view the record .
DROP TABLE DETAILS ;
CREATE GLOBAL TEMPORARY TABLE DETAILS AS (
SELECT ins_id , firstname , pages FROM
INSTRUCTOR)DEFINITION ONLY;
INSERT INTO DETAILS
SELECT ins_id , firstname , pages
FROM INSTRUCTOR WHERE ins_id = '1';
SELECT * FROM DETAILS ;
回答1:
If you want to preserve rows in CGTT after commit, you have to specify ON COMMIT PRESERVE ROWS
option of the CREATE GLOBAL TEMPORARY TABLE statement.ON COMMIT DELETE ROWS
option is in effect otherwise, and such a table is cleared on commit.
来源:https://stackoverflow.com/questions/62209833/sql-temporary-table-issue