Sql Programming: Insert Record- Department Cognizant HandsOn


 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);




Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.