create a table employee
Answers
Answered by
4
PLEASE REFER THE ATTACHMENT AND LIKES AND MRK AS BRAINLIEST
Attachments:

Answered by
2
- 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;
Steps to create a table
I have spent my own time to answer your question.
As appreciating my efforts mark my answer as the brainiest
Similar questions