What is a temporory table? How can create temp table? What is ths use of it?thank you

Showing Answers 1 - 1 of 1 Answers

A temporary table is a table where data is stored temporarily during execution of a session and it is deleted as soon as session is over or commit is done. For example a

create global temporary table Name_Des
(
emono  VARCHAR2(12),
ename VARCHAR2(100),
hire_date  DATE,
job    VARCHAR2(10),
)
on commit delete rows;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions