How to Create Table Based on Another Table SQL Server 2008
4:52 AM1. Create Table From another table and its values
SELECT * INTO newtable_employe from Employees
SQL Server 2008 - Create Table From another table and its values |
2. Create Table From another table (column only)
SELECT * INTO newtable_employe from Employees Where 1=2
SQL Server 2008 - Create Table From another table (column only) |
0 comments