Which of the following queries can create a table? A. Append B. Delete C. Make-Table D. Update

Append
Delete
Make-Table
Update

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.