Question Details

Detailed explanation and options for the selected question.

Which SQL command is used to create a new table in a database?

A. CREATE TABLE
B. ALTER TABLE
C. INSERT INTO
D. DROP TABLE

Explanation:

The CREATE TABLE command is used to create a new table in a database. ALTER TABLE modifies an existing table, INSERT INTO adds data to a table, and DROP TABLE deletes a table.