Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

CompTIA Exam DS0-001 Topic 5 Question 25 Discussion

Actual exam question for CompTIA's DS0-001 exam
Question #: 25
Topic #: 5
[All DS0-001 Questions]

Which of the following commands is part of DDL?

Show Suggested Answer Hide Answer
Suggested Answer: C

The command that is part of DDL is CREATE. CREATE is a SQL command that belongs to the category of DDL, or Data Definition Language. DDL is a subset of SQL commands that are used to define or modify the structure or schema of a database, such as tables, columns, constraints, indexes, views, etc. CREATE is a DDL command that is used to create a new object in a database, such as a table, column, constraint, index, view, etc. For example, the following statement uses the CREATE command to create a new table called employee with four columns:

CREATE TABLE employee (

emp_id INT PRIMARY KEY,

emp_name VARCHAR(50) NOT NULL,

emp_dept VARCHAR(20),

emp_salary DECIMAL(10,2)

);

Copy

The other options are either part of different categories of SQL commands or not SQL commands at all. For example, UPDATE is a SQL command that belongs to the category of DML, or Data Manipulation Language. DML is a subset of SQL commands that are used to manipulate or modify the data or content of a database, such as inserting, updating, deleting, or selecting data. GRANT is a SQL command that belongs to the category of DCL, or Data Control Language. DCL is a subset of SQL commands that are used to control or manage the access or permissions of users or roles on a database, such as granting or revoking privileges or roles. INSERT is a SQL command that belongs to the category of DML, or Data Manipulation Language. INSERT is a DML command that is used to insert new data into a table.Reference:CompTIA DataSys+ Course Outline, Domain 1.0 Database Fundamentals, Objective 1.2 Given a scenario, execute database tasks using scripting and programming languages.


Contribute your Thoughts:

Billy
23 days ago
I bet the answer is C) CREATE. That's the only one that makes sense for a Data Definition Language command.
upvoted 0 times
...
Sherita
26 days ago
A) UPDATE? Oh come on, that's just plain wrong. Update is a DML command, not DDL.
upvoted 0 times
...
Kristofer
27 days ago
D) INSERT? Nah, that's a DML command, not DDL. Nice try, though.
upvoted 0 times
Renay
5 days ago
B) GRANT
upvoted 0 times
...
Brittni
16 days ago
A) UPDATE
upvoted 0 times
...
...
Tony
1 months ago
B) GRANT? Really? That's more of a security-related command, not DDL.
upvoted 0 times
Celeste
7 days ago
A) UPDATE
upvoted 0 times
...
...
Carylon
1 months ago
INSERT is definitely not part of DDL, so it's not the answer.
upvoted 0 times
...
Xuan
1 months ago
I'm not sure, but I think GRANT might also be part of DDL.
upvoted 0 times
...
Corrinne
2 months ago
C) CREATE - That's definitely a DDL command, I remember that from my database class.
upvoted 0 times
Judy
1 months ago
B) GRANT - I think that's a DDL command too, right?
upvoted 0 times
...
Emmanuel
1 months ago
C) CREATE - That's definitely a DDL command, I remember that from my database class.
upvoted 0 times
...
...
Charlena
2 months ago
I agree with Graham, CREATE is definitely part of DDL.
upvoted 0 times
...
Graham
2 months ago
I think the answer is C) CREATE.
upvoted 0 times
...

Save Cancel