“select * into table” Will it work for inserting data into existing table

后端 未结 4 2007
面向向阳花
面向向阳花 2021-02-05 10:58

I am trying to insert data from one of my existing table into another existing table.

Is it possible to insert data into any existing table using select * into

4条回答
  •  你的背包
    2021-02-05 11:18

    @Ryan Chase Can you do this by selecting all columns using *? Yes!

    INSERT INTO yourtable2 SELECT * FROM yourtable1

提交回复
热议问题