My query:
create table schema1.new_table (like schema2.some table);
gives an error.
Is this due to version 8.1?
Is it possible to use two different schemas while creating table?
My query:
create table schema1.new_table (like schema2.some table);
gives an error.
Is this due to version 8.1?
Is it possible to use two different schemas while creating table?
Simple typo (spot the underscore)?
create table schema1.new_table (like schema2.some_table);
And you probably want to do this including defaults
.