Is PostgreSQL able to perform multi-row inserts using a single INSERT
statement as shown below ?
INSERT INTO table ( col1, col2, col3 )
VALUES ( value1, value2, value3 ),
( value4, value5, value6 ),
( value7, value8, value9 )
Yes, I have looked through the PostgreSQL documentation, and it DOES
NOT appear as though it can.
I was hoping that I did not read it right.
/Alan