mysql中的数据移植

发布于 2024-08-13 09:39:16 字数 133 浏览 0 评论 0原文

在将数据从一个 mysql 数据库移植到另一个数据库时,出现了一些问题,例如在一个名为“story”的字段中,撇号已转换为“”。为什么会发生这种情况?我现在应该做什么来纠正新数据库?

我只有两个数据库的 phpmyadmin 访问权限。

While porting data from one mysql database to another there have come some issues like appostrophes have been converted into †in a field called story. Why did this happen and what should I do now to correct the new database?

I have only the phpmyadmin access of the two databases.

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

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

发布评论

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

评论(1

初与友歌 2024-08-20 09:39:16

查看数据库使用的字符集。您可以通过在 MySQL 客户端中输入 \s 来完成此操作。示例输出为:

Server characterset:    latin1
Db     characterset:    latin1
Client characterset:    latin1
Conn.  characterset:    latin1

您得到什么字符集以及您期望什么?

Take a look at the charatersets used by your database. You can do this by entering \s in the MySQL client. Example output is:

Server characterset:    latin1
Db     characterset:    latin1
Client characterset:    latin1
Conn.  characterset:    latin1

What charactersets do you get and what do you expect?

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