I have CSV file which have a couple of data columns.
The CSV file looks like
field1: Test1
field2: Test2
field3: Test3, Test4, Test5
In this case which library can I use as field terminator I mean if I use this query to insert CSV file into shopifyitem
table as you assume that the data field inserted not correctly
BULK INSERT shopifyitem
FROM 'c:\test.csv'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
So which field terminator can I use?
Thank you so much in advance....