Re: [SQL] SQL command Error: "create table ... Like parentTable including defaults"

2005-05-27 Thread Michael Fuhr
On Fri, May 27, 2005 at 11:48:39AM -0400, Ying Lu wrote: > > 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" ... '

[SQL] SQL command Error: "create table ... Like parentTable including defaults"

2005-05-27 Thread Ying Lu
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 t