Re: SQL command Error: "create table ... Like parentTable
От | Bricklen Anderson |
---|---|
Тема | Re: SQL command Error: "create table ... Like parentTable |
Дата | |
Msg-id | 42974495.7020503@PresiNET.com обсуждение исходный текст |
Ответ на | SQL command Error: "create table ... Like parentTable including defaults" (Ying Lu <ying_lu@cs.concordia.ca>) |
Список | 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. _______________________________
В списке pgsql-sql по дате отправления: