Write the syntax to create in table,
Answers
Answered by
11
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
Explanation:
hope it will help you
mark me as Braillent ✌✌☺
Answered by
0
Answer:
A table in computer programming is a data structure used to organize information, just as it is on paper. There are many different types of computer-related tables that work in a number of different ways.
Explanation:
Syntax. CREATE TABLE new_table_name AS. SELECT column1, column2,... FROM existing_table_name.
Similar questions