skip to Main Content

Postgresql – Bulk insert into a postgres table that has an array column with parameterized query

I have the following table: ┌────────────────┬─────────────────────────────┬───────────┬──────────┬──────────────────────────────────────────────────────────────────┐ │ Column │ Type │ Collation │ Nullable │ Default │ ├────────────────┼─────────────────────────────┼───────────┼──────────┼──────────────────────────────────────────────────────────────────┤ │ id │ bigint │ │ not null │ nextval('"HistoricalDataAggregatorWorkOrders_id_seq"'::regclass) ││ │ inputTimeRange │ tstzrange │ │ not null │ │ │…

VIEW QUESTION
Back To Top
Search