Tag: How can you create an empty table from an existing table?
Example will be -.
Select * into student copy from student where 1=2
Here, we are copying the student table to another table with the same structure with no rows copied.
Example will be -.
Select * into student copy from student where 1=2
Here, we are copying the student table to another table with the same structure with no rows copied.