Introduction To Database Management Systems
Introduction To Database Management Systems
Management systems
• DDL is the short name for Data Definition Language, which deals with database
schemas and descriptions, of how the data should reside in the database.
• CREATE: to create a database and its objects like (table, index, views, store
procedure, function, and triggers)
• ALTER: alters the structure of the existing database
• DROP: delete objects from the database
• TRUNCATE: remove all records from a table, including all spaces allocated for
the records are removed
• COMMENT: add comments to the data dictionary
• RENAME: rename an object
Data Manipulation Language
(DML)
• DML is the short name for Data Manipulation Language which deals
with data manipulation and includes most common SQL statements
such SELECT, INSERT, UPDATE, DELETE, etc., and it is used to store,
modify, retrieve, delete and update data in a database.
• Data query language(DQL) is the subset of “Data Manipulation
Language”. The most common command of DQL is SELECT statement.
SELECT statement help on retrieving the data from the table without
changing anything in the table.
• SELECT: retrieve data from a database
• INSERT: insert data into a table
• UPDATE: updates existing data within a table
• DELETE: Delete all records from a database table
• MERGE: UPSERT operation (insert or update)
• CALL: call a PL/SQL or Java subprogram
Data Control Language (DCL)