Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
烦人的是,sqlite3 将引号添加到列表文本文件中的条目中,其中条目中存在逗号、句点或括号。我使用的代码是:
.mode 选项卡 .import ./file.txt TableForFile
这给了我,作为下面的例子,第一个条目是文本文件中的内容
自然 --> 自然
科学(纽约,纽约)-->“科学(纽约,纽约)”
这使我无法在我的数据库中正确地进行连接
Excel 实际上是通过添加引号来导出电子表格的,因此这不是 sqlite3 中的导入问题。我将不得不通过并编辑带引号的文件然后导入,它应该可以正常工作。