Append
Delete
Make-Table
Update
Answer is Right!
Answer is Wrong!
The correct answer is C. Make-Table.
A. Append is used to add data to an existing table.
B. Delete is used to remove data from a table.
C. Make-Table is used to create a new table.
D. Update is used to modify data in a table.
Here is an example of how to use the Make-Table query to create a new table:
CREATE TABLE MyTable (
ID INT,
Name VARCHAR(255),
Email VARCHAR(255)
);
This query will create a new table called MyTable with three columns: ID, Name, and Email.