Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

DML,DTL ,DDL,DCL

DDL
Data Definition Language (DDL) statements are used to define the database structure
or schema. Some examples:
CREATE - to create objects in the database
ALTER - alters the structure of the database
DROP - delete objects from the database
TRUNCATE - remove all records from a table, including all spaces allocated for the
records are removed,rollback inot possible,faster than DELETE.
COMMENT - add comments to the data dictionary
RENAME - rename an object
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
DELETE - deletes all records from a table, the space for the records remain,ROLLBACK
is possible,slower than TRUNCATE.
MERGE - UPSERT operation (insert or update)
CALL - call a PL/SQL or Java subprogram
EXPLAIN PLAN - explain access path to data
LOCK TABLE - control concurrency
DCL
Data Control Language (DCL) statements. Some examples:
GRANT - gives user's access privileges to database
REVOKE - withdraw access privileges given with the GRANT command
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.
COMMIT - save work done
SAVEPOINT - identify a point in a transaction to which you can later roll back
ROLLBACK - restore database to original since the last COMMIT
SET TRANSACTION - Change transaction options like isolation level and what rollback
segment to use?
Attribute types: ? Simple and composite attributes. ? Single-valued and multi-valued
attributes ? E.g. multivalued attribute: phone-numbers ? Derived attributes ? Can be
computed from other attributes
Simple attribute consists of a single atomic value. A simple attribute cannot be
subdivided. For example the attributes age, sex etc are simple attributes.?

Page 1

DML,DTL ,DDL,DCL
A composite attribute is an attribute that can be further subdivided. For example
the attribute ADDRESS can be subdivided into street, city, state, and zip code

Simple Attribute: Attribute that consist of a single atomic value.


Example: Salary, age etc
Composite Attribute : Attribute value not atomic.
Example :
Address : House_no:City:State
Name
: First Name: Middle Name: Last Name?

Single Valued and Multi Valued attribute


A single valued attribute can have only a single value. For example a person can
have only one 'date of birth', 'age' etc. That is a single valued attributes can
have only single value. But it can be simple or composite attribute.That is 'date of
birth' is a composite attribute , 'age' is a simple attribute. But both are single
valued attributes.
Multivalued attributes can have multiple values. For instance a person may have
multiple phone numbers,multiple degrees etc.Multivalued attributes are shown by a
double line connecting to the entity in the ER diagram.
Single Valued Attribute: Attribute that hold a single value
Example1: Age
Exampe2: City
Example3:Customer id
Multi Valued Attribute: Attribute that hold multiple values.
Example1: A customer can have multiple phone numbers, email id's etc
Example2: A person may have several college degrees?
Stored and Derived Attributes
The value for the derived attribute is derived from the stored attribute. For
example 'Date of birth' of a person is a stored attribute. The value for the
attribute 'AGE' can be derived by subtracting the 'Date of Birth'(DOB) from the
current date. Stored attribute supplies a value to the related attribute.
Stored Attribute: An attribute that supplies a value to the related attribute.
Example: Date of Birth
Derived Attribute: An attribute thats value is derived from a stored attribute.
Example : age, and its value is derived from the stored attribute Date of Birth.
Page 2

DML,DTL ,DDL,DCL
Complex Attribute
A complex attribute that is both composite and multi valued.

Mapping Cardinalities
? Express the number of entities to which another entity can be associated via a
relationship set. ? Most useful in describing binary relationship sets. ? For a
binary relationship set the mapping cardinality must be one of the following types:
One to one ? One to many ? Many to one ? Many to many?
relationship?
Rectangles represent entity sets. ? Diamonds represent relationship sets. ? Lines
link attributes to entity sets and entity sets to relationship sets. ? Ellipses
represent attributes ? Double ellipses represent multivalued attributes. ? Dashed
ellipses denote derived attributes. ? Underline indicates primary key attributes

Page 3

You might also like