MySQL 与日语字符

发布于 2025-01-07 02:08:15 字数 268 浏览 0 评论 0原文

我试图弄清楚如何创建一个表,以便我可以在其中插入日语名字。现在我有:

Type: InnoDB
Encoding: UTF-8 Unicode (utf8)
Collation: utf8_general_ci

但是,当我插入字符时,它显示为 ????。当我使用 SELECT 检索数据时,它也显示为 ????。我需要做什么才能正确存储和检索日语字符(汉字、平假名和片假名)?

I am trying to figure out how to create a table such that I can insert Japanese names into it. Right now I have:

Type: InnoDB
Encoding: UTF-8 Unicode (utf8)
Collation: utf8_general_ci

However, when I insert the characters, it shows up as ????. And when I retrieve the data using SELECT, it also shows up as ????. What do I need to do such that I can properly store and retrieve Japanese characters (kanji, hiragana, and katakana)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聊慰 2025-01-14 02:08:15

charset utf8 进行 ALTER 解决了该问题:

ALTER TABLE title MODIFY 
    column VARCHAR (100)
    CHARACTER SET utf8
    COLLATE utf8_unicode_ci;

Doing an ALTER to charset utf8 solved the issue:

ALTER TABLE title MODIFY 
    column VARCHAR (100)
    CHARACTER SET utf8
    COLLATE utf8_unicode_ci;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文