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.
我正在尝试通过 csv 文件填充表格。我的字段之一是指定字段创建时间的日期时间,所以我想插入 datetime('now') 值...
您现在如何将此字段创建到 csv 文件中?
这是不可能的。
SQLite 没有单独的日期/时间数据类型;日期字符串只是字符串。
此外,CSV 并没有真正的数据类型。所有字段都按原样读取,不以任何方式解释。