Re: SQL command Error: "create table ... Like parentTable

From: Bricklen Anderson <BAnderson(at)PresiNET(dot)com>
To: Ying Lu <ying_lu(at)cs(dot)concordia(dot)ca>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: SQL command Error: "create table ... Like parentTable
Date: 2005-05-27 16:02:29
Message-ID: 42974495.7020503@PresiNET.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Ying Lu wrote:

> Greetings,
>
> I have a simple question about SQL command :
>
> create table tableName1 LIKE parentTable INCLUDING defaults ;
>
>
> I was trying to create table "tableName1" with the same structure as
> "parentTable" without any data. I got a syntax error: 'syntax error at
> or near "like" ... '
>
> I guess there must be something wrong with my sql command, could
> somebody help?
>
> Thanks a lot,
> Emi

I've never used the "LIKE..INCLUDING" clause before so I can't comment on that,
but as an alternative, you could try a CTAS:
create table tableName1 as select * from parentTable where 1=0; (will not get
the rows, just the structure).

Cheers,

Bricklen
--
_______________________________

This e-mail may be privileged and/or confidential, and the sender does
not waive any related rights and obligations. Any distribution, use or
copying of this e-mail or the information it contains by other than an
intended recipient is unauthorized. If you received this e-mail in
error, please advise me (by return e-mail or otherwise) immediately.
_______________________________

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Michael Fuhr 2005-05-27 16:17:22 Re: SQL command Error: "create table ... Like parentTable including defaults"
Previous Message Ying Lu 2005-05-27 15:48:39 SQL command Error: "create table ... Like parentTable including defaults"