I have a table Company
. Now I need to copy the contents of table Company
in a new table Employee
(that too while creating the Employee
table). I just used the query shown below, but its showing an ERROR.
Create Table Employee as (Select * from Company)
Is there any other solution for this....?