插入某些列

这个问题在这里已经有了答案:

  • 插入...值(SELECT ... FROM ...)21个答案

  • insert into table2
    (
        col2, col3, col4
    )
    select col1, col2, col3
    from table1
    

    您可以结合选择和插入为了做到这一点。 这是如何:

    insert into table2 (col2, col3, col4)
    select col1, col2, col3
    from table1
    

    你只需要在INSERT使用SELECT...FROM来选择你想要的列。

    INSERT INTO table2
    (
        column2, column3, column4
    )
    SELECT column1, column2, column3
    FROM table1
    
    链接地址: http://www.djcxy.com/p/94307.html

    上一篇: Insert into certain columns

    下一篇: Can I copy one RDS to another RDS, of which it is a subset?