How to Create Table Based on Another Table SQL Server 2008

4:52 AM

1. Create Table From another table and its values


SELECT * INTO newtable_employe from Employees

How to Create Table Based on Another Table SQL Server 2008
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
How to Create Table Based on Another Table SQL Server 2008
SQL Server 2008 - Create Table From another table (column only)
Thanks for visiting :)

You Might Also Like

0 comments