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
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
