我有一个 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 兼容的值?