Fügen Sie Daten aus einer anderen Tabelle ein
#PostgreSQL
INSERT INTO table1 (column11, column12, ...)
SELECT column21, column22, ...
FROM table2
[WHERE condition];
Mimisaurio