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