oracle temporary table

Solutions on MaxInterview for oracle temporary table by the best coders in the world

showing results for - "oracle temporary table"
Mira
15 Feb 2020
1CREATE GLOBAL TEMPORARY TABLE my_temp_table (
2    id          NUMBER,
3    description VARCHAR2(20)
4) ON COMMIT DELETE ROWS;