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
Execute this query, if you want the rest of columns as "#", do insert # inside the single quote which is left blank in query.
"#"
#
Also, there is no need of defining column name in the query.
insert into student values('','your name','','');
Thanks...