gpt4 book ai didi

mysql - 非常规字符的不正确字符串值错误

转载 作者:行者123 更新时间:2023-12-05 05:41:56 26 4
gpt4 key购买 nike

所以我正在使用包装器从 instagram 中获取用户数据。我想为用户选择显示名称,并将它们存储在 MYSQL 数据库中。我在插入一些显示名称时遇到问题,特别是处理不正确的字符串值错误:

现在,我之前已经用重音符号、带变音符号的字母等处理过这个问题。解决方案是将排序规则更改为 utf8 下的 utf8_general_ci字符集。

如您所见,我提取的一些显示名称具有非常独特的字符,我完全不确定 mySQL 能否识别这些字符,即:

ᛘ𝕰𝖆𝖗𝖙𝖍 𝕾𝖕𝖎𝖗𝖎𝖙𝖚𝖘𐂂®

所以我收到:

Error Code: 1366. Incorrect string value: '\xF0\x9D\x99\x87\xF0\x9D...' for column 'dummy' at row 1

这是我的sql代码

CREATE TABLE test_table(
id INT AUTO_INCREMENT,
dummy VARCHAR(255),
PRIMARY KEY(id)
);

INSERT INTO test_table (dummy)
VALUES ('ᛘ𝕰𝖆𝖗𝖙𝖍 𝕾𝖕𝖎𝖗𝖎𝖙𝖚𝖘𐂂®');

有没有想过可以处理这样的字符的正确字符集 + 归类对?不知道去哪里寻找解决方案,所以我来这里看看是否有人处理过这个问题。

P.S.,我也尝试过 utf8mb4 字符集与 utf8mb4_unicode_ciutf8mb4_bin 归类。

最佳答案

您显示的字符要求该列使用 utf8mb4 编码。目前看来您的列是使用 utf8mb3 编码定义的。

MySQL 使用名称“utf8”的方式很复杂,如https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-utf8mb3.html 中所述。 :

Note

Historically, MySQL has used utf8 as an alias for utf8mb3;beginning with MySQL 8.0.28, utf8mb3 is used exclusively in the outputof SHOW statements and in Information Schema tables when thischaracter set is meant.

At some point in the future utf8 is expected to become a reference toutf8mb4. To avoid ambiguity about the meaning of utf8, considerspecifying utf8mb4 explicitly for character set references instead ofutf8.

You should also be aware that the utf8mb3 character set is deprecatedand you should expect it to be removed in a future MySQL release.Please use utf8mb4 instead.

您可能已尝试通过以下方式更改表格:

ALTER TABLE test_table CHARSET=utf8mb4;

但这只会更改默认 字符集,如果您随后向表中添加新列,则会使用该字符集。它不会更改任何当前列。为此:

ALTER TABLE test_table MODIFY COLUMN dummy VARCHAR(255) CHARACTER SET utf8mb4;

或者在一个语句中转换表中的所有字符串或文本列:

ALTER TABLE test_table CONVERT TO CHARACTER SET utf8mb4;

关于mysql - 非常规字符的不正确字符串值错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72180043/

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