I have a table named student which consists of (rollno, name, sem, branch)
student
rollno, name, sem, branch
If I want to INSERT only one value (i.e only name h
INSERT
insert into student(name) values("The name you wan to insert");
Be careful not to forget to insert the primary key.