Replicate Table Structure [message #239870] |
Wed, 23 May 2007 09:04 |
marisa
Messages: 4 Registered: April 2007
|
Junior Member |
|
|
hi guys is there any way to create table structure from existing
table without the table data of existing table.
please help me with this
thanks in advance
|
|
|
|
|
Re: Replicate Table Structure [message #239967 is a reply to message #239959] |
Wed, 23 May 2007 14:40 |
|
Michel Cadot
Messages: 68718 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
CREATE TABLE ABC
AS
SELECT * FROM ABC_123
WHERE ROWNUM<0;
CREATE TABLE ABC
AS
SELECT * FROM ABC_123
WHERE 2=3;
...
We can repeat ab finitum examples with impossible condition this does not bring anything more than the first answer.
Regards
Michel
|
|
|