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
Following works if other columns accept null or do have default value:
INSERT INTO Student (name) VALUES('Jack');
Further details can be found from the Reference Manual:: 13.2.5 INSERT Syntax.