0

我有一个 Drupal 6.25 数据库,正在尝试迁移到 Wordpress (v3.4.1)。我可以将内容复制到 Wordpress 中,但是在评论方面,我似乎无法将thread列(在 Drupal 评论表中)转换为comment_parent(在 Wordpress wp_comments 中)。

这是我正在使用的代码(取自教程):

INSERT INTO `mywordpress`.wp_comments
(comment_post_ID, comment_date, comment_content, comment_parent, comment_author,
comment_author_email, comment_author_url, comment_approved)
SELECT DISTINCT
    nid, FROM_UNIXTIME(timestamp), comment, thread, name,
    mail, homepage, ((status + 1) % 2)
FROM mydrupal.comments;

上述不起作用,因为 Wordpresscomment_parent是 BIGINT 类型,而 Drupalthread列是 VARCHAR,其值例如0a.01.03.00/

如何将这些转换为与 Wordpress 兼容的值?

4

1 回答 1

1

您可以尝试此查询(我已从本教程中获取):

UPDATE IGNORE wordpress.wp_term_relationships, wordpress.wp_term_taxonomy
SET wordpress.wp_term_relationships.term_taxonomy_id = wordpress.wp_term_taxonomy.term_taxonomy_id
WHERE wordpress.wp_term_relationships.term_taxonomy_id = wordpress.wp_term_taxonomy.term_id
于 2012-12-27T13:03:18.457 回答