Postgresql – Batch Insert: Using Single vs. Multiple Statements
In a single transaction, is there any significant performance difference between doing batch insert with a single statement like: -- BEGIN TRANSACTION INSERT INTO films (code, title, did, date_prod, kind) VALUES ('B6717', 'Tampopo', 110, '1985-02-10', 'Comedy'), ('HG120', 'The Dinner Game',…