PostgreSQL 12.
with w as( 
  select p1,p2 from t1
)
insert into t2 select * from w;
Как вставить в t2 только часть полей без перечисления полного списка добавляемых полей?
PostgreSQL 12.
with w as( 
  select p1,p2 from t1
)
insert into t2 select * from w;



