You are on page 1of 1

00:03:19 Rajender: hi team today class is 5'o clock right.

00:03:37 N@v!n k B: yes


00:31:57 Vishnu: -- DDL STATEMENTSCREATE DATABASE ETLTSTDB;-- CREATE TABLE
CREATE TABLE dbo.offices( office_id INT PRIMARY KEY IDENTITY,
office_name NVARCHAR(40) NOT NULL, office_address NVARCHAR(255) NOT NULL,
phone VARCHAR(20),);
00:53:50 Vishnu: ALTER TABLE dbo.officesADD Email varchar(255)--DELETE FROM
dbo.customer_groups;TRUNCATE TABLE dbo.customer_groups;
01:30:00 Vishnu: DDL Data Definition Language CREATE CREATE
OBJECTS ALTER Make changes on available objects DROP Delete permanently from
DB Rollback is not possibleTRUNCATE Entire table data will be deleted
Rollback is possibleDELETE Entire table data/Condition based will be
deleted Rollback is possible

You might also like