gpt4 book ai didi

MySQL - 使用 unicode 执行文本文件会导致 "question marks"

转载 作者:行者123 更新时间:2023-11-30 01:37:35 24 4
gpt4 key购买 nike

表:

CREATE TABLE test (test VARCHAR(10));

test.sql:

INSERT INTO test VALUES ('тест');

在bash中:

$ mysql --version
mysql Ver 14.14 Distrib 5.5.31, for debian-linux-gnu (x86_64) using readline 6.2
$ file -bi test.sql
text/plain; charset=utf-8
$ mysql --database=... --user=... -p --default-character-set=utf8 < test.sql

结果

mysql> select * from test;
+------+
| test |
+------+
| ???? |
+------+

如何正确执行test.sql

最佳答案

尝试使用 utf8 作为表本身的默认字符集,这样您就不会使用某种默认的拉丁编码。

CREATE TABLE test (test VARCHAR(10)) DEFAULT CHARSET=UTF8;

关于MySQL - 使用 unicode 执行文本文件会导致 "question marks",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16637179/

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