1

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....?

4

1 回答 1

7

只需使用INTO

Select * into Employee from Company
于 2013-04-23T15:20:50.307 回答