Create an empty table tblUser1 with same structure as tblUser

Amatya
Posted by Amatya under Sql Server category on | Points: 40 | Views : 806
This Stored Procedure will create an empty table with same structure

Create table tblUser1 as select * from tblUser where 1=2;


Thanks
Amatya

Comments or Responses

Login to post response