Insert Records - Department
Insert the following records into the department table
Solution:
INSERT INTO DEPARTMENT VALUES(1,'CSE',3),(2,'IT',3),(3,'SE',3);
Insert Records - Department
Insert the following records into the department table
Department_id | Department_name | department_block_number |
1 | CSE | 3 |
2 | IT | 3 |
3 | SE | 3 |
Solution:
INSERT INTO DEPARTMENT VALUES(1,'CSE',3),(2,'IT',3),(3,'SE',3);