Database - Introduction to SQL - Discussion

Discussion Forum : Introduction to SQL - General Questions (Q.No. 9)
9.
SQL data definition commands make up a(n) ________ .
DDL
DML
HTML
XML
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
11 comments Page 1 of 2.

Raji viji said:   10 years ago
DLL, because is a only a data definition language.

Toru said:   1 decade ago
DDL:

Data Definition Language (DDL) statements are used to define the database structure or schema. examples:

CREATE - to create objects in the database.
ALTER - alters the structure of the database.

DML:

Data Manipulation Language (DML) statements are used for managing data within schema objects. Some examples:

SELECT - retrieve data from the a database.
INSERT - insert data into a table.
UPDATE - updates existing data within a table.

DCL:

Data Control Language (DCL) statements

TCL:

Transaction Control (TCL) statements are used to manage the changes made by DML statements. It allows statements to be grouped together into logical transactions.
(2)

Dharsini said:   1 decade ago
Then please tell me what is DML?

Tanvi verma said:   1 decade ago
Mean of DDL is Data Definition language. It is the category of sql.

Vijay said:   1 decade ago
DDL means Data Definition language & it is used for creating, inserting, deleting the table. And alter is used for altering the table.

Kamal said:   1 decade ago
The SQL ALTER TABLE statement allows you to rename an existing table. It can also be used to add, modify, or drop a column from an existing table.

Ritesh said:   1 decade ago
What is alter?

GEORGE PALATIO said:   1 decade ago
Indeed SQL is both DML and DDL
but the question is asking SQL data DEFINITION commands
So the answer is A) DDL (data DEFINITION language)

Rincal said:   1 decade ago
What is the full name of DDL ?

SREENATH ATTINGAL said:   1 decade ago
SQL is both DML and DDL language.
ex for DDL:- CREATE,DROP,ALTER
ex for DML:-SELECT FROM WHERE...


Post your comments here:

Your comments will be displayed after verification.