118. Enter the following data into table
Department
DeptID |
DeptName |
DeptChair |
100 |
IDS |
345678901 |
101 |
Accounting |
567890123 |
102 |
Finance |
678901234 |
insert into department
values(100,'IDS','345678901');
insert into department
values(101,'Accounting','567890123');
insert into department
values(102,'Finance','678901234');