Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
483 views

DBMS

DDL statements are used to define the database structure and schema, and include commands like CREATE, ALTER, DROP, and RENAME. DML statements manage data within schema objects using commands like SELECT, INSERT, UPDATE, DELETE and MERGE. DCL statements control access privileges with GRANT and REVOKE commands.

Uploaded by

compu_x
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
483 views

DBMS

DDL statements are used to define the database structure and schema, and include commands like CREATE, ALTER, DROP, and RENAME. DML statements manage data within schema objects using commands like SELECT, INSERT, UPDATE, DELETE and MERGE. DCL statements control access privileges with GRANT and REVOKE commands.

Uploaded by

compu_x
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

1.

Type Of DMl, DLL, DCL

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

o CREATE - to create objects in the database


o ALTER - alters the structure of the database
o DROP - delete objects from the database
o TRUNCATE - remove all records from a table, including all spaces allocated for the records are
removed
o COMMENT - add comments to the data dictionary
o RENAME - rename an object

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

o SELECT - retrieve data from the a database


o INSERT - insert data into a table
o UPDATE - updates existing data within a table
o DELETE - deletes all records from a table, the space for the records remain
o MERGE - UPSERT operation (insert or update)
o CALL - call a PL/SQL or Java subprogram
o EXPLAIN PLAN - explain access path to data
o LOCK TABLE - control concurrency

DCL
Data Control Language (DCL) statements. Some examples:

o GRANT - gives user's access privileges to database


o REVOKE - withdraw access privileges given with the GRANT command
2.

You might also like