Definition of Components of SQL
Definition of Components of SQL
DML
DML is short name of 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 database.
DDL
DDL is short name of Data Definition Language, which deals with
database schemas and descriptions, of how the data should reside
in the database.
CREATE – to create database and its objects like (table,
index, views, store procedure, function and triggers)
DCL
DCL is short name of Data Control Language which includes
commands such as GRANT, and mostly concerned with rights,
permissions and other controls of the database system.
TCL
TCL is short name of Transaction Control Language which deals
with transaction within a database.
BASIC COMMADS
1. CREATE COMMAND
The create table command defines each coulmn of the table uniquely .
each column has a minimum og three attributes , a name, datatype and
size . each table column definition is a single clause in the create table
syntax.
synatx:
create table < table name >
(<column name 1> <datatype>(<size>), <column name 2>
<datatype>(<size>));
example:
CREATE TABLE "DBA_BANKYS".BRANCH_MSTR"
( "BRANCH_NO" VARCHAR2(10), "NAME" VARCHAR2(25));
2. INSERT INTO
once a table is created , the most natural thing to do is load this table
with data to be manipulate later
SYNTAX:
INSERT INTO <tablename>(<coulmnname1>,<columnname 2>)
VALUES (<expression 1>), <expression 2>);
examples:
INSERT INTO BRANCH_MSNT( BRANCH_NO,
NAME),VALUES('B1','Vile parle(HO)');
syntax:
select <column name 1> TO <coulmn name N> FROM tablename ;
to select all data
SELECT * FROM <table name>;