GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Database  >  SQL Server

 Print  |  
Question:  How will you copy the structure of a table without copying the data?



September 09, 2005 01:25:51 #2
 rahultripathi   Member Since: September 2005    Total Comments: 22 

RE: How will you copy the structure of a table without...
 

create table newtable AS select * from oldtable where 1=2

rahultripathi@myway.com

     

 

Back To Question