go-ozzo / ozzo-dbx

A Go (golang) package that enhances the standard database/sql package by providing powerful data retrieval methods as well as DB-agnostic query building capabilities.
MIT License
636 stars 91 forks source link

Insert more then 1 row? #63

Open kolkov opened 6 years ago

kolkov commented 6 years ago

Hi! Is it possible to insert multiple rows with one insert query? INSERT INTO tbl_name (a,b,c) VALUES(1,2,3),(4,5,6),(7,8,9);