oracle建立一張與其他表相同表結構的空表

we6100發表於2014-04-06

--只是建立ta表,與emp表結構相同,並不新增資料

--這種構造與現存表相同結構的表,是不會將comment帶過來的

create table t1 as select * from scott.emp where 1=0; 



--建立tb表,結構與dept結構相同,將dept表中的資料匯入其中

--這種構造與現存表相同結構的表,是不會將comment帶過來的:

create table t2 as select * from scott.dept where 1=1;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27500440/viewspace-1136915/,如需轉載,請註明出處,否則將追究法律責任。

相關文章