How to create Table without using Create Statement?

 Posted by vishalneeraj-24503 on 11/28/2013 | Category: Sql Server Interview questions | Views: 2669 | Points: 40
Answer:

With the help of Select * Into statement, we can create new table along with rows.

For ex:-

Select * into test from employee_master;


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response