SQL Data exportingNetwork Tips 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]