SQL Data exporting

SQL Server
SQL Server

 

We were recently asked to export data from a MS SQL Server to another MS SQL database table. So I thought putting a quick reference for how to do this may help others to export their data.

 

SELECT *
INTO [database].[NewTable]
FROM [localTable]

 

Leave a Reply

Your email address will not be published. Required fields are marked *