How to export all data from table to an insertable sql format?

后端 未结 6 1323
Happy的楠姐
Happy的楠姐 2020-12-04 05:32

I have a Table (call it A_table) in a database (call it A_db) in Microsoft SQL Server Management Studio, and there are 10 rows.

I have anot

6条回答
  •  长情又很酷
    2020-12-04 05:53

    We just need to use below query to dump one table data into other table.

    Select * into SampleProductTracking_tableDump
    from SampleProductTracking;
    

    SampleProductTracking_tableDump is a new table which will be created automatically when using with above query. It will copy the records from SampleProductTracking to SampleProductTracking_tableDump

    enter image description here

提交回复
热议问题