DATA MANIPULATION LANGUAGE (DML) COMMANDS
30 programming challenges to help you master the fundamentals of DATABASE MANAGEMENT SYSTEM USING ORACLE.
1
Insert a record into STUDENT table with values:
SID = 101, SNAME = 'RAHUL', AGE = 20, COURSE = 'MCA'.
2
Insert a record into EMPLOYEE table with
EID = 201, ENAME = 'ANITA', SALARY = 45000, DEPTNO = 10.
3
Insert a new department into DEPT table; DEPTNO = 50, DNAME = 'TRAINING', LOC = 'DELHI'
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30