Which SQL command is used to create a new table? MCQ with Answer and Explanation

Which SQL command is used to create a new table?
A. INSERT
B. CREATE TABLE
C. UPDATE
D. SELECT
Answer: Option B
Solution (By JKExamLibrary)
The CREATE TABLE command in DDL is used to define a new table structure in SQL.

This question belongs to: Computer Database Management System (DBMS)

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Database Management System (DBMS) Questions

Question #1 Report Error
A Primary Key in RDBMS must be:
A. Duplicate values allowed
B. Always a foreign key
C. Can have null values
D. Unique and not null

Correct Answer: Option D


Explanation:
A primary key uniquely identifies each record and cannot contain null values.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
The intentional process of introducing redundant data into a normalized database structure to optimize read query performance is called what?
A. Fragmentation
B. Denormalization
C. Decomposition
D. Normalization

Correct Answer: Option B


Explanation:
Denormalization is a strategy applied to normalized databases where redundant data is selectively added to speed up complex read queries by minimizing costly table joins.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
Which database structure is created to drastically speed up the retrieval of rows from a table at the expense of slower data updates?
A. View
B. Schema
C. Index
D. Constraint

Correct Answer: Option C


Explanation:
An Index is a performance optimization structure created on table columns to search and locate matching rows quickly without performing a full table scan.

This question belongs to: Computer Database Management System (DBMS)