DML statements

Опубликовано: 15 Май 2026
на канале: CodeWithRahul
78
7

In this video, I have explained DML ( Data Manipulation Language) Commands in detail-
1. INSERT
2. UPDATE
3. DELETE
4. MERGE

Video Link -    • DML statements  

Click here to subscribe to my youtube channel    / @codewithrahul1465  

#CodeWithRahul #SQL #Oracle #HappyLearning

If you learn something new from this video, please like this video and subscribe to my channel
CodeWithRahul

DML Commands :

-- INSERT

insert into department values(1,'Admin');
insert into department values(2,'HR');
insert into department values(3,'IT');
commit;

select * from department;

-- UPDATE

update department set dept_name ='Finance' where dept_id=2;
commit;

-- DELETE

delete from department where dept_id=1;
commit;

select * from employee;