我有一个 CSV 文件,其中包含如下行:
"header1", "header2"
"header
with many lines", """header with quotations in it"""
在excel中应该显示为:
header1, header2
header "header with quotations in it"
with many lines
我想将其导入 SQL Server 数据库并保留所有字符和新行,因为它们会出现在 Excel 中。批量插入功能会支持这个吗?如果是这样,怎么做?