I am new in Golang,
- I have csv file which have data looks like this
field1,field2
1.1,2
1.2,3
1.3,2
- i want to insert all csv data into db table using golang without using for loop .. i am using postgres database
also don't want to use sql raw query
i am using gorm ORM
COPY
. – Butterfat