I have a csv file which has this data that takes them out of a single field.
As you will see, it is not only data from a single field.
In the table where I want to insert this data has the following structure.
The information I want to enter is in the fourth position, in what way can I get empty fields separated by commas in such a way that I reach the desired position?
I get the data through this query from a PostgreSql database
COPY (SELECT descripcion FROM tblarticulos) TO 'D:\productos.csv' DELIMITER ',';
And the data from that csv file will be inserted into a SQL Server database.