While importing cvs files into database, it happens that there is a comma in the content itself. For example for the field address, it might be a valid content "1330 XYZ Ave, Washington, USA".Using MySQL, there is an option to skip the comma inside a field. Here is the option:
fields Escaped by '"'
So, my question is that do we have anything for MSSQL when using Bulk insert command?
Anything like (see last line)
bulk insert table1 from 'file_path.csv' with (
rowterminated by '\n',
filedterminated by ',',
fieldescaped by '"')
Many thanks in advance.