-1

我有一个 csv 文件,其中包含一列,其中包含双引号内的值。双引号内的几个值也包含逗号(例如“Alexandar, the Third”)。

我正在使用以下 hxtt 属性从位置 loc 读取文件并读取标题和双引号:jdbc:csv:////?_CSV_Header=true;_CSV_Quoter=";

是否有任何 hxtt 属性可用于读取双引号内的完整内容,或者是否可以在 sql 查询中处理它?请你帮助我好吗?另外,请注意我正在使用 sql 查询从 csv 文件中读取值。

4

1 回答 1

0

You could have your values delimited by single quotes instead of double quotes. Commas won't be an issue then. But if your values contain single quotes(or other special characters) you need to excape them using another single quote. So 'Alexander's Castle' would be 'Alexander''s Castle'.

于 2015-08-09T11:24:06.450 回答