How to Clone or Duplicate a Table with an Existing Table (Reference Table) in MS SQL?

Viewed 10

if you want Clone a table from existing table date you can use following Syntax for SQL

select * into EmpClone from [dbo].Emp ;

select * from EmpClone;

0 Answers
Related