星期六 , 5 4 月 2025

如何给自定义表导入另外一个数据库的表的部分字段

比方说其他类型网站的数据库的表里有很多没用的字段,你在wordpress里的表单的字段去除了很多没用的字段,但是部分字段都还是重叠的状态,所以要确保被导入的表的字段符合要导入的表的字段,不然无法导入;

确保两个数据库相邻,去mysql后台运行sql命令:

-- Make sure you're in the WordPress database
USE your_wordpress_database_name;

-- Import data from the wz_enquiry table to wp_feedback_submissions
INSERT INTO wp_feedback_submissions 
(submission_date, siteid, pagename, pageurl, customer, email, company, phone, content)
SELECT 
    IFNULL(add_time, NOW()) as submission_date,
    IFNULL(CONVERT(siteid, CHAR), '') as siteid,
    IFNULL(pagename, '') as pagename,
    IFNULL(pageurl, '') as pageurl,
    IFNULL(customer, '') as customer,
    IFNULL(email, '') as email,
    IFNULL(company, '') as company,
    IFNULL(phone, '') as phone,
    IFNULL(content, '') as content
FROM other_database_name.wz_enquiry;

如果你有其他网站的数据库,你首先在你wp数据库旁边新建一个数据库,然后将所有数据表导入到这个数据库,这样就好方便操作。

几个相关的命令

  • SHOW CREATE TABLE wp_submission_table, 展示创建表的sql命令,可以在新的数据库里立刻创建;

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注