gpt4 book ai didi

mysql - 无法将 csv 文件导入表中

转载 作者:行者123 更新时间:2023-11-29 19:43:40 25 4
gpt4 key购买 nike

我正在尝试将数据从 csv 文件导入到表中。我使用 MySQL Workbench 创建了该表。这是我在 MySQL 中输入的命令:

LOAD DATA INFILE 'c:/db/test.csv' 
INTO TABLE info
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n'

但是我从 MySQL 收到此错误:

Error Code: 1046. No database selected Select the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar. 0.000 sec

在哪里以及如何添加数据库名称?

最佳答案

您可以将数据库名称的第二行更改如下

INTO TABLE dbname.info 

将 dbname 替换为您的数据库名称。

关于mysql - 无法将 csv 文件导入表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41197838/

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