Example:
Objective: In this example, We will create a new table with the same structure as the original table, but without any data copied.
SELECT Ecode , FirstName , LastName , Emailaddress FROM Tbl_Emp INTO Tbl_Emp_Copy WHERE 1 = 0
Query:
SELECT * FROM Tbl_Emp_Copy;