gpt4 book ai didi

csv - 错误: SQLite import data from file

转载 作者:行者123 更新时间:2023-12-02 01:25:17 25 4
gpt4 key购买 nike

我正在尝试从以逗号分隔的文件加载数据。示例:

A,positive,9619
A095CDB461A1FEED,positive,1

当我尝试在 sqlite3 数据库中加载此文件时,出现错误:

sqlite> .mode csv feature_category
sqlite> .import /home/harit/work/python/what-twitter-speaks/classifier/data/snap_data_collection/db-positiveTweets feature_category;
Error: no such table: feature_category;

尽管该表已经存在。

sqlite> select * from sqlite_master;
table|feature_category|feature_category|2|CREATE TABLE feature_category(feature, category, count)
table|categorycount|categorycount|3|CREATE TABLE categorycount(category, count)

请帮忙,我是 sqlite3 的新手

谢谢

最佳答案

问题似乎出在命令末尾的分号;

尝试

sqlite> .import /home/.../db-positiveTweets feature_category

关于csv - 错误: SQLite import data from file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4290835/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com