mysql中的数据移植
在将数据从一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看数据库使用的字符集。您可以通过在 MySQL 客户端中输入
\s
来完成此操作。示例输出为:您得到什么字符集以及您期望什么?
Take a look at the charatersets used by your database. You can do this by entering
\s
in the MySQL client. Example output is:What charactersets do you get and what do you expect?