Creation of Oracle temporary table with same table structure to that of a existing table
问题 How to create a global temporary table with same table structure to that of a existing table? I know this concept is available in SQL server like "select * into #temp123 from abc". But I want to perform the same in Oracle. 回答1: Global temporary tables in Oracle are very different from temporary tables in SQL Server. They are permanent data structures , it is merely the data in them which is temporary (limited to the session or transaction, depending on how a table is defined). Therefore, the