gpt4 book ai didi

MySQL导入问题

转载 作者:行者123 更新时间:2023-11-29 21:47:07 24 4
gpt4 key购买 nike

我的 sql 脚本有这些符号 - 而不是 '

当我导入所有带有 ' 的文本时,它会被截断,因此文本丢失。 (使用 WordPress)如何在不进行这些剪切的情况下导入我的数据库脚本?有没有办法在导入时将符号再次转换为 ' ? (是的,我在导入时选择了 utf8,是的,所有表都有 CHARSET=utf8)

最佳答案

您是否在文本编辑器中打开了数据库文件?如果是这样,它可能会弄乱其字符集。

您可以通过执行一些 SQL 查询来修复它。

这里有一些 example code这解决了类似的问题。

UPDATE wp_posts SET post_content = REPLACE(post_content, '“', '“');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'â€', '”');
UPDATE wp_posts SET post_content = REPLACE(post_content, '’', '’');
UPDATE wp_posts SET post_content = REPLACE(post_content, '‘', '‘');
UPDATE wp_posts SET post_content = REPLACE(post_content, '—', '–');
UPDATE wp_posts SET post_content = REPLACE(post_content, '–', '—');
UPDATE wp_posts SET post_content = REPLACE(post_content, '•', '-');
UPDATE wp_posts SET post_content = REPLACE(post_content, '…', '…');

关于MySQL导入问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34024417/

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