MySQL将一个表的数据插入到另外一张表中


需求:将A表中指定查询条件的数据,插入到B表中。

INSERT INTO ap_base_categories (
    category_name,
    category_id,
    parent_id,
    `level`,
    tree,
    site_code,
    created_at,
    is_leaf,
    platform
) SELECT
    category_name,
    category_id,
    parent_id,
    `level`,
    tree,
    site_code,
    created_at,
    is_leaf,
    platform
FROM
    ap_categories
WHERE
    platform = 1
AND site_code = 'MY';

注意:字段要一一对应。

原创文章,作者:,如若转载,请注明出处:https://blog.ytso.com/276498.html

(0)
上一篇 2022年7月23日
下一篇 2022年7月23日

相关推荐

发表回复

登录后才能评论