SQL Server Copy Table

This SQL will create another table from the select statement

SELECT *
INTO table2
FROM table1

Comments

Popular posts from this blog

Parse XML to dynamic object in C#

C# Updating GUI from different thread