Computer Science, asked by anirudhchauhan221144, 4 months ago

Write SQL commands to create the following EMPLOYEE table:

Answers

Answered by singhmanjinder00950
2

Answer:

CREATE TABLE table_name AS.

SELECT column1, column2,...

FROM old_table_name WHERE ..... ;

The following SQL creates a copy of the employee table.

CREATE TABLE EmployeeCopy AS.

SELECT EmployeeID, FirstName, Email.

FROM Employee;

Similar questions