Have you tried inheritance from one table to the new table?Hello pgsql-sql, Is anybody know how create field in a new table with data type accuiring from a field in other table? For example: create table new_table ( name other_table.name%TYPE );
CREATE TABLE new_table (new_column)
INHERITS (old_table)
All columns in 'old_table' will be inclueded in 'new_table' plus the column 'new_column'.