Computer Science, asked by manonmanikannanspk, 7 months ago

create a table employee​

Answers

Answered by agamdeep34
4

PLEASE REFER THE ATTACHMENT AND LIKES AND MRK AS BRAINLIEST

Attachments:
Answered by poornavarshithaa00
2
  1. CREATE TABLE table_name AS.
  2. SELECT column1, column2,...
  3. FROM old_table_name WHERE ..... ;
  4. The following SQL creates a copy of the employee table.
  5. CREATE TABLE EmployeeCopy AS.
  6. SELECT EmployeeID, FirstName, Email.
  7. 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